]>
git.saurik.com Git - wxWidgets.git/blob - distrib/scripts/create-archive.py
868ae2f6230af80190aae3d6e365d41369ef4ee8
16 scriptDir
= os
.path
.join(sys
.path
[0])
17 rootDir
= os
.path
.abspath(os
.path
.join(scriptDir
, "..", ".."))
18 contribDir
= os
.path
.join("contrib", "src")
20 dirsToCopy
= ["art", "build", "debian", "demos", "distrib/mac", "docs", "include", "interface", "lib",
21 "locale", "samples", "src", "tests", "utils"]
23 dirsToIgnore
= [".svn", "CVS", ".git"]
24 excludeExtensions
= [".rej", ".orig", ".mine", ".tmp"]
27 "compression" : ("gzip", "Compression to use. Values are: gzip, bzip, zip, all (default: gzip)"),
28 "docs" : ("html", "Doc formats to build. Comma separated. Values are: none, html (default: html)"),
29 "name" : ("wxWidgets", "Name given to the tarball created (default: wxWidgets)"),
30 "postfix" : ("", "String appended to the version to indicate a special release (default: none)"),
31 "wxpython" : (False, "Produce wxPython source tarball (name defaults to wxPython-src)")
34 mswProjectFiles
= [ ".vcproj", ".sln", ".dsp", ".dsw", ".vc", ".bat"]
35 nativeLineEndingFiles
= [".cpp", ".h", ".c", ".txt"]
41 usage
="""usage: %prog [options] <output directory>\n
42 Create a wxWidgets archive and store it in <output directory>.
43 The output directory must be an absolute, existing path.
44 Type %prog --help for options.
47 parser
= optparse
.OptionParser(usage
, version
="%prog 1.0")
49 for opt
in option_dict
:
50 default
= option_dict
[opt
][0]
53 if type(default
) == types
.BooleanType
:
55 parser
.add_option("--" + opt
, default
=default
, action
=action
, dest
=opt
, help=option_dict
[opt
][1])
57 options
, arguments
= parser
.parse_args()
59 if len(arguments
) < 1 or not os
.path
.exists(arguments
[0]) or not os
.path
.isabs(arguments
[0]):
63 destDir
= arguments
[0]
64 if not os
.path
.exists(destDir
):
68 VERSION_FILE
= os
.path
.join(rootDir
, 'include/wx/version.h')
73 def makeDOSLineEndings(dir, extensions
):
75 for root
, subFolders
, files
in os
.walk(dir):
77 if os
.path
.splitext(file)[1] in extensions
:
78 os
.system("unix2dos %s" % os
.path
.join(root
, file))
80 def getVersion(includeSubrelease
=False):
81 """Returns wxWidgets version as a tuple: (major,minor,release)."""
89 f
= open(VERSION_FILE
, 'rt')
92 major
= minor
= release
= None
94 if not l
.startswith('#define'): continue
95 splitline
= l
.strip().split()
96 if splitline
[0] != '#define': continue
97 if len(splitline
) < 3: continue
100 if value
== None: continue
101 if name
== 'wxMAJOR_VERSION': major
= int(value
)
102 if name
== 'wxMINOR_VERSION': minor
= int(value
)
103 if name
== 'wxRELEASE_NUMBER': release
= int(value
)
104 if name
== 'wxSUBRELEASE_NUMBER': subrelease
= int(value
)
105 if major
!= None and minor
!= None and release
!= None:
106 if not includeSubrelease
or subrelease
!= None:
109 if includeSubrelease
:
110 wxVersion
= (major
, minor
, release
, subrelease
)
112 wxVersion
= (major
, minor
, release
)
115 def allFilesRecursive(dir):
117 for root
, subFolders
, files
in os
.walk(dir):
119 for ignoreDir
in dirsToIgnore
:
120 if ignoreDir
in root
:
125 path
= os
.path
.join(root
,file)
126 for exclude
in excludeExtensions
:
127 if not os
.path
.splitext(file)[1] in excludeExtensions
:
128 fileList
.append(os
.path
.join(root
,file))
134 str_version
= "%d.%d.%d" % getVersion()
135 archive_name
= options
.name
138 dirsToCopy
.append("wxPython")
139 archive_name
= "wxPython-src"
140 str_version
= "%d.%d.%d.%d" % getVersion(includeSubrelease
=True)
141 options
.docs
= "none"
143 if options
.postfix
!= "":
144 str_version
+= "-" + options
.postfix
146 full_name
= archive_name
+ "-" + str_version
148 copyDir
= tempfile
.mkdtemp()
149 wxCopyDir
= os
.path
.join(copyDir
, full_name
)
151 os
.makedirs(wxCopyDir
)
155 rootFiles
= glob
.glob("*")
156 for afile
in rootFiles
:
157 if os
.path
.isfile(os
.path
.abspath(afile
)):
158 fileList
.append(afile
)
160 for dir in dirsToCopy
:
161 print "Determining files to copy from %s..." % dir
162 fileList
.extend(allFilesRecursive(dir))
164 print "Copying files to the temporary folder %s..." % copyDir
165 for afile
in fileList
:
166 destFile
= os
.path
.join(wxCopyDir
, afile
)
167 dirName
= os
.path
.dirname(destFile
)
168 if not os
.path
.exists(dirName
):
170 shutil
.copy(os
.path
.join(rootDir
, afile
), destFile
)
172 # copy include/wx/msw/setup0.h -> include/wx/msw/setup.h
173 mswSetup0
= os
.path
.join(wxCopyDir
, "include","wx","msw","setup0.h")
174 shutil
.copy(mswSetup0
, mswSetup0
.replace("setup0.h", "setup.h")),
176 all
= options
.compression
== "all"
178 # make sure they have the DOS line endings everywhere
179 print "Setting MSW Project files to use DOS line endings..."
180 makeDOSLineEndings(wxCopyDir
, mswProjectFiles
)
182 if all
or options
.compression
== "gzip":
183 print "Creating gzip archive..."
185 os
.system("tar -czvf %s/%s.tar.gz %s" % (destDir
, full_name
, "*"))
188 if all
or options
.compression
== "bzip":
189 print "Creating bzip archive..."
191 os
.system("tar -cjvf %s/%s.tar.bz2 %s" % (destDir
, full_name
, "*"))
194 if all
or options
.compression
== "zip":
196 print "Setting DOS line endings on source and text files..."
197 makeDOSLineEndings(copyDir
, nativeLineEndingFiles
)
198 print "Creating zip archive..."
199 os
.system("zip -9 -r %s/%s.zip %s" % (destDir
, full_name
, "*"))
202 shutil
.rmtree(copyDir
)
204 # build any docs packages:
205 doc_formats
= string
.split(options
.docs
, ",")
206 doxy_dir
= "docs/doxygen"
207 output_dir
= doxy_dir
+ "/out"
208 for format
in doc_formats
:
209 if not format
== "none":
210 os
.system("%s/regen.sh %s" % (doxy_dir
, format
))
212 docs_full_name
= "%s-%s" % (full_name
, format
.upper())
213 os
.rename(format
, docs_full_name
)
214 os
.system("zip -9 -r %s/%s.zip %s" % (destDir
, docs_full_name
, "*"))
217 if os
.path
.exists(output_dir
):
218 shutil
.rmtree(output_dir
)