Bug 21637: Fixed upercase letter in EasyAnalyticalRecords syspref
[koha.git] / debian / list-deps
blobfb6e8c3a25137b975fd4cbf5cf7dd6bcbebb775f
1 #!/usr/bin/perl
3 # Write dependency list from Koha PerlDependencies.pm, in Debian format.
5 # Copyright 2010 Catalyst IT, Ltd
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 use Modern::Perl;
22 use C4::Installer::PerlDependencies;
24 # These are packages that may not be in the apt archive in a way that
25 # apt-file can find, e.g. in the Koha repo rather than the regular
26 # debian one.
27 my %overrides = (
28 'LWP::Protocol::https' => 'liblwp-protocol-https-perl|libwww-perl (<<6.02), libio-socket-ssl-perl',
29 'HTTP::OAI' => 'libhttp-oai-perl (>= 3.2) | libhttp-oai-3.27-perl, libhttp-oai-perl (<< 4.0) | libhttp-oai-3.27-perl',
30 'IO::Socket::IP' => 'perl-modules (>= 5.20.0) | perl-modules-5.22 | perl-modules-5.24 | libio-socket-ip-perl',
31 'Swagger2' => 'libswagger2-perl (>= 0.59)',
32 'Mojolicious' => 'libmojolicious-perl (>= 6.0)',
35 # These are packages we're going to ignore
36 my %ignore = (
37 'Data::Pagination' => 1,
38 'CHI' => 1,
39 'CHI::Driver::Memcached' => 1,
42 my $deps = $C4::Installer::PerlDependencies::PERL_DEPS;
44 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.]+)";
46 foreach my $module ( keys %$deps ) {
47 next if $ignore{$module};
48 my $ver = $deps->{$module}->{'min_ver'};
49 my $subpath = $module;
50 $subpath =~ s,::,/,g;
51 my $output = qx(apt-file -l -x search "$prefix/$subpath.pm\$");
52 my @temp = split( /\n/, $output );
53 my @lines = ();
55 # Remove packages that are required/essential and always installed on
56 # a Debian system. Debian packages should not have unversioned
57 # dependencies on such packages.
58 foreach my $line (@temp) {
59 if ( $line ne "perl-base" ) {
60 @lines = ( @lines, $line );
63 if ( exists $overrides{$module} ) {
64 print "$overrides{$module}\n";
66 elsif ( scalar(@lines) == 1 && $lines[0] ne "" ) {
67 my $pkg = $lines[0];
68 print "$pkg\n";
70 elsif ( scalar(@lines) > 1 ) {
71 foreach my $pkg (@lines) {
72 print " | " if ( $pkg ne $lines[0] );
73 print "$pkg";
74 print " | $pkg" . "-5.22" if ( $pkg eq "perl-modules" );
75 print " | $pkg" . "-5.24" if ( $pkg eq "perl-modules" );
77 print "\n";
79 elsif ( scalar(@temp) != 0 ) {
81 # I'm an Essential and I'm OK,
82 # I install all night, and work all day.
83 # I chomp up strings. I eat my bugs.
84 # I go to the base install.
85 # On Fridays I go drinking,
86 # and have buttered commits for git.
87 # (Beer O'Clock is more than two hours
88 # away. I don't even drink beer. There
89 # is no reason to be suspicious of this
90 # commit.)
91 # RM note: suspicious? me? always!
93 elsif ( ! $deps->{$module}->{'required'} ) {
94 # Ignore because we don't have it and we don't care.
96 else {
97 print "EEEK: unknown package for $module\n";