From 382e5989ff5b9ef2c3fd03fffbb576fa95e899ef Mon Sep 17 00:00:00 2001 From: Steffen Hirtle Date: Sat, 21 Oct 2023 08:07:18 +0200 Subject: [PATCH] Removed pyinstaller .psec files of zip versions --- GraXpert-linux-zip.spec | 49 ------------------------------------ GraXpert-win64-zip.spec | 56 ----------------------------------------- 2 files changed, 105 deletions(-) delete mode 100644 GraXpert-linux-zip.spec delete mode 100644 GraXpert-win64-zip.spec diff --git a/GraXpert-linux-zip.spec b/GraXpert-linux-zip.spec deleted file mode 100644 index f9d5815..0000000 --- a/GraXpert-linux-zip.spec +++ /dev/null @@ -1,49 +0,0 @@ -# -*- mode: python ; coding: utf-8 -*- - - -block_cipher = None - - -a = Analysis(['./graxpert/main.py'], - pathex=[], - binaries=[], - datas=[('./img/*', './img/'), ('./forest-dark.tcl', './'), ('./forest-dark/*', './forest-dark/')], - hiddenimports=['PIL._tkinter_finder', 'tkinter'], - hookspath=['./releng'], - hooksconfig={}, - runtime_hooks=[], - excludes=[], - win_no_prefer_redirects=False, - win_private_assemblies=False, - cipher=block_cipher, - noarchive=False) - -pyz = PYZ(a.pure, a.zipped_data, - cipher=block_cipher) - -exe = EXE(pyz, - a.scripts, - [], - exclude_binaries=True, - name='GraXpert', - debug=False, - bootloader_ignore_signals=False, - strip=False, - upx=True, - console=False, - disable_windowed_traceback=False, - argv_emulation=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None , icon='./img/Icon.ico') -coll = COLLECT( - exe, - a.binaries, - Tree('locales', prefix='locales/'), - a.zipfiles, - a.datas, - strip=False, - upx=True, - upx_exclude=[], - name='GraXpert-linux', -) diff --git a/GraXpert-win64-zip.spec b/GraXpert-win64-zip.spec deleted file mode 100644 index 136d275..0000000 --- a/GraXpert-win64-zip.spec +++ /dev/null @@ -1,56 +0,0 @@ -# -*- mode: python ; coding: utf-8 -*- - - -block_cipher = None - - -a = Analysis(['./graxpert/main.py'], - pathex=[], - binaries=[], - datas=[('./img/*', './img/'), ('./forest-dark.tcl', './'), ('./forest-dark/*', './forest-dark/')], - hiddenimports=['PIL._tkinter_finder', 'tkinter'], - hookspath=['./releng'], - hooksconfig={}, - runtime_hooks=[], - excludes=[], - win_no_prefer_redirects=False, - win_private_assemblies=False, - cipher=block_cipher, - noarchive=False) -pyz = PYZ(a.pure, a.zipped_data, - cipher=block_cipher) -splash = Splash( - 'img/graXpert_Startbadge_Ariel.png', - binaries=a.binaries, - datas=a.datas, - text_pos=None, - text_size=12, - minify_script=True, - always_on_top=True, -) - -exe = EXE(pyz, - a.scripts, - splash, - [], - exclude_binaries=True, - name='GraXpert', - debug=False, - bootloader_ignore_signals=False, - strip=False, - upx=True, - console=False, - disable_windowed_traceback=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None , icon='./img/Icon.ico') -coll = COLLECT(exe, - a.binaries, - Tree('locales', prefix='locales/'), - a.zipfiles, - a.datas, - splash.binaries, - strip=False, - upx=True, - upx_exclude=[], - name='GraXpert-win64')