mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Tested on ci. See https://github.com/PyCQA/flake8-import-order . In the process did some other cleanups and https://en.wikipedia.org/wiki/Code_refactoring .
81 lines
1.9 KiB
Python
Executable file
81 lines
1.9 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import sys
|
|
|
|
import pysollib.settings
|
|
|
|
if sys.version_info > (3,):
|
|
def execfile(fn):
|
|
return exec(open(fn).read())
|
|
|
|
prog_name = 'PySol Fan Club edition'
|
|
|
|
|
|
dirs_list = []
|
|
files_list = []
|
|
for root, dirs, files in os.walk('dist'):
|
|
if files:
|
|
files_list.append(root)
|
|
dirs_list.append(root)
|
|
|
|
prog_version = pysollib.settings.VERSION
|
|
|
|
out = open('setup.iss', 'w')
|
|
|
|
print('''
|
|
[Setup]
|
|
AppName=%(prog_name)s
|
|
AppVerName=%(prog_name)s v.%(prog_version)s
|
|
DefaultDirName={pf}\\%(prog_name)s
|
|
DefaultGroupName=%(prog_name)s
|
|
UninstallDisplayIcon={app}\\pysol.exe
|
|
Compression=lzma
|
|
SolidCompression=yes
|
|
SourceDir=dist
|
|
OutputDir=.
|
|
OutputBaseFilename=PySolFC_%(prog_version)s_setup
|
|
DisableWelcomePage=no
|
|
DisableDirPage=no
|
|
DisableProgramGroupPage=no
|
|
|
|
[Icons]
|
|
Name: "{group}\\%(prog_name)s"; Filename: "{app}\\pysol.exe"
|
|
Name: "{group}\\Uninstall %(prog_name)s"; Filename: "{uninstallexe}"
|
|
Name: "{userdesktop}\\%(prog_name)s"; Filename: "{app}\\pysol.exe"
|
|
''' % vars(), file=out)
|
|
|
|
print('[Dirs]', file=out)
|
|
for d in dirs_list[1:]:
|
|
print('Name: "{app}%s"' % d.replace('dist', ''), file=out)
|
|
|
|
print(file=out)
|
|
print('[Files]', file=out)
|
|
print('Source: "*"; DestDir: "{app}"', file=out)
|
|
for d in files_list[1:]:
|
|
d = d.replace('dist\\', '')
|
|
print('Source: "%s\\*"; DestDir: "{app}\\%s"' % (d, d), file=out)
|
|
|
|
print('Source: "..\\vcredist_x86.exe"; DestDir: {tmp}; \
|
|
Flags: deleteafterinstall', file=out)
|
|
print('[Run]\n\
|
|
Filename: {tmp}\\vcredist_x86.exe; \
|
|
Parameters: "/passive /promptrestart /showfinalerror"; \
|
|
StatusMsg: "Installing MS Visual C++ 2010 SP1 Redistributable Package (x86)"; \
|
|
Check: not isVCInstalled', file=out)
|
|
print('''
|
|
[Code]
|
|
function isVCInstalled: Boolean;
|
|
var
|
|
find: TFindRec;
|
|
begin
|
|
if FindFirst(ExpandConstant('{sys}\\msvcr100.dll'), find) then begin
|
|
Result := True;
|
|
FindClose(find);
|
|
end else begin
|
|
Result := False;
|
|
end;
|
|
end;
|
|
''', file=out)
|
|
|
|
out.close()
|