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

« back to all changes in this revision

Viewing changes to setup/install.py

  • Committer: Matt Giuca
  • Date: 2009-04-22 04:13:54 UTC
  • Revision ID: matt.giuca@gmail.com-20090422041354-atmqpak2c7hd37ym
ivle.config: Fixed docstring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
    parser.add_option("-n", "--dry",
43
43
        action="store_true", dest="dry",
44
44
        help="Print out the actions but don't do anything.")
 
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.")
45
48
    parser.add_option("--root",
46
49
        action="store", dest="rootdir",
47
50
        help="Install into a different root directory.",
59
62
    # Prefix must be absolute (not really necessary, but since a relative
60
63
    # prefix will be taken relative to *root* not working directory, it is
61
64
    # confusing if we allow it).
 
65
    print options.prefix[:1]
62
66
    if options.prefix[:1] not in (os.path.sep, os.path.altsep):
63
67
        print >>sys.stderr, """prefix must be an absolute path.
64
68
    (This will be interpreted relative to root, so provide --root=. if you
73
77
    # Call the real function
74
78
    return __install(prefix=options.prefix,
75
79
                     python_site_packages=options.python_site_packages,
76
 
                     dry=options.dry, rootdir=options.rootdir)
 
80
                     dry=options.dry, rootdir=options.rootdir,
 
81
                     nosvnrevno=options.nosvnrevno)
77
82
 
78
 
def __install(prefix, python_site_packages, dry=False, rootdir=None):
 
83
def __install(prefix, python_site_packages, dry=False, rootdir=None,
 
84
              nosvnrevno=False):
79
85
    install_list = util.InstallList()
80
86
 
81
87
    # We need to apply make_install_path with the rootdir to an awful lot of
124
130
    # Copy the lib directory (using the list)
125
131
    util.action_copylist(install_list.list_ivle_lib, python_site_packages, dry)
126
132
 
 
133
    if not nosvnrevno:
 
134
        # Create the ivle working revision record file
 
135
        ivle_revision_file = os.path.join(share_path, 'revision.txt')
 
136
        if not dry:
 
137
            try:
 
138
                conf = open(ivle_revision_file, "w")
 
139
 
 
140
                conf.write("""# SVN revision r%s
 
141
# Source tree location: %s
 
142
# Modified files:
 
143
""" % (util.get_svn_revision(), os.getcwd()))
 
144
 
 
145
                conf.close()
 
146
            except IOError, (errno, strerror):
 
147
                print "IO error(%s): %s" % (errno, strerror)
 
148
                sys.exit(1)
 
149
 
 
150
            os.system("svn status . >> %s" % ivle_revision_file)
 
151
 
 
152
        print "Wrote IVLE code revision status to %s" % ivle_revision_file
 
153
 
127
154
    return 0
128
155