1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
#!/usr/bin/env python
# $Id: SetupTools.py,v 1.6 2002/10/05 19:52:00 tavis_rudd Exp $
"""Some tools for extending and working with distutils
CREDITS: This module borrows code and ideas from M.A. Lemburg's excellent setup
tools for the mxBase package.
"""
__author__ = "Tavis Rudd <tavis@damnsimple.com>"
__version__ = "$Revision: 1.6 $"[11:-2]
##################################################
## GLOBALS AND CONSTANTS ##
True = (1==1)
False = (1==0)
##################################################
## DEPENDENCIES ##
from distutils.core import setup
from distutils.core import Command
from distutils.command.install import install
from distutils.command.install_data import install_data
from distutils.command.sdist import sdist
import os
from os import listdir
import os.path
from os.path import exists, isdir, isfile, join, splitext
import types
import glob
import string
import traceback
#imports from Cheetah ...
from src.FileUtils import findFiles
##################################################
## CLASSES ##
class mod_install_data(install_data):
"""A modified version of the disutils install_data command that allows data
files to be included directly in the installed Python package tree.
"""
def finalize_options(self):
if self.install_dir is None:
installobj = self.distribution.get_command_obj('install')
#self.install_dir = installobj.install_platlib
self.install_dir = installobj.install_lib
install_data.finalize_options(self)
def run (self):
if not self.dry_run:
self.mkpath(self.install_dir)
data_files = self.get_inputs()
for entry in data_files:
if type(entry) != types.StringType:
raise ValueError, 'The entries in "data_files" must be strings'
entry = string.join(string.split(entry, '/'), os.sep)
# entry is a filename or glob pattern
if entry.startswith('recursive:'):
entry = entry[len('recursive:'):]
dir = entry.split()[0]
globPatterns = entry.split()[1:]
filenames = findFiles(dir, globPatterns)
else:
filenames = glob.glob(entry)
for filename in filenames:
## generate the dstPath from the filename
# - deal with 'package_dir' translations
topDir, subPath = (filename.split(os.sep)[0],
os.sep.join( filename.split(os.sep)[1:] )
)
package_dirDict = self.distribution.package_dir
if package_dirDict:
packageDir = topDir
for key, val in package_dirDict.items():
if val == topDir:
packageDir = key
break
else:
packageDir = topDir
dstPath = os.path.join(self.install_dir, packageDir, subPath)
## add the file to the list of outfiles
dstdir = os.path.split(dstPath)[0]
if not self.dry_run:
self.mkpath(dstdir)
outfile = self.copy_file(filename, dstPath)[0]
else:
outfile = dstPath
self.outfiles.append(outfile)
class contrib(Command):
"""a setup command that will process the contributed packages.
USAGE: setup.py contrib install
or
setup.py contrib sdist
etc.
"""
description = ""
# List of option tuples: long name, short name (None if no short
# name), and help string.
user_options = [ ('cmd=', None,
"The command to run on each of the contrib packages"),
('contrib_dir=', None,
"The directory which contains all of the contrib packages"),
('contrib_packages=', None,
"A whitespace separated list of contrib package subdirs"),
]
def initialize_options (self):
self.cmd = 'install'
def finalize_options (self):
pass
def run(self):
cwd = os.getcwd()
for p in self.contrib_packages.split():
d = os.path.join(cwd, self.contrib_dir, p)
os.chdir(d)
print "Working on", d, "(", os.getcwd(), ")"
try:
os.system(sys.executable+' setup.py '+ self.cmd)
except:
print "An error occurred while installing the contributed packages."
#os.chdir(cwd)
raise
class sdist_docs(sdist):
"""A setup command that will rebuild Users Guide at the same time as
creating a source distribution.
It relies on the main tex-file being called users_guide.tex and the tex file
being in a form that Python's mkhowto script accepts."""
def run(self):
try:
from main_package.Version import version
currentDir = os.getcwd()
os.chdir(os.path.join(currentDir,'docs','src'))
fp = open('users_guide.tex','r')
originalTexCode = fp.read()
fp.close()
newTexCode = re.sub(r'(?<=\\release\{)[0-9\.a-zA-Z]*',str(version), originalTexCode)
fp = open('users_guide.tex','w')
fp.write(newTexCode)
fp.close()
os.system('make -f Makefile')
os.chdir(currentDir)
except:
print "The sdist_docs command couldn't rebuild the Users Guide"
os.chdir(currentDir)
sdist.run(self)
class mod_install(install):
"""A modified version of the disutils install command that gets rid of the
old site-packages/Webware/Cheetah directory.
"""
def removeOldCheetahLocation(self):
import shutil
oldInstallPath = os.path.join(self.install_lib, 'Webware', 'Cheetah')
if os.path.exists(oldInstallPath):
print 'removing old cheetah installation directory', oldInstallPath
try:
shutil.rmtree(oldInstallPath)
except:
traceback.print_exc()
print '>>> COULD NOT REMOVE OLD CHEETAH INSTALL DIR (' + \
oldInstallPath + ') YOU MUST DO IT MANUALLY.'
def run (self):
install.run(self)
self.removeOldCheetahLocation()
##################################################
## FUNCTIONS ##
def run_setup(configurations):
""" Run distutils setup.
The parameters passed to setup() are extracted from the list of modules,
classes or instances given in configurations.
Names with leading underscore are removed from the parameters.
Parameters which are not strings, lists, tuples, or dicts are removed as
well. Configurations which occur later in the configurations list
override settings of configurations earlier in the list.
"""
# Build parameter dictionary
kws = {}
for configuration in configurations:
kws.update(vars(configuration))
for name, value in kws.items():
if name[:1] == '_' or \
type(value) not in (types.StringType,
types.ListType,
types.TupleType,
types.DictType,
types.IntType,
):
del kws[name]
# Add setup extensions
cmdclasses = {
'install':mod_install,
'install_data': mod_install_data,
'contrib':contrib,
'sdist_docs':sdist_docs,
}
kws['cmdclass'] = cmdclasses
# Invoke distutils setup
apply(setup, (), kws)
|