Update of /cvsroot/pythoncard/PythonCard/tools/standaloneBuilder/templates
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5037/templates
Modified Files:
versioninfo.txt
Added Files:
setup.py
Log Message:
Multiple bug fixes and enhancements ready for release of 0.8.2
--- NEW FILE: setup.py ---
#!/usr/bin/python
#
# generic py2exe setup script - Phil Edwards <ph...@li...>
# Copyright (c) 2001-2005 PythonCard developers
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
# WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# vim: ai et sw=4 ts=4
from distutils.core import setup
import py2exe
data_files = eval((open('datafiles.dat').read()))
standalone = eval((open('standalone.dat').read()))
buildOpts = eval((open('buildoptions.dat').read()))
buildType = buildOpts['buildType']
zipfile = r"lib/sharedlib"
options = {"py2exe": {"compressed": 1, "optimize": 2}}
if buildType != "windows":
setup(options = options, zipfile = zipfile, data_files = data_files, console = [standalone])
else:
setup(options = options, zipfile = zipfile, data_files = data_files, windows = [standalone])
Index: versioninfo.txt
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/tools/standaloneBuilder/templates/versioninfo.txt,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** versioninfo.txt 9 May 2005 09:58:03 -0000 1.3
--- versioninfo.txt 12 May 2006 16:26:20 -0000 1.4
***************
*** 17,24 ****
[StringStruct('CompanyName', '%(companyname)s'),
StringStruct('FileDescription', '%(name)s Executable'),
! StringStruct('FileVersion', '%(major)s.%(minor)s.%(fix)s (build_%(build)s_%(date)s)'),
StringStruct('InternalName', '%(name)s'),
StringStruct('LegalCopyright', '\xa9 %(publisher)s. All rights reserved.'),
! StringStruct('OriginalFilename', '%(name)s.EXE'),
StringStruct('ProductName', '%(desc)s'),
StringStruct('ProductVersion', '%(major)s.%(minor)s.%(fix)s')])
--- 17,24 ----
[StringStruct('CompanyName', '%(companyname)s'),
StringStruct('FileDescription', '%(name)s Executable'),
! StringStruct('FileVersion', '%(major)s.%(minor)s.%(fix)s.%(date)s%(build)s'),
StringStruct('InternalName', '%(name)s'),
StringStruct('LegalCopyright', '\xa9 %(publisher)s. All rights reserved.'),
! StringStruct('OriginalFilename', '%(name)s.exe'),
StringStruct('ProductName', '%(desc)s'),
StringStruct('ProductVersion', '%(major)s.%(minor)s.%(fix)s')])
|