~azzar1/unity/add-show-desktop-key

803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
1
# IVLE - Informatics Virtual Learning Environment
2
# Copyright (C) 2007-2008 The University of Melbourne
3
#
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18
# Module: setup/install
19
# Author: Matt Giuca, Refactored by David Coles
20
# Date:   03/07/2008
21
22
import optparse
23
import os
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
24
import sys
1092.1.1 by William Grant
[Uber-commit of holiday work because I lacked a local copy of the branch.]
25
import functools
1184 by Matt Giuca
setup/install.py: Now compute python site-packages path using
26
import distutils.sysconfig
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
27
28
from setup import util
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
29
30
def install(args):
31
    usage = """usage: %prog install [options]
32
(Requires root)
33
Create target install directory ($target).
34
Create $target/bin.
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
35
Copy bin/trampoline/trampoline to $target/bin.
36
Copy bin/timount/timount to $target/bin.
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
37
chown and chmod the installed trampoline.
38
"""
39
40
    # Parse arguments
41
    parser = optparse.OptionParser(usage)
42
    parser.add_option("-n", "--dry",
43
        action="store_true", dest="dry",
44
        help="Print out the actions but don't do anything.")
1092.1.1 by William Grant
[Uber-commit of holiday work because I lacked a local copy of the branch.]
45
    parser.add_option("-R", "--nosvnrevno",
46
        action="store_true", dest="nosvnrevno",
47
        help="Don't write out the Subversion revision to the share directory.")
48
    parser.add_option("--root",
49
        action="store", dest="rootdir",
50
        help="Install into a different root directory.",
51
        default='/')
1092.1.43 by Matt Giuca
setup.install: Now takes --prefix and --python-site-packages as arguments. NO
52
    parser.add_option("--prefix",
53
        action="store", dest="prefix",
54
        help="Base prefix to install IVLE into (default: /usr/local).",
55
        default='/usr/local')
56
    parser.add_option("--python-site-packages",
57
        action="store", dest="python_site_packages",
58
        help="Path to Python site packages directory.",
1183 by Matt Giuca
setup/install.py: Now uses --prefix to compute the Python site packages path.
59
        default=None)
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
60
    (options, args) = parser.parse_args(args)
61
1182 by Matt Giuca
setup/install.py: Now forces --prefix to be an absolute path, to avoid
62
    # Prefix must be absolute (not really necessary, but since a relative
63
    # prefix will be taken relative to *root* not working directory, it is
64
    # confusing if we allow it).
65
    if options.prefix[:1] not in (os.path.sep, os.path.altsep):
66
        print >>sys.stderr, """prefix must be an absolute path.
67
    (This will be interpreted relative to root, so provide --root=. if you
68
    want a path relative to the working directory)."""
69
        return 1
70
1183 by Matt Giuca
setup/install.py: Now uses --prefix to compute the Python site packages path.
71
    # Calculate python_site_packages using the supplied prefix
72
    if options.python_site_packages is None:
1184 by Matt Giuca
setup/install.py: Now compute python site-packages path using
73
        options.python_site_packages = distutils.sysconfig.get_python_lib(
74
            prefix=options.prefix)
1183 by Matt Giuca
setup/install.py: Now uses --prefix to compute the Python site packages path.
75
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
76
    # Call the real function
1092.1.43 by Matt Giuca
setup.install: Now takes --prefix and --python-site-packages as arguments. NO
77
    return __install(prefix=options.prefix,
78
                     python_site_packages=options.python_site_packages,
79
                     dry=options.dry, rootdir=options.rootdir,
1092.1.42 by Matt Giuca
setup.install: Removed a lot of install steps, which created directories and
80
                     nosvnrevno=options.nosvnrevno)
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
81
1092.1.43 by Matt Giuca
setup.install: Now takes --prefix and --python-site-packages as arguments. NO
82
def __install(prefix, python_site_packages, dry=False, rootdir=None,
83
              nosvnrevno=False):
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
84
    install_list = util.InstallList()
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
85
1092.1.1 by William Grant
[Uber-commit of holiday work because I lacked a local copy of the branch.]
86
    # We need to apply make_install_path with the rootdir to an awful lot of
87
    # config variables, so make it easy:
88
    mip = functools.partial(util.make_install_path, rootdir)
89
1092.1.43 by Matt Giuca
setup.install: Now takes --prefix and --python-site-packages as arguments. NO
90
    # Compute the lib_path, share_path and bin_path (copied from
91
    # ivle/conf/conf.py).
92
    lib_path = mip(os.path.join(prefix, 'lib/ivle'))
93
    share_path = mip(os.path.join(prefix, 'share/ivle'))
94
    bin_path = mip(os.path.join(prefix, 'bin'))
95
    python_site_packages = mip(python_site_packages)
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
96
97
    # Must be run as root or a dry run  
98
    if dry:
99
        print "Dry run (no actions will be executed)\n"
100
    
101
    if not dry and os.geteuid() != 0:
1092.1.8 by Matt Giuca
setup/install.py: Fixed non-root message (said it was build).
102
        print >>sys.stderr, "Must be root to run install"
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
103
        return 1
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
104
1092.1.57 by William Grant
Installing will now create /etc/ivle.
105
    # Create the config directory.
1099.1.170 by William Grant
mip() the config dir when installing.
106
    util.action_mkdir(mip('/etc/ivle/plugins.d'), dry)
1092.1.57 by William Grant
Installing will now create /etc/ivle.
107
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
108
    # Create lib and copy the compiled files there
109
    util.action_mkdir(lib_path, dry)
110
111
    tramppath = os.path.join(lib_path, 'trampoline')
112
    util.action_copyfile('bin/trampoline/trampoline', tramppath, dry)
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
113
    # chown trampoline to root and set setuid bit
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
114
    util.action_chown_setuid(tramppath, dry)
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
115
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
116
    timountpath = os.path.join(lib_path, 'timount')
117
    util.action_copyfile('bin/timount/timount', timountpath, dry)
813 by William Grant
Merge jails-redux branch. We now use aufs rather than hardlinking tens
118
1092.1.1 by William Grant
[Uber-commit of holiday work because I lacked a local copy of the branch.]
119
    # Copy in the services (only usrmgt-server is needed on the host, but
120
    # the jail build requires the rest).
121
    util.action_copylist(install_list.list_services, share_path, dry)
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
122
    usrmgtpath = os.path.join(share_path, 'services/usrmgt-server')
123
    util.action_chmod_x(usrmgtpath, dry)
124
125
    # Copy the user-executable binaries using the list.
126
    util.action_copylist(install_list.list_user_binaries, bin_path, dry,
127
                         onlybasename=True)
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
128
1092.1.1 by William Grant
[Uber-commit of holiday work because I lacked a local copy of the branch.]
129
    # Copy the lib directory (using the list)
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
130
    util.action_copylist(install_list.list_ivle_lib, python_site_packages, dry)
1092.1.1 by William Grant
[Uber-commit of holiday work because I lacked a local copy of the branch.]
131
132
    if not nosvnrevno:
133
        # Create the ivle working revision record file
134
        ivle_revision_file = os.path.join(share_path, 'revision.txt')
135
        if not dry:
136
            try:
137
                conf = open(ivle_revision_file, "w")
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
138
1092.1.1 by William Grant
[Uber-commit of holiday work because I lacked a local copy of the branch.]
139
                conf.write("""# SVN revision r%s
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
140
# Source tree location: %s
141
# Modified files:
142
""" % (util.get_svn_revision(), os.getcwd()))
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
143
1092.1.1 by William Grant
[Uber-commit of holiday work because I lacked a local copy of the branch.]
144
                conf.close()
145
            except IOError, (errno, strerror):
146
                print "IO error(%s): %s" % (errno, strerror)
147
                sys.exit(1)
148
149
            os.system("svn status . >> %s" % ivle_revision_file)
150
151
        print "Wrote IVLE code revision status to %s" % ivle_revision_file
803 by dcoles
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should
152
153
    return 0
154