View | Details | Raw Unified | Return to bug 18028
Collapse All | Expand All

(-)a/install_misc/UpgradeBackup.pm (-94 lines)
Lines 1-94 Link Here
1
package install_misc::UpgradeBackup;
2
3
# Copyright (C) 2008 LibLime
4
#
5
# This file is part of Koha.
6
#
7
# Koha is free software; you can redistribute it and/or modify it
8
# 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.
11
#
12
# Koha is distributed in the hope that it will be useful, but
13
# 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.
16
#
17
# You should have received a copy of the GNU General Public License
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20
use strict;
21
#use warnings; FIXME - Bug 2505
22
use File::Compare qw(compare);
23
use Cwd qw(cwd);
24
use File::Copy;
25
use File::Find;
26
use File::Spec;
27
use Exporter;
28
29
use vars qw(@ISA @EXPORT );
30
31
@ISA = ('Exporter');
32
@EXPORT = ('backup_changed_files');
33
34
=head1 NAME
35
36
install_misc::UpgradeBackup
37
38
=head1 DESCRIPTION
39
40
This is a helper module used during a 'make upgrade' that
41
creates backups of files updated during an upgrade.
42
43
=cut
44
45
sub backup_changed_files {
46
    my $from_to = shift;
47
    my $suffix = shift;
48
    my $verbose = shift;
49
    my $inc_uninstall = shift;
50
51
    my $cwd = cwd();
52
    foreach my $sourceroot (sort keys %$from_to) {
53
        my $targetroot = $from_to->{$sourceroot};
54
        my $currdir = File::Spec->catdir($cwd, $sourceroot);
55
56
        next unless -d $currdir;
57
58
        chdir $currdir or die "could not change to $currdir: $!";
59
       
60
        # expand path
61
        find(sub {
62
            return unless -f $_;
63
            my $filename = $_;
64
65
            my $targetdir  = File::Spec->catdir($targetroot, $File::Find::dir);
66
            my $targetfile = File::Spec->catfile($targetdir, $filename);
67
            my $sourcedir  = File::Spec->catdir($currdir, $File::Find::dir);
68
            my $sourcefile = File::Spec->catfile($sourcedir, $filename);
69
70
            if (-f $targetfile) {
71
                my ($size) = (stat $sourcefile)[7];
72
                my $backup = $targetfile . $suffix;
73
                unless (-s $targetfile == $size and not compare($sourcefile, $targetfile)) {
74
                    print "Backed up $targetfile to $backup\n";
75
                    File::Copy::copy($targetfile, $backup);        
76
                }
77
            }
78
        }, ".");
79
    }
80
}
81
82
=head1 AUTHOR
83
84
Code based on parts of ExtUtils::Install in order to
85
approximately track how it identifies files to
86
install.
87
88
Koha Development Team <http://koha-community.org/>
89
90
Galen Charlton <galen.charlton@liblime.com>
91
92
=cut
93
94
1;
(-)a/install_misc/debian.packages (-148 lines)
Lines 1-148 Link Here
1
apache2 install
2
at install
3
cvs	install
4
daemon install
5
gcc install
6
gettext install
7
idzebra-2.0	install
8
idzebra-2.0-common	install
9
idzebra-2.0-doc	install
10
idzebra-2.0-utils	install
11
letsencrypt install
12
libalgorithm-checkdigits-perl	install
13
libanyevent-http-perl		install
14
libanyevent-perl		install
15
libarchive-zip-perl		install
16
libauthen-cas-client-perl install
17
libbiblio-endnotestyle-perl install
18
libbusiness-isbn-perl install
19
libcache-fastmmap-perl		install
20
libcache-memcached-fast-perl		install
21
libcache-perl		install
22
libcgi-session-driver-memcached-perl		install
23
libcgi-session-perl	install
24
libcgi-session-serialize-yaml-perl install
25
libclass-accessor-perl		install
26
libclass-factory-util-perl	install
27
libdata-ical-perl	install
28
libdata-paginator-perl		install
29
libdate-calc-perl install
30
libdate-manip-perl install
31
libdatetime-event-ical-perl		install
32
libdatetime-format-dateparse-perl    install
33
libdatetime-format-ical-perl    install
34
libdatetime-format-mail-perl install
35
libdatetime-format-mysql-perl		install
36
libdatetime-format-strptime-perl	install
37
libdatetime-format-w3cdtf-perl	install
38
libdatetime-locale-perl	install
39
libdatetime-perl	install
40
libdatetime-set-perl install
41
libdatetime-timezone-perl	install
42
libdbd-mock-perl		install
43
libdbd-mysql-perl install
44
libdbd-sqlite2-perl install
45
libdbi-perl	install
46
libdbix-class-schema-loader-perl	install
47
libemail-date-perl	install
48
libgcrypt11 install
49
libgcrypt11-dev install
50
libgd-barcode-perl	install
51
libgd-gd2-perl		install
52
libgd2-noxpm-dev install
53
libgraphics-magick-perl install
54
libgravatar-url-perl	install
55
libhtml-format-perl		install
56
libhtml-scrubber-perl	install
57
libhtml-template-pro-perl install
58
libhttp-oai-perl install
59
libidzebra-2.0	install
60
libidzebra-2.0-dev	install
61
libidzebra-2.0-mod-alvis	install
62
libidzebra-2.0-mod-grs-marc	install
63
libidzebra-2.0-mod-grs-regx	install
64
libidzebra-2.0-mod-grs-xml	install
65
libidzebra-2.0-mod-text	install
66
libidzebra-2.0-modules	install
67
libjson-any-perl		install
68
libjson-perl	install
69
liblingua-ispell-perl	install
70
liblingua-stem-perl install
71
liblingua-stem-snowball-perl install
72
liblist-moreutils-perl	install
73
liblocale-currency-format-perl install
74
liblocale-gettext-perl	install
75
liblocale-po-perl	install
76
libmail-sendmail-perl install
77
libmarc-charset-perl install
78
libmarc-record-perl		install
79
libmarc-xml-perl install
80
libmime-lite-perl       install
81
libmodern-perl-perl    install
82
libmodule-bundled-files-perl		install
83
libmoose-perl		install
84
libmoosex-storage-perl		install
85
libmoosex-types-perl		install
86
libmysqlclient15-dev install
87
libnet-ldap-perl	install
88
libnet-server-perl install
89
libnet-z3950-zoom-perl install
90
libnumber-format-perl install
91
libpdf-api2-perl	install
92
libpdf-api2-simple-perl install
93
libpdf-reuse-barcode-perl install
94
libpdf-reuse-perl install
95
libpdf-table-perl install
96
libschedule-at-perl install
97
libsms-send-perl install
98
libstring-random-perl		install
99
libstring-rewriteprefix-perl		install
100
libtemplate-perl install
101
libtemplate-plugin-htmltotext-perl		install
102
libtest-deep-perl		install
103
libtest-mockmodule-perl		install
104
libtest-strict-perl		install
105
libtest-warn-perl		install
106
libtest-yaml-valid-perl		install
107
libtext-bidi-perl           install
108
libtext-charwidth-perl	install
109
libtext-csv-encoded-perl install
110
libtext-csv-perl	install
111
libtext-csv-xs-perl		install
112
libtext-iconv-perl	install
113
libtext-unaccent-perl	install
114
libtext-wrapi18n-perl	install
115
libtime-duration-perl	install
116
libtime-format-perl	install
117
libtime-progress-perl		install
118
libtimedate-perl	install
119
libuniversal-require-perl	install
120
libunix-syslog-perl	install
121
liburi-perl		install
122
libwww-perl		install
123
libxml-dom-perl	install
124
libxml-dumper-perl	install
125
libxml-libxml-perl	install
126
libxml-libxslt-perl	install
127
libxml-namespacesupport-perl	install
128
libxml-parser-perl	install
129
libxml-perl	install
130
libxml-regexp-perl	install
131
libxml-rss-perl install
132
libxml-sax-perl		install
133
libxml-sax-writer-perl  install
134
libxml-simple-perl install
135
libxml-xslt-perl	install
136
libxml2	install
137
libxml2-dev	install
138
libxml2-utils	install
139
libxslt1-dev	install
140
libxslt1.1	install
141
libyaml-perl install
142
libyaml-syck-perl install
143
libyaz	install
144
libyaz-dev	install
145
make install
146
mysql-server install
147
yaz	install
148
yaz-doc	install
(-)a/install_misc/environment_Makefile.PL (-80 lines)
Lines 1-80 Link Here
1
# this file provides environment variables to use perl Makefile.PL 
2
# without interactive mode. it can be seen as config file.
3
4
# usage from shell:
5
# source environment_Makefile.PL &&
6
#     perl Makefile.PL &&
7
#     make install
8
9
# TODO: add explainations from the installer ? 
10
11
export PERL_MM_USE_DEFAULT=1 # makes the environment variables work
12
export KOHA_USER='koha'      # unix account used by zebra  
13
export KOHA_GROUP='koha'     # unix group used by zebra
14
15
# default root to install config files
16
export DESTDIR=$HOME         # here would be koha configuration, logs and zebra base 
17
18
# The installer tries to guess what's your ip address and your hostname
19
# if you plan to use koha with vhosts strategy or run koha on a recent linux
20
# guesses won't be appropriate: edit by yourself
21
# If you plan to use vhosts, you have to edit the koha-httpd.conf file
22
# anyway :(
23
export WEBSERVER_HOST=EDITME
24
export WEBSERVER_IP=EDITME
25
26
# from now, commented export directives are alternatives
27
# uncomment one of them to choose it
28
29
#export INSTALL_MODE=dev
30
#export INSTALL_MODE=single
31
export INSTALL_MODE=standard
32
33
export INSTALL_SRU=no
34
#export INSTALL_SRU=yes
35
36
export INSTALL_ZEBRA=yes
37
#export INSTALL_ZEBRA=no
38
39
export INSTALL_PAZPAR2=no
40
#export INSTALL_PAZPAR2=yes
41
42
export RUN_DATABASE_TESTS=no
43
#export RUN_DATABASE_TESTS=yes
44
45
export PATH_TO_ZEBRA=''
46
47
export DB_TYPE=mysql
48
#export DB_TYPE=Pg
49
50
export DB_HOST='localhost'
51
export DB_NAME='koha'
52
53
# /!\ concider changing password if you don't want 
54
# some script kiddies to crack you koha server
55
export DB_USER='kohaadmin'
56
export DB_PASS='katikoan'
57
58
#export AUTH_INDEX_MODE=grs1
59
export AUTH_INDEX_MODE=dom
60
#export BIB_INDEX_MODE=grs1
61
export BIB_INDEX_MODE=dom
62
63
#export ZEBRA_MARC_FORMAT=unimarc
64
export ZEBRA_MARC_FORMAT=marc21
65
66
#export ZEBRA_LANGUAGE=fr
67
export ZEBRA_LANGUAGE=en
68
69
# /!\ concider changing password if you don't want 
70
# some script kiddies to crack you koha server
71
export ZEBRA_USER='kohauser'
72
export ZEBRA_PASS='zebrastripes'
73
export ZEBRA_SRU_HOST='localhost'
74
export ZEBRA_SRU_BIBLIOS_PORT='9998'
75
export ZEBRA_SRU_AUTHORITIES_PORT='9999'
76
77
export MERGE_SERVER_HOST='localhost'
78
export MERGE_SERVER_PORT='11001'
79
export PAZPAR2_HOST='localhost'
80
export PAZPAR2_PORT='11002'
(-)a/install_misc/ubuntu-packages.sh (-194 lines)
Lines 1-194 Link Here
1
#!/bin/bash
2
3
# Copyright 2012 Universidad Nacional de Cordoba
4
# Written by Tomas Cohen Arazi
5
#            Mark Tompsett
6
#
7
# This file is part of Koha.
8
#
9
# Koha is free software; you can redistribute it and/or modify it
10
# under the terms of the GNU General Public License as published by
11
# the Free Software Foundation; either version 3 of the License, or
12
# (at your option) any later version.
13
#
14
# Koha is distributed in the hope that it will be useful, but
15
# WITHOUT ANY WARRANTY; without even the implied warranty of
16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
# GNU General Public License for more details.
18
#
19
# You should have received a copy of the GNU General Public License
20
# along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22
# Output simple help
23
usage() {
24
    local scriptname=$(basename $0)
25
    cat <<EOF
26
$scriptname
27
28
Query for missing dependencies. Print the install command for them if specified.
29
30
Usage:
31
$scriptname -r
32
$scriptname -ic
33
$scriptname -h
34
35
    -r  | --report             Report the status of Koha's dependencies
36
    -ic | --install-command    Display the install command for the missing dependencies
37
    -h  | --help               Display this help message
38
EOF
39
}
40
41
# Check if the package is installed
42
packageInstalled() {
43
    local package=$1
44
    local package_status=`dpkg-query --showformat='${Status}' \
45
                          -W $package 2> /dev/null`
46
47
    if [ "$package_status" == "install ok installed" ] ; then
48
        echo "yes"
49
    else
50
        echo "no"
51
    fi
52
}
53
54
# Get the installed package version
55
getPackageVersion() {
56
    local package=$1
57
    dpkg-query --showformat='${Version}' -W $package
58
}
59
60
# A parameter is required.
61
if [ "$#" -eq "0" ]; then
62
    usage
63
    exit 1
64
fi
65
66
# Initialize variables
67
CHECK=no
68
INSTALLCMD=no
69
HELP=no
70
71
# Loop over parameters
72
while (( "$#" )); do
73
    case $1 in
74
        -r | --report )
75
            CHECK=yes
76
            ;;
77
        -ic | --install-command )
78
            INSTALLCMD=yes
79
            ;;
80
        -h | --help)
81
            HELP=yes
82
            ;;
83
        * )
84
            usage
85
            exit 1
86
    esac
87
    shift
88
done
89
90
if [ "$HELP" = "yes" ]; then
91
    usage
92
    exit 0
93
fi
94
95
# Determine what directory this script is in, the packages files
96
# should be in the same path.
97
DIR=`dirname $0`
98
99
# Determine the Ubuntu release
100
UBUNTU_RELEASE=`lsb_release -r | cut -f2 -d'	'`
101
UBUNTU_PACKAGES_FILE=$DIR/ubuntu.$UBUNTU_RELEASE.packages
102
103
# Check for the release-specific packages file. Default to the general one
104
# but warn the user about LTS releases recommended, if they are attempting
105
# to do an install command option.
106
if [ ! -e $UBUNTU_PACKAGES_FILE ]; then
107
    UBUNTU_PACKAGES_FILE=$DIR/ubuntu.packages
108
    if [ "$INSTALLCMD" == "yes" ]; then
109
        echo "# There's no packages file for your distro/release"
110
        echo "# WARNING! We strongly recommend an LTS release."
111
    fi
112
fi
113
114
# We where asked to print the packages list and current versions (if any)
115
UBUNTU_PACKAGES=`awk '{print $1}' $UBUNTU_PACKAGES_FILE | grep -v '^\s*#' | grep -v '^\s*$'`
116
117
# Only output this on an install command option in order to maintain
118
# output equivalence to the former script, in the case of reporting
119
# only.
120
if [ "$INSTALLCMD" == "yes" ]; then
121
122
    # Tell them which file being used to determine the output.
123
    echo "# Using the $UBUNTU_PACKAGES_FILE file as source"
124
125
    # Comment for skiping the dots if needed ....
126
    if [ "$CHECK" == "no" ]; then
127
        echo -n "#"
128
    fi
129
fi
130
131
# Initialize variable to accumulate missing packages in.
132
MISSING_PACKAGES=""
133
134
# Loop used to accumulate the missing packages and display package information if requested to report.
135
for PACKAGE in $UBUNTU_PACKAGES; do
136
137
    # If an install command option is running, but not a report option,
138
    # There is no need to determine the version number. If it was
139
    # This would run even slower!
140
141
    # Test if the package is installed
142
    PACKAGE_INSTALLED=`packageInstalled $PACKAGE`
143
144
    # Determine the package version if it is installed.
145
    if [ "$PACKAGE_INSTALLED" == "yes" ]; then
146
        PACKAGE_VERSION=`getPackageVersion $PACKAGE`
147
148
    # otherwise default to 'none'.
149
    else
150
        PACKAGE_VERSION="none"
151
        MISSING_PACKAGES="$PACKAGE $MISSING_PACKAGES"
152
    fi
153
154
    # If we are supposed to report...
155
    if [ "$CHECK" == "yes" ]; then
156
157
158
        # report the package name and version number.
159
        echo "$PACKAGE = $PACKAGE_VERSION"
160
161
    # Otherwise, we'll just echo a dot for the impatient.
162
    else
163
        echo -n "."
164
    fi
165
166
done
167
168
# If we aren't reporting, then the last echo didn't have a newline.
169
if [ ! "$CHECK" == "yes" ]; then
170
    echo
171
fi
172
173
# If the install command was requested...
174
if [ "$INSTALLCMD" == "yes" ]; then
175
176
    # Give them a nicely indented command to copy, if dependencies are missing.
177
    if [ "${#MISSING_PACKAGES}" -gt "0" ]; then
178
        cat <<EOF
179
# Copy and paste the following command to install all Koha's dependencies on your system:
180
# Note: this command will run with admin privileges. Make sure your user has sudo rights
181
EOF
182
183
        echo -e "\tsudo apt-get install $MISSING_PACKAGES"
184
185
    # Otherwise tell them all is well.
186
    else
187
        echo -e "# All dependencies installed!"
188
        echo -e "# Please confirm the version numbers are sufficient"
189
        echo -e "# By running koha_perl_deps.pl -m -u."
190
    fi
191
192
fi
193
194
exit 0
(-)a/install_misc/ubuntu.10.04.packages (-163 lines)
Lines 1-163 Link Here
1
apache2					install
2
at					install
3
daemon					install
4
gcc					install
5
gettext					install
6
make					install
7
8
# mysql packages
9
10
mysql-server				install
11
libmysqlclient16			install
12
libmysqlclient16-dev			install
13
14
# yaz packages
15
16
yaz					install
17
yaz-doc					install
18
libyaz3					install
19
libyaz3-dev				install
20
21
# zebra packages
22
23
idzebra-2.0				install
24
idzebra-2.0-common			install
25
idzebra-2.0-doc				install
26
idzebra-2.0-utils			install
27
libidzebra-2.0-0			install
28
libidzebra-2.0-dev			install
29
libidzebra-2.0-mod-alvis		install
30
libidzebra-2.0-mod-grs-marc		install
31
libidzebra-2.0-mod-grs-regx		install
32
libidzebra-2.0-mod-grs-xml		install
33
libidzebra-2.0-mod-text			install
34
libidzebra-2.0-modules			install
35
36
# crypto packages
37
38
libgcrypt11				install
39
libgcrypt11-dev				install
40
41
# xml/xslt packages
42
43
libxml2					install
44
libxml2-dev				install
45
libxml2-utils				install
46
libxslt1.1				install
47
libxslt1-dev				install
48
49
# perl packages
50
51
libalgorithm-checkdigits-perl		install
52
libanyevent-http-perl		install
53
libanyevent-perl		install
54
libarchive-zip-perl		install
55
libauthen-cas-client-perl		install
56
libbiblio-endnotestyle-perl		install
57
libbusiness-isbn-perl			install
58
libcache-fastmmap-perl		install
59
libcache-perl		install
60
libcgi-session-driver-memcached-perl			install
61
libcgi-session-perl			install
62
libcgi-session-serialize-yaml-perl	install
63
libclass-accessor-perl		install
64
libclass-factory-util-perl		install
65
libdata-ical-perl			install
66
libdata-paginator-perl		install
67
libdate-calc-perl			install
68
libdate-manip-perl			install
69
libdatetime-event-ical-perl		install
70
libdatetime-format-dateparse-perl			install
71
libdatetime-format-ical-perl            install
72
libdatetime-format-mail-perl		install
73
libdatetime-format-mysql-perl		install
74
libdatetime-format-strptime-perl	install
75
libdatetime-format-w3cdtf-perl		install
76
libdatetime-locale-perl			install
77
libdatetime-perl			install
78
libdatetime-set-perl		install
79
libdatetime-timezone-perl		install
80
libdbd-mock-perl		install
81
libdbd-mysql-perl			install
82
libdbd-sqlite2-perl			install
83
libdbi-perl				install
84
libemail-date-perl			install
85
libgd-barcode-perl			install
86
libgd-gd2-perl		install
87
libgraphics-magick-perl			install
88
libgravatar-url-perl			install
89
libhtml-format-perl		install
90
libhtml-scrubber-perl			install
91
libhtml-template-pro-perl		install
92
libhttp-oai-perl			install
93
libjson-any-perl		install
94
libjson-perl		install
95
liblingua-ispell-perl			install
96
liblingua-stem-perl			install
97
liblingua-stem-snowball-perl		install
98
liblist-moreutils-perl			install
99
liblocale-currency-format-perl			install
100
liblocale-gettext-perl			install
101
liblocale-po-perl			install
102
libmail-sendmail-perl			install
103
libmarc-charset-perl			install
104
libmarc-record-perl			install
105
libmarc-xml-perl			install
106
libmime-lite-perl			install
107
libmodern-perl			install
108
libmodule-bundled-files-perl		install
109
libmodule-install-perl			install
110
libmoose-perl		install
111
libmoosex-storage-perl		install
112
libmoosex-types-perl		install
113
libnet-ldap-perl			install
114
libnet-server-perl			install
115
libnet-z3950-zoom-perl			install
116
libnumber-format-perl			install
117
libpdf-api2-perl			install
118
libpdf-api2-simple-perl			install
119
libpdf-reuse-barcode-perl		install
120
libpdf-reuse-perl			install
121
libpdf-table-perl			install
122
libschedule-at-perl			install
123
libsms-send-perl			install
124
libstring-random-perl		install
125
libstring-rewriteprefix-perl		install
126
libtemplate-perl			install
127
libtemplate-plugin-htmltotext-perl	install
128
libtest-deep-perl		install
129
libtest-mockmodule-perl		install
130
libtest-strict-perl		install
131
libtest-warn-perl		install
132
libtest-yaml-valid-perl		install
133
libtext-bidi-perl           install
134
libtext-charwidth-perl			install
135
libtext-csv-encoded-perl			install
136
libtext-csv-perl			install
137
libtext-csv-xs-perl		install
138
libtext-iconv-perl			install
139
libtext-unaccent-perl		install
140
libtext-wrapi18n-perl			install
141
libtime-duration-perl			install
142
libtime-format-perl			install
143
libtime-progress-perl		install
144
libtimedate-perl			install
145
libuniversal-require-perl		install
146
libunix-syslog-perl			install
147
liburi-perl		install
148
libwww-perl		install
149
libxml-dom-perl				install
150
libxml-dumper-perl			install
151
libxml-libxml-perl			install
152
libxml-libxslt-perl			install
153
libxml-namespacesupport-perl		install
154
libxml-parser-perl			install
155
libxml-perl				install
156
libxml-regexp-perl			install
157
libxml-rss-perl				install
158
libxml-sax-perl		install
159
libxml-sax-writer-perl			install
160
libxml-simple-perl			install
161
libxml-xslt-perl			install
162
libyaml-perl				install
163
libyaml-syck-perl			install
(-)a/install_misc/ubuntu.12.04.packages (-168 lines)
Lines 1-168 Link Here
1
apache2					install
2
at					install
3
daemon					install
4
gcc					install
5
gettext					install
6
make					install
7
8
# mysql packages
9
10
mysql-server				install
11
libmysqlclient18			install
12
13
# yaz packages
14
15
yaz					install
16
yaz-doc					install
17
libyaz4					install
18
libyaz4-dev				install
19
20
# zebra packages
21
22
idzebra-2.0				install
23
idzebra-2.0-common			install
24
idzebra-2.0-doc				install
25
idzebra-2.0-utils			install
26
libidzebra-2.0-0			install
27
libidzebra-2.0-dev			install
28
libidzebra-2.0-mod-alvis		install
29
libidzebra-2.0-mod-grs-marc		install
30
libidzebra-2.0-mod-grs-regx		install
31
libidzebra-2.0-mod-grs-xml		install
32
libidzebra-2.0-mod-text			install
33
libidzebra-2.0-modules			install
34
35
# crypto packages
36
37
libgcrypt11				install
38
libgcrypt11-dev				install
39
40
# xml/xslt packages
41
42
libxml2					install
43
libxml2-dev				install
44
libxml2-utils				install
45
libxslt1.1				install
46
libxslt1-dev				install
47
48
# perl packages
49
50
libalgorithm-checkdigits-perl		install
51
libanyevent-http-perl		install
52
libanyevent-perl		install
53
libarchive-zip-perl		install
54
libauthen-cas-client-perl		install
55
libbiblio-endnotestyle-perl		install
56
libbusiness-isbn-perl			install
57
libcache-fastmmap-perl		install
58
libcache-memcached-fast-perl		install
59
libcache-perl		install
60
libcgi-session-driver-memcached-perl			install
61
libcgi-session-perl			install
62
libcgi-session-serialize-yaml-perl	install
63
libchi-driver-memcached-perl		install
64
libchi-perl				install
65
libclass-accessor-perl			install
66
libclass-factory-util-perl		install
67
libdata-ical-perl			install
68
libdata-paginator-perl		install
69
libdate-calc-perl			install
70
libdate-manip-perl			install
71
libdatetime-event-ical-perl		install
72
libdatetime-format-dateparse-perl			install
73
libdatetime-format-ical-perl		install
74
libdatetime-format-mail-perl		install
75
libdatetime-format-mysql-perl		install
76
libdatetime-format-strptime-perl	install
77
libdatetime-format-w3cdtf-perl		install
78
libdatetime-locale-perl			install
79
libdatetime-perl			install
80
libdatetime-set-perl			install
81
libdatetime-timezone-perl		install
82
libdbd-mock-perl		install
83
libdbd-mysql-perl			install
84
libdbd-sqlite2-perl			install
85
libdbi-perl				install
86
libemail-date-perl			install
87
libgd-barcode-perl			install
88
libgd-gd2-perl				install
89
libgraphics-magick-perl			install
90
libgravatar-url-perl			install
91
libhtml-format-perl			install
92
libhtml-scrubber-perl			install
93
libhtml-template-pro-perl		install
94
libhttp-cookies-perl			install
95
libhttp-message-perl			install
96
libhttp-oai-perl			install
97
libjson-any-perl			install
98
libjson-perl				install
99
liblingua-ispell-perl			install
100
liblingua-stem-perl			install
101
liblingua-stem-snowball-perl		install
102
liblist-moreutils-perl			install
103
liblocale-currency-format-perl			install
104
liblocale-gettext-perl			install
105
liblocale-po-perl			install
106
libmail-sendmail-perl			install
107
libmarc-charset-perl			install
108
libmarc-record-perl			install
109
libmarc-xml-perl			install
110
libmime-lite-perl			install
111
libmodern-perl			install
112
libmodern-perl-perl			install
113
libmodule-bundled-files-perl		install
114
libmodule-install-perl			install
115
libmoose-perl		install
116
libmoosex-storage-perl			install
117
libmoosex-types-perl			install
118
libnet-ldap-perl			install
119
libnet-server-perl			install
120
libnet-z3950-zoom-perl			install
121
libnumber-format-perl			install
122
libpdf-api2-perl			install
123
libpdf-api2-simple-perl			install
124
libpdf-reuse-barcode-perl		install
125
libpdf-reuse-perl			install
126
libpdf-table-perl			install
127
libschedule-at-perl			install
128
libsms-send-perl			install
129
libstring-random-perl		install
130
libstring-rewriteprefix-perl		install
131
libtemplate-perl			install
132
libtemplate-plugin-htmltotext-perl	install
133
libtest-deep-perl		install
134
libtest-mockmodule-perl			install
135
libtest-strict-perl			install
136
libtest-warn-perl		install
137
libtest-yaml-valid-perl		install
138
libtext-bidi-perl           install
139
libtext-charwidth-perl			install
140
libtext-csv-encoded-perl			install
141
libtext-csv-perl			install
142
libtext-csv-xs-perl			install
143
libtext-iconv-perl			install
144
libtext-unaccent-perl			install
145
libtext-wrapi18n-perl			install
146
libtime-duration-perl			install
147
libtime-format-perl			install
148
libtime-progress-perl			install
149
libtimedate-perl			install
150
libuniversal-require-perl		install
151
libunix-syslog-perl			install
152
liburi-perl				install
153
libwww-perl				install
154
libxml-dom-perl				install
155
libxml-dumper-perl			install
156
libxml-libxml-perl			install
157
libxml-libxslt-perl			install
158
libxml-namespacesupport-perl		install
159
libxml-parser-perl			install
160
libxml-perl				install
161
libxml-regexp-perl			install
162
libxml-rss-perl				install
163
libxml-sax-perl				install
164
libxml-sax-writer-perl			install
165
libxml-simple-perl			install
166
libxml-xslt-perl			install
167
libyaml-perl				install
168
libyaml-syck-perl			install
(-)a/install_misc/ubuntu.packages (-169 lines)
Lines 1-168 Link Here
1
apache2					install
2
at					install
3
daemon					install
4
gcc					install
5
gettext					install
6
make					install
7
8
# mysql packages
9
10
mysql-server				install
11
libmysqlclient18			install
12
13
# yaz packages
14
15
yaz					install
16
yaz-doc					install
17
libyaz4					install
18
libyaz4-dev				install
19
20
# zebra packages
21
22
idzebra-2.0				install
23
idzebra-2.0-common			install
24
idzebra-2.0-doc				install
25
idzebra-2.0-utils			install
26
libidzebra-2.0-0			install
27
libidzebra-2.0-dev			install
28
libidzebra-2.0-mod-alvis		install
29
libidzebra-2.0-mod-grs-marc		install
30
libidzebra-2.0-mod-grs-regx		install
31
libidzebra-2.0-mod-grs-xml		install
32
libidzebra-2.0-mod-text			install
33
libidzebra-2.0-modules			install
34
35
# crypto packages
36
37
libgcrypt11				install
38
libgcrypt11-dev				install
39
40
# xml/xslt packages
41
42
libxml2					install
43
libxml2-dev				install
44
libxml2-utils				install
45
libxslt1.1				install
46
libxslt1-dev				install
47
48
# perl packages
49
50
libalgorithm-checkdigits-perl		install
51
libanyevent-http-perl		install
52
libanyevent-perl		install
53
libarchive-zip-perl		install
54
libauthen-cas-client-perl		install
55
libbiblio-endnotestyle-perl		install
56
libbusiness-isbn-perl			install
57
libcache-fastmmap-perl		install
58
libcache-memcached-fast-perl		install
59
libcache-perl		install
60
libcgi-session-driver-memcached-perl			install
61
libcgi-session-perl			install
62
libcgi-session-serialize-yaml-perl	install
63
libchi-driver-memcached-perl		install
64
libchi-perl				install
65
libclass-accessor-perl			install
66
libclass-factory-util-perl		install
67
libdata-ical-perl			install
68
libdata-paginator-perl		install
69
libdate-calc-perl			install
70
libdate-manip-perl			install
71
libdatetime-event-ical-perl		install
72
libdatetime-format-dateparse-perl			install
73
libdatetime-format-ical-perl            install
74
libdatetime-format-mail-perl		install
75
libdatetime-format-mysql-perl		install
76
libdatetime-format-strptime-perl	install
77
libdatetime-format-w3cdtf-perl		install
78
libdatetime-locale-perl			install
79
libdatetime-perl			install
80
libdatetime-set-perl			install
81
libdatetime-timezone-perl		install
82
libdbd-mock-perl		install
83
libdbd-mysql-perl			install
84
libdbd-sqlite2-perl			install
85
libdbi-perl				install
86
libemail-date-perl			install
87
libgd-barcode-perl			install
88
libgd-gd2-perl				install
89
libgraphics-magick-perl			install
90
libgravatar-url-perl			install
91
libhtml-format-perl			install
92
libhtml-scrubber-perl			install
93
libhtml-template-pro-perl		install
94
libhttp-cookies-perl			install
95
libhttp-message-perl			install
96
libhttp-oai-perl			install
97
libjson-any-perl			install
98
libjson-perl				install
99
liblingua-ispell-perl			install
100
liblingua-stem-perl			install
101
liblingua-stem-snowball-perl		install
102
liblist-moreutils-perl			install
103
liblocale-currency-format-perl			install
104
liblocale-gettext-perl			install
105
liblocale-po-perl			install
106
libmail-sendmail-perl			install
107
libmarc-charset-perl			install
108
libmarc-record-perl			install
109
libmarc-xml-perl			install
110
libmime-lite-perl			install
111
libmodern-perl			install
112
libmodern-perl-perl			install
113
libmodule-bundled-files-perl		install
114
libmodule-install-perl			install
115
libmoose-perl		install
116
libmoosex-storage-perl			install
117
libmoosex-types-perl			install
118
libnet-ldap-perl			install
119
libnet-server-perl			install
120
libnet-z3950-zoom-perl			install
121
libnumber-format-perl			install
122
libpdf-api2-perl			install
123
libpdf-api2-simple-perl			install
124
libpdf-reuse-barcode-perl		install
125
libpdf-reuse-perl			install
126
libpdf-table-perl			install
127
libschedule-at-perl			install
128
libsms-send-perl			install
129
libstring-random-perl		install
130
libstring-rewriteprefix-perl		install
131
libtemplate-perl			install
132
libtemplate-plugin-htmltotext-perl	install
133
libtest-deep-perl		install
134
libtest-mockmodule-perl			install
135
libtest-strict-perl			install
136
libtest-warn-perl		install
137
libtest-yaml-valid-perl		install
138
libtext-bidi-perl           install
139
libtext-charwidth-perl			install
140
libtext-csv-encoded-perl			install
141
libtext-csv-perl			install
142
libtext-csv-xs-perl			install
143
libtext-iconv-perl			install
144
libtext-unaccent-perl			install
145
libtext-wrapi18n-perl			install
146
libtime-duration-perl			install
147
libtime-format-perl			install
148
libtime-progress-perl			install
149
libtimedate-perl			install
150
libuniversal-require-perl		install
151
libunix-syslog-perl			install
152
liburi-perl				install
153
libwww-perl				install
154
libxml-dom-perl				install
155
libxml-dumper-perl			install
156
libxml-libxml-perl			install
157
libxml-libxslt-perl			install
158
libxml-namespacesupport-perl		install
159
libxml-parser-perl			install
160
libxml-perl				install
161
libxml-regexp-perl			install
162
libxml-rss-perl				install
163
libxml-sax-perl				install
164
libxml-sax-writer-perl			install
165
libxml-simple-perl			install
166
libxml-xslt-perl			install
167
libyaml-perl				install
168
libyaml-syck-perl			install
169
- 

Return to bug 18028