-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
894 lines (725 loc) · 30.6 KB
/
config.py
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
#----------------------------------------------------------------------
# Name: buildtools.config
# Purpose: Code to set and validate platform options and etc. for
# the wxPython build. Moved to their own module and
# class to help setup.py to be simpler.
#
# Author: Robin Dunn
#
# Created: 3-Nov-2010
# Copyright: (c) 2013 by Total Control Software
# License: wxWindows License
#----------------------------------------------------------------------
import sys
import os
import glob
import fnmatch
import re
import tempfile
import shutil
import codecs
import subprocess
from distutils.file_util import copy_file
from distutils.dir_util import mkpath
from distutils.dep_util import newer
from distutils.spawn import spawn
import distutils.sysconfig
runSilently = False
#----------------------------------------------------------------------
class Configuration(object):
##SIP = SIPdefault # Where is the sip binary?
SIPINC = 'sip/siplib' # Use our local copy of sip.h
SIPGEN = 'sip/gen' # Where the generated .sip files go
SIPFILES = 'sip' # where to find other sip files for %Include or %Import
SIPOUT = 'sip/cpp' # where to put the generated C++ code
ROOT_DIR = os.path.abspath(os.path.split(__file__)[0]+'/..')
# we need the WXWIN dir to configure this, see __init__
DOXY_XML_DIR = None
WX_CONFIG = None
# Usually you shouldn't need to touch this, but you can set it to
# pass an alternate version of wx-config or alternate flags,
# eg. as required by the .deb in-tree build. By default a
# wx-config command will be assembled based on version, port,
# etc. and it will be looked for on the default $PATH.
WXPORT = 'gtk2'
# On Linux/Unix there are several ports of wxWidgets available.
# Setting this value lets you select which will be used for the
# wxPython build. Possibilites are 'gtk', 'gtk2' and 'x11'.
# Currently only gtk and gtk2 works.
BUILD_BASE = "build"
# Directory to use for temporary build files.
MONOLITHIC = 0
# The core wxWidgets lib can be built as either a single
# monolithic DLL or as a collection of DLLs. This flag controls
# which set of libs will be used on Windows. (For other platforms
# it is automatic via using wx-config.)
WXDLLVER = None
# Version part of wxWidgets LIB/DLL names
COMPILER = 'msvc'
# Used to select which compiler will be used on Windows. This not
# only affects distutils, but also some of the default flags and
# other assumptions in this script. Current supported values are
# 'msvc' and 'mingw32'
ARCH = ''
# If this is set, add an -arch XXX flag to cflags. Only tested (and
# presumably, needed) for OS X.
NO_SCRIPTS = False
# Don't install the tools/script files
PKGDIR = 'wx'
# The name of the top-level package
# ---------------------------------------------------------------
# Basic initialization and configuration code
def __init__(self, noWxConfig=False):
self.CLEANUP = list()
self.resetVersion()
# change the PORT default for wxMac
if sys.platform[:6] == "darwin":
self.WXPORT = 'osx_cocoa'
# and do the same for wxMSW, just for consistency
if os.name == 'nt':
self.WXPORT = 'msw'
self.parseCmdLine()
if self.WXPORT != 'msw':
# make sure we only use the compiler value on MSW builds
self.COMPILER=None
self.WXPLAT2 = None
self.WXDIR = wxDir()
self.includes = [phoenixDir() + '/sip/siplib', # to get our version of sip.h
phoenixDir() + '/src', # for any hand-written headers
]
self.DOXY_XML_DIR = os.path.join(self.WXDIR, 'docs/doxygen/out/xml')
self.SIPOPTS = ' '.join(['-w', # enable warnings
'-o', # turn on auto-docstrings
#'-e', # turn on exceptions support
'-T', # turn off writing the timestamp to the generated files
'-g', # always release and reaquire the GIL
#'-r', # turn on function call tracing
'-I', os.path.join(phoenixDir(), 'src'),
'-I', os.path.join(phoenixDir(), 'sip', 'gen'),
])
if noWxConfig:
# this is as far as we go for now
return
# otherwise do the rest of it
self.finishSetup()
def finishSetup(self, wx_config=None, debug=None):
if wx_config is not None:
self.WX_CONFIG = wx_config
if debug is not None:
self.debug = debug
#---------------------------------------
# MSW specific settings
if os.name == 'nt' and self.COMPILER == 'msvc':
# Set compile flags and such for MSVC. These values are derived
# from the wxWidgets makefiles for MSVC, other compilers settings
# will probably vary...
self.WXPLAT = '__WXMSW__'
if os.environ.get('CPU', None) in ['AMD64', 'X64']:
self.VCDLL = 'vc%s_x64_dll' % getVisCVersion()
else:
self.VCDLL = 'vc%s_dll' % getVisCVersion()
self.includes += ['include',
opj(self.WXDIR, 'lib', self.VCDLL, 'msw' + self.libFlag()),
opj(self.WXDIR, 'include'),
opj(self.WXDIR, 'contrib', 'include'),
]
self.defines = [ ('WIN32', None),
('_WINDOWS', None),
(self.WXPLAT, None),
('WXUSINGDLL', '1'),
('ISOLATION_AWARE_ENABLED', None),
#('NDEBUG',), # using a 1-tuple makes it do an undef
]
self.libs = []
self.libdirs = [ opj(self.WXDIR, 'lib', self.VCDLL) ]
if self.MONOLITHIC:
self.libs += makeLibName('')
else:
self.libs += [ 'wxbase' + self.WXDLLVER + self.libFlag(),
'wxbase' + self.WXDLLVER + self.libFlag() + '_net',
self.makeLibName('core')[0],
]
self.libs += ['kernel32', 'user32', 'gdi32', 'comdlg32',
'winspool', 'winmm', 'shell32', 'oldnames', 'comctl32',
'odbc32', 'ole32', 'oleaut32', 'uuid', 'rpcrt4',
'advapi32', 'wsock32']
self.cflags = [ '/UNDEBUG',
'/Gy',
'/EHsc',
# '/GX-' # workaround for internal compiler error in MSVC on some machines
]
self.lflags = None
# Other MSVC flags...
# Uncomment these to have debug info for all kinds of builds
#self.cflags += ['/Od', '/Z7']
#self.lflags = ['/DEBUG', ]
#---------------------------------------
# Posix (wxGTK, wxMac or mingw32) settings
elif os.name == 'posix' or COMPILER == 'mingw32':
self.Verify_WX_CONFIG()
self.includes += ['include']
self.defines = [ #('NDEBUG',), # using a 1-tuple makes it do an undef
]
self.libdirs = []
self.libs = []
self.cflags = self.getWxConfigValue('--cxxflags')
self.cflags = self.cflags.split()
if self.debug:
self.cflags.append('-ggdb')
self.cflags.append('-O0')
else:
self.cflags.append('-O3')
lflags = self.getWxConfigValue('--libs')
self.MONOLITHIC = (lflags.find("_xrc") == -1)
self.lflags = lflags.split()
self.WXBASENAME = self.getWxConfigValue('--basename')
self.WXRELEASE = self.getWxConfigValue('--release')
self.WXPREFIX = self.getWxConfigValue('--prefix')
self.CC = self.CXX = self.LDSHARED = None
# wxMac settings
if sys.platform[:6] == "darwin":
self.WXPLAT = '__WXMAC__'
if self.WXPORT == 'osx_carbon':
# Flags and such for a Darwin (Max OS X) build of Python
self.WXPLAT2 = '__WXOSX_CARBON__'
else:
self.WXPLAT2 = '__WXOSX_COCOA__'
self.libs = ['stdc++']
if not self.ARCH == "":
for arch in self.ARCH.split(','):
self.cflags.append("-arch")
self.cflags.append(arch)
self.lflags.append("-arch")
self.lflags.append(arch)
if not os.environ.get('CC') or not os.environ.get('CXX'):
self.CC = os.environ["CC"] = self.getWxConfigValue('--cc')
self.CXX = os.environ["CXX"] = self.getWxConfigValue('--cxx')
# We want to use the linker command from wx to make sure
# we get the right sysroot, but we also need to ensure that
# the other linker flags that distutils wants to use are
# included as well.
LDSHARED = distutils.sysconfig.get_config_var('LDSHARED').split()
# remove the compiler command
del LDSHARED[0]
# remove any -sysroot flags and their arg
while 1:
try:
index = LDSHARED.index('-isysroot')
# Strip this argument and the next one:
del LDSHARED[index:index+2]
except ValueError:
break
LDSHARED = ' '.join(LDSHARED)
# Combine with wx's ld command and stash it in the env
# where distutils will get it later.
LDSHARED = self.getWxConfigValue('--ld').replace(' -o', '') + ' ' + LDSHARED
os.environ["LDSHARED"] = LDSHARED
# wxGTK settings
else:
# Set flags for other Unix type platforms
if self.WXPORT == 'gtk':
msg("WARNING: The GTK 1.x port is not supported")
self.WXPLAT = '__WXGTK__'
portcfg = os.popen('gtk-config --cflags', 'r').read()[:-1]
self.BUILD_BASE = self.BUILD_BASE + '-' + self.WXPORT
elif self.WXPORT == 'gtk2':
self.WXPLAT = '__WXGTK__'
portcfg = os.popen('pkg-config gtk+-2.0 --cflags', 'r').read()[:-1]
elif self.WXPORT == 'x11':
msg("WARNING: The wxX11 port is no supported")
self.WXPLAT = '__WXX11__'
portcfg = ''
self.BUILD_BASE = self.BUILD_BASE + '-' + self.WXPORT
elif self.WXPORT == 'msw':
self.WXPLAT = '__WXMSW__'
portcfg = ''
else:
raise SystemExit("Unknown WXPORT value: " + self.WXPORT)
self.cflags += portcfg.split()
# Some distros (e.g. Mandrake) put libGLU in /usr/X11R6/lib, but
# wx-config doesn't output that for some reason. For now, just
# add it unconditionally but we should really check if the lib is
# really found there or wx-config should be fixed.
if self.WXPORT != 'msw':
self.libdirs.append("/usr/X11R6/lib")
# Move the various -I, -D, etc. flags we got from the config scripts
# into the distutils lists.
self.cflags = self.adjustCFLAGS(self.cflags, self.defines, self.includes)
self.lflags = self.adjustLFLAGS(self.lflags, self.libdirs, self.libs)
self.cflags.insert(0, '-UNDEBUG')
if self.debug and self.WXPORT == 'msw' and self.COMPILER != 'mingw32':
self.defines.append( ('_DEBUG', None) )
# WAF wants a simple list of strings, so convert self.defines in case
# we'll be using that instead of distutils
self.wafDefines = []
for d in self.defines:
if len(d) > 1:
name, val = d
if val:
name = name+'='+val
self.wafDefines.append(name)
# ---------------------------------------------------------------
# Helper functions
def resetVersion(self):
# load the version numbers into this instance's namespace
versionfile = opj(os.path.split(__file__)[0], 'version.py')
myExecfile(versionfile, self.__dict__)
# Include the subversion revision in the version number? REV.txt can
# be created using the build.py setrev command. If it doesn't exist
# then the version number is built without a revision number. IOW, it
# is a release build. (In theory)
if os.path.exists('REV.txt'):
f = open('REV.txt')
self.VER_FLAGS += f.read().strip()
f.close()
self.VERSION = "%s.%s.%s%s" % (self.VER_MAJOR,
self.VER_MINOR,
self.VER_RELEASE,
self.VER_FLAGS)
self.WXDLLVER = '%d%d' % (self.VER_MAJOR, self.VER_MINOR)
def parseCmdLine(self):
self.debug = '--debug' in sys.argv or '-g' in sys.argv
# the values of the items in the class namespace that start
# with an upper case letter can be overridden on the command
# line
for key, default in Configuration.__dict__.items():
if key[0] < 'A' or key[0] > 'Z':
continue
for idx, arg in enumerate(sys.argv):
if arg and arg.startswith(key + '='):
value = arg.split('=', 1)[1]
if isinstance(default, int):
value = int(value)
setattr(self, key, value)
sys.argv[idx] = None
# remove the cmd line args that we recognized
sys.argv = [arg for arg in sys.argv if arg is not None]
def Verify_WX_CONFIG(self):
"""
Called for the builds that need wx-config. If WX_CONFIG is
not set then determines the flags needed based on build
options and searches for wx-config on the PATH.
"""
# if WX_CONFIG hasn't been set to an explicit value then construct one.
if self.WX_CONFIG is None:
self.WX_CONFIG='wx-config'
port = self.WXPORT
if port == "x11":
port = "x11univ"
flags = ' --toolkit=%s' % port
flags += ' --unicode=yes'
flags += ' --version=%s.%s' % (self.VER_MAJOR, self.VER_MINOR)
searchpath = os.environ["PATH"]
for p in searchpath.split(':'):
fp = os.path.join(p, 'wx-config')
if os.path.exists(fp) and os.access(fp, os.X_OK):
# success
msg("Found wx-config: " + fp)
msg(" Using flags: " + flags)
self.WX_CONFIG = fp + flags
if runSilently:
self.WX_CONFIG += " 2>/dev/null "
break
else:
msg("ERROR: WX_CONFIG not specified and wx-config not found on the $PATH")
sys.exit(1)
# TODO: execute WX_CONFIG --list and verify a matching config is found
def getWxConfigValue(self, flag):
cmd = "%s %s" % (self.WX_CONFIG, flag)
value = os.popen(cmd, 'r').read()[:-1]
return value
def build_locale_dir(self, destdir, verbose=1):
"""Build a locale dir under the wxPython package for MSW"""
moFiles = glob.glob(opj(self.WXDIR, 'locale', '*.mo'))
for src in moFiles:
lang = os.path.splitext(os.path.basename(src))[0]
dest = opj(destdir, lang, 'LC_MESSAGES')
mkpath(dest, verbose=verbose)
copy_file(src, opj(dest, 'wxstd.mo'), update=1, verbose=verbose)
self.CLEANUP.append(opj(dest, 'wxstd.mo'))
self.CLEANUP.append(dest)
def build_locale_list(self, srcdir):
# get a list of all files under the srcdir, to be used for install_data
if sys.version_info[0] == 2:
def walk_helper(lst, dirname, files):
for f in files:
filename = opj(dirname, f)
if not os.path.isdir(filename):
lst.append( (dirname, [filename]) )
file_list = []
os.path.walk(srcdir, walk_helper, file_list)
return file_list
else:
# TODO: Python3 version using os.walk generator
return []
def find_data_files(self, srcdir, *wildcards, **kw):
# get a list of all files under the srcdir matching wildcards,
# returned in a format to be used for install_data
def walk_helper(arg, dirname, files):
if '.svn' in dirname:
return
names = []
lst, wildcards = arg
for wc in wildcards:
wc_name = opj(dirname, wc)
for f in files:
filename = opj(dirname, f)
if fnmatch.fnmatch(filename, wc_name) and not os.path.isdir(filename):
names.append(filename)
if names:
lst.append( (dirname, names ) )
file_list = []
recursive = kw.get('recursive', True)
if recursive:
os.path.walk(srcdir, walk_helper, (file_list, wildcards))
else:
walk_helper((file_list, wildcards),
srcdir,
[os.path.basename(f) for f in glob.glob(opj(srcdir, '*'))])
return file_list
def makeLibName(self, name, checkMonolithic=False, isMSWBase=False):
if checkMonolithic and self.MONOLITHIC:
return []
basename = 'base' if isMSWBase else 'msw'
if os.name == 'posix' or self.COMPILER == 'mingw32':
libname = '%s_%s-%s' % (self.WXBASENAME, name, self.WXRELEASE)
elif name:
libname = 'wx%s%s%s_%s' % (basename, self.WXDLLVER, self.libFlag(), name)
else:
libname = 'wx%s%s%s' % (basename, self.WXDLLVER, self.libFlag())
return [libname]
def libFlag(self):
if not self.debug:
rv = ''
else:
rv = 'd'
if True: ##UNICODE:
rv = 'u' + rv
return rv
def findLib(self, name, libdirs):
name = self.makeLibName(name)[0]
if os.name == 'posix' or self.COMPILER == 'mingw32':
lflags = self.getWxConfigValue('--libs')
lflags = lflags.split()
# if wx-config --libs output does not start with -L, wx is
# installed with a standard prefix and wx-config does not
# output these libdirs because they are already searched by
# default by the compiler and linker.
if lflags[0][:2] != '-L':
dirs = libdirs + ['/usr/lib', '/usr/local/lib']
else:
dirs = libdirs
name = 'lib'+name
else:
dirs = libdirs[:]
for d in dirs:
p = os.path.join(d, name)
if glob.glob(p+'*') != []:
return True
return False
def adjustCFLAGS(self, cflags, defines, includes):
"""
Extract the raw -I, -D, and -U flags from cflags and put them into
defines and includes as needed.
"""
newCFLAGS = []
for flag in cflags:
if flag[:2] == '-I':
includes.append(flag[2:])
elif flag[:2] == '-D':
flag = flag[2:]
if flag.find('=') == -1:
defines.append( (flag, None) )
else:
defines.append( tuple(flag.split('=')) )
elif flag[:2] == '-U':
defines.append( (flag[2:], ) )
else:
newCFLAGS.append(flag)
return newCFLAGS
def adjustLFLAGS(self, lflags, libdirs, libs):
"""
Extract the -L and -l flags from lflags and put them in libdirs and
libs as needed
"""
newLFLAGS = []
for flag in lflags:
if flag[:2] == '-L':
libdirs.append(flag[2:])
elif flag[:2] == '-l':
libs.append(flag[2:])
else:
newLFLAGS.append(flag)
return newLFLAGS
# We'll use a factory function so we can use the Configuration class as a singleton
_config = None
def Config(*args, **kw):
global _config
if _config is None:
_config = Configuration(*args, **kw)
return _config
#----------------------------------------------------------------------
# other helpers
def msg(text):
if not runSilently:
print(text)
def opj(*args):
path = os.path.join(*args)
return os.path.normpath(path)
def posixjoin(a, *p):
"""Join two or more pathname components, inserting sep as needed"""
path = a
for b in p:
if os.path.isabs(b):
path = b
elif path == '' or path[-1:] in '/\\:':
path = path + b
else:
path = path + '/' + b
return path
def loadETG(name):
"""
Execute an ETG script so we can load a namespace with its contents (such
as a list of dependencies, etc.) for use by setup.py
"""
class _Namespace(object):
def __init__(self):
self.__dict__['__name__'] = 'namespace'
self.__dict__['__file__'] = name
def nsdict(self):
return self.__dict__
ns = _Namespace()
myExecfile(name, ns.nsdict())
return ns
def etg2sip(etgfile):
cfg = Config()
sipfile = os.path.splitext(os.path.basename(etgfile))[0] + '.sip'
sipfile = posixjoin(cfg.SIPGEN, sipfile)
return sipfile
def etg2cffi(etgfile):
cfg = Config()
outfile = os.path.splitext(os.path.basename(etgfile))[0] + '.def'
outfile = posixjoin(cfg.ROOT_DIR, 'cffi', 'def_gen', outfile)
return outfile
def etg2outfile(generator, etgfile):
if generator == 'sip':
return etg2sip(etgfile)
elif generator == 'cffi':
return etg2cffi(etgfile)
def _getSbfValue(etg, keyName):
cfg = Config()
sbf = opj(cfg.SIPOUT, etg.NAME + '.sbf')
out = list()
for line in open(sbf):
key, value = line.split('=')
if key.strip() == keyName:
return sorted([opj(cfg.SIPOUT, v) for v in value.strip().split()])
return None
def getEtgSipCppFiles(etg):
return _getSbfValue(etg, 'sources')
def getEtgSipHeaders(etg):
return _getSbfValue(etg, 'headers')
def findCmd(cmd):
"""
Search the PATH for a matching command
"""
PATH = os.environ['PATH'].split(os.pathsep)
if os.name == 'nt' and not cmd.endswith('.exe'):
cmd += '.exe'
for p in PATH:
c = os.path.join(p, cmd)
if os.path.exists(c):
return c
return None
def phoenixDir():
return os.path.abspath(posixjoin(os.path.dirname(__file__), '..'))
def wxDir():
WXWIN = os.environ.get('WXWIN')
if not WXWIN:
for rel in ['../wxWidgets', '../wx', './wxWidgets', '..']:
path = os.path.join(phoenixDir(), rel)
if path and os.path.exists(path) and os.path.isdir(path):
WXWIN = os.path.abspath(os.path.join(phoenixDir(), rel))
break
assert WXWIN not in [None, '']
return WXWIN
def copyFile(src, dest, verbose=False):
"""
Copy file from src to dest, preserving permission bits, etc. If src is a
symlink then dest will be a symlink as well instead of just copying the
linked file's contents to a new file.
"""
if verbose:
msg('copying %s --> %s' % (src, dest))
if os.path.islink(src):
if os.path.exists(dest):
os.unlink(dest)
linkto = os.readlink(src)
os.symlink(linkto, dest)
else:
shutil.copy2(src, dest)
def copyIfNewer(src, dest, verbose=False):
if os.path.isdir(dest):
dest = os.path.join(dest, os.path.basename(src))
if newer(src, dest):
copyFile(src, dest, verbose)
def writeIfChanged(filename, text):
"""
Check the current contents of filename and only overwrite with text if
the content is different (therefore preserving the timestamp if there is
no update.)
"""
if os.path.exists(filename):
f = textfile_open(filename, 'rt')
current = f.read()
f.close()
if current == text:
return
f = textfile_open(filename, 'wt')
f.write(text)
f.close()
# TODO: we might be able to get rid of this when the install code is updated...
def macFixDependencyInstallName(destdir, prefix, extension, buildDir):
print("**** macFixDependencyInstallName(%s, %s, %s, %s)" % (destdir, prefix, extension, buildDir))
pwd = os.getcwd()
os.chdir(destdir+prefix+'/lib')
dylibs = glob.glob('*.dylib')
for lib in dylibs:
#cmd = 'install_name_tool -change %s/lib/%s %s/lib/%s %s' % \
# (destdir+prefix,lib, prefix,lib, extension)
cmd = 'install_name_tool -change %s/lib/%s %s/lib/%s %s' % \
(buildDir,lib, prefix,lib, extension)
print(cmd)
os.system(cmd)
os.chdir(pwd)
def macSetLoaderNames(filenames):
"""
Scan the list of dynamically loaded files for each file in filenames,
replacing the path for the wxWidgets libraries with "@loader_path"
"""
for filename in filenames:
if not os.path.isfile(filename):
continue
# TODO: Change the -id too?
for line in os.popen('otool -L %s' % filename, 'r').readlines(): # -arch all ??
if line.startswith('\t') and 'libwx_' in line:
line = line.strip()
endPos = line.rfind(' (')
curName = line[:endPos]
newName = '@loader_path/' + os.path.basename(curName)
cmd = 'install_name_tool -change %s %s %s' % (curName, newName, filename)
os.system(cmd)
def getSvnRev():
# Some helpers for the code below
def _getDate():
import datetime
today = datetime.date.today()
return "%d%02d%02d" % (today.year, today.month, today.day)
def _getSvnRevision():
svnrev = None
try:
rev = runcmd('svnversion', getOutput=True, echoCmd=False)
except:
return None
if rev != 'exported':
svnrev = rev.split(':')[0]
return svnrev
def _getGitSvnRevision():
svnrev = None
try:
info = runcmd('git svn info', getOutput=True, echoCmd=False)
except:
return None
for line in info.splitlines():
if line.startswith('Revision:'):
svnrev = line.split(' ')[-1]
break
return svnrev
# Try getting the revision number from SVN, or GIT SVN, or just fall back
# to the date.
svnrev = _getSvnRevision()
if not svnrev:
svnrev = _getGitSvnRevision()
if not svnrev:
svnrev = _getDate()
msg('WARNING: Unable to determine SVN revision, using date (%s) instead.' % svnrev)
return svnrev
def runcmd(cmd, getOutput=False, echoCmd=True, fatal=True):
if echoCmd:
msg(cmd)
otherKwArgs = dict()
if getOutput:
otherKwArgs = dict(stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
sp = subprocess.Popen(cmd, shell=True, env=os.environ, **otherKwArgs)
output = None
if getOutput:
output = sp.stdout.read()
if sys.version_info > (3,):
output = output.decode('utf-8') # TODO: is utf-8 okay here?
output = output.rstrip()
rval = sp.wait()
if rval:
# Failed!
#raise subprocess.CalledProcessError(rval, cmd)
print("Command '%s' failed with exit code %d." % (cmd, rval))
if getOutput:
print(output)
if fatal:
sys.exit(rval)
return output
def myExecfile(filename, ns):
if sys.version_info < (3,):
execfile(filename, ns)
else:
f = open(filename, 'r')
source = f.read()
f.close()
exec(source, ns)
def textfile_open(filename, mode='rt'):
"""
Simple wrapper around open() that will use codecs.open on Python2 and
on Python3 will add the encoding parameter to the normal open(). The
mode parameter must include the 't' to put the stream into text mode.
"""
assert 't' in mode
if sys.version_info < (3,):
import codecs
mode = mode.replace('t', '')
return codecs.open(filename, mode, encoding='utf-8')
else:
return open(filename, mode, encoding='utf-8')
def getSipFiles(names):
"""
Returns a list of the coresponding .sip files for each of the names in names.
"""
files = list()
for template in ['sip/gen/%s.sip', 'src/%s.sip']:
for name in names:
name = template % name
if os.path.exists(name):
files.append(name)
return files
def getVisCVersion():
text = runcmd("cl.exe", getOutput=True, echoCmd=False)
if 'Version 13' in text:
return '71'
if 'Version 15' in text:
return '90'
if 'Version 16' in text:
return '100'
# TODO: Add more tests to get the other versions...
else:
return 'FIXME'
_haveObjDump = None
def canGetSOName():
global _haveObjDump
if _haveObjDump is None:
_haveObjDump = findCmd('objdump') is not None
return _haveObjDump
def getSOName(filename):
output = runcmd('objdump -p %s' % filename, True)
result = re.search('^\s+SONAME\s+(.+)$', output, re.MULTILINE)
if result:
return result.group(1)
return None