VER_MAJOR = 2 # The first three must match wxWidgets
VER_MINOR = 5
-VER_RELEASE = 1
-VER_SUBREL = 6 # wxPython release num for x.y.z release of wxWidgets
+VER_RELEASE = 2
+VER_SUBREL = 2 # wxPython release num for x.y.z release of wxWidgets
VER_FLAGS = "p" # release flags, such as prerelease num, unicode, etc.
DESCRIPTION = "Cross platform GUI toolkit for Python"
BUILD_RENAMERS = 1 # Should we build the renamer modules too?
+FULL_DOCS = 0 # Some docstrings are split into a basic docstring and a
+ # details string. Setting this flag to 1 will
+ # cause the two strings to be combined and output
+ # as the full docstring.
+
UNICODE = 0 # This will pass the 'wxUSE_UNICODE' flag to SWIG and
# will ensure that the right headers are found and the
# right libs are linked.
'BUILD_GIZMOS', 'BUILD_DLLWIDGET', 'BUILD_IEWIN', 'BUILD_ACTIVEX',
'CORE_ONLY', 'PREP_ONLY', 'USE_SWIG', 'UNICODE',
'UNDEF_NDEBUG', 'NO_SCRIPTS', 'NO_HEADERS', 'BUILD_RENAMERS',
+ 'FULL_DOCS',
'FINAL', 'HYBRID', ]:
for x in range(len(sys.argv)):
if sys.argv[x].find(flag) == 0:
i_file = os.path.join(dir, file)
py_file = os.path.join(dir, gendir, pre+basefile+'.py')
cpp_file = os.path.join(dir, gendir, pre+basefile+'_wrap.cpp')
- xml_file = os.path.join("docs", "xml-raw", basefile+'_swig.xml')
+ xml_file = os.path.join("docs", "xml-raw", basefile+pre+'_swig.xml')
if add_under:
interface = ['-interface', '_'+basefile+'_']
BUILD_BASE = BUILD_BASE + '.unicode'
VER_FLAGS += 'u'
+if os.path.exists('DAILY_BUILD'):
+
+ VER_FLAGS += '.' + open('DAILY_BUILD').read().strip()
VERSION = "%s.%s.%s.%s%s" % (VER_MAJOR, VER_MINOR, VER_RELEASE,
VER_SUBREL, VER_FLAGS)
if UNICODE:
swig_args.append('-DwxUSE_UNICODE')
+if FULL_DOCS:
+ swig_args.append('-D_DO_FULL_DOCS')
+
+
swig_deps = [ 'src/my_typemaps.i',
'src/common.swg',
'src/pyrun.swg',