Changeset 2288
- Timestamp:
- 02/01/12 19:57:27 (4 months ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
. (modified) (1 prop)
-
lotatc_client.py (modified) (1 diff)
-
lotatc_client/lotatcwnd.py (modified) (2 diffs)
-
tools/pyinstaller_script/dist/lotatc/lotatc_client_win.spec (modified) (3 diffs)
-
tools/pyinstaller_script/dist/lotatc/lotatc_server_win.spec (modified) (2 diffs)
-
tools/pyinstaller_script/generate_win32.bat (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:externals
-
old new 1 pyinstaller http://svn.pyinstaller.org/trunk /1 pyinstaller http://svn.pyinstaller.org/trunk
-
- Property svn:externals
-
trunk/lotatc_client.py
r2124 r2288 91 91 for m in msg_a: 92 92 msg += m 93 print msg 93 94 logging.getLogger('[ERROR]').debug(msg) -
trunk/lotatc_client/lotatcwnd.py
r2279 r2288 92 92 self.setWindowIcon(QIcon(os.path.join(self.work_path,"lotatc_client","resources", "lotatc_icon.png"))) 93 93 self.logger = logging.getLogger('[LotatcCient]') 94 94 95 95 self.svg_renderer = QSvgRenderer( os.path.join('.','common','resources','symbols.svg')) 96 97 96 self.error_messages = { 98 97 "bad version" : self.tr("version incompatible with server"), … … 100 99 "network" : self.tr("network error: "), 101 100 } 102 103 101 ##- Status bar 104 102 #self.status_modules = { -
trunk/tools/pyinstaller_script/dist/lotatc/lotatc_client_win.spec
r2287 r2288 62 62 lotatc_datas.append(('i18n/'+f,'../i18n/'+f,'DATA')) 63 63 64 # pyz = PYZ(a.pure)65 # exe = EXE(pyz,66 # a.scripts + [('O','','OPTION')],67 # exclude_binaries=1,68 # name=os.path.join('build\\pyi.win32\\lotatc_client', 'lotatc_client.exe'),69 # debug=False,70 # strip=True,71 # icon='../lotatc_client/resources/lotatc_icon_mini.ico',72 # upx=True,73 # console=False)#, manifest=os.path.abspath(os.path.join( '..', 'tools', 'pyinstaller_script','msvc90dep.manifest' ) ) )74 # coll = COLLECT( exe,75 # a.binaries,76 # a.zipfiles,77 # a.datas,78 #lotatc_datas,79 # strip=False,80 # upx=True,81 # name='lotatc_client/lotatc_client')82 # a = Analysis([os.path.join(HOMEPATH,'support\\_mountzlib.py'), os.path.join(CONFIGDIR,'support\\useUnicode.py'), 'H:/dev/lotatc/trunk/lotatc_client.py'],83 # pathex=['H:\\dev\\lotatc\\trunk\\pyinstaller'])84 64 pyz = PYZ(a.pure) 85 65 exe = EXE(pyz, … … 87 67 exclude_binaries=1, 88 68 name=os.path.join('build\\pyi.win32\\lotatc_client', 'lotatc_client.exe'), 89 debug=True,90 strip=None,91 upx=True,92 69 icon='../lotatc_client/resources/lotatc_icon_mini.ico', 93 console=True ) 70 debug=False, 71 strip=True, 72 upx=False, 73 console=False ) 94 74 coll = COLLECT( exe, 95 75 a.binaries, … … 98 78 lotatc_datas, 99 79 strip=None, 100 upx= True,80 upx=False, 101 81 name=os.path.join('dist', 'lotatc_client')) 102 82 -
trunk/tools/pyinstaller_script/dist/lotatc/lotatc_server_win.spec
r2285 r2288 1 a = Analysis([os.path.join(HOMEPATH,'support\\_mountzlib.py'), '../lotatc_server_ui.py'],1 a = Analysis([os.path.join(HOMEPATH,'support\\_mountzlib.py'), os.path.join(CONFIGDIR,'support\\useUnicode.py'), '../lotatc_server_ui.py'], 2 2 pathex=[ 3 '../pyinstaller/', 3 4 '../common/', 4 5 '../common/misabstractlayer/', … … 49 50 pyz = PYZ(a.pure) 50 51 exe = EXE(pyz, 51 a.scripts + [('O','','OPTION')],52 a.scripts, 52 53 exclude_binaries=1, 53 name= 'buildlotatc_server_win/lotatc_server.exe',54 name=os.path.join('build\\pyi.win32\\lotatc_server', 'lotatc_server.exe'), 54 55 icon='../lotatc_client/resources/lotatc_icon_mini_server.ico', 55 56 debug=False, 56 57 strip=True, 57 upx= True,58 console=False , manifest=os.path.abspath(os.path.join( '..', 'tools', 'pyinstaller_script','msvc90dep.manifest' ) ))58 upx=False, 59 console=False ) 59 60 coll = COLLECT( exe, 60 61 a.binaries, 61 62 a.zipfiles, 62 63 a.datas, 63 lotatc_datas,64 strip= False,65 upx= True,66 name= 'lotatc_server/lotatc_server')64 lotatc_datas, 65 strip=None, 66 upx=False, 67 name=os.path.join('dist', 'lotatc_server')) -
trunk/tools/pyinstaller_script/generate_win32.bat
r2287 r2288 15 15 echo " o LOTATC..." 16 16 python pyinstaller.py ../tools/pyinstaller_script/dist/lotatc/lotatc_client_win.spec 17 echo "python pyinstaller.py ../tools/pyinstaller_script/dist/lotatc/lotatc_server_win.spec" 17 python pyinstaller.py ../tools/pyinstaller_script/dist/lotatc/lotatc_server_win.spec 18 18 cd ..\tools\pyinstaller_script 19 19 echo "DO NOT FORGET TO COPY DIRECTORY TO LOTATC"
Note: See TracChangeset
for help on using the changeset viewer.
