[flashproxy/master] Remove obsolete PyInstaller spec file.

commit 73a8f96c51b5a1398f4c30dbbb0c30c8006ab363 Author: David Fifield <david@bamsoftware.com> Date: Sat Apr 27 02:19:08 2013 -0700 Remove obsolete PyInstaller spec file. --- flashproxy-client.spec | 26 -------------------------- 1 files changed, 0 insertions(+), 26 deletions(-) diff --git a/flashproxy-client.spec b/flashproxy-client.spec deleted file mode 100644 index aa020db..0000000 --- a/flashproxy-client.spec +++ /dev/null @@ -1,26 +0,0 @@ -# PyInstaller spec file for the flash proxy client programs. -# Modelled after example at http://www.pyinstaller.org/export/v2.0/project/doc/Manual.html?format=raw#me.... - -# Top-level directory. -tmpdir = os.environ['PYINSTALLER_TMPDIR'] -scripts = ('flashproxy-client', 'flashproxy-reg-email', 'flashproxy-reg-http') - -# M2Crypto is a hidden import so that PyInstaller will print an error if the module is missing. -analyses = [(Analysis([script], hiddenimports=['M2Crypto']), - script, - os.path.join(tmpdir, 'build', script + '.exe')) for script in scripts] - -MERGE(*analyses) - -tocs = [] -for a, _, exename in analyses: - pyz = PYZ(a.pure) - tocs.append(EXE(pyz, - a.scripts, - exclude_binaries=1, - console=True, - name=exename)) - tocs.append(a.binaries) - - -COLLECT(*tocs, name=os.path.join(tmpdir, 'dist'))
participants (1)
-
dcf@torproject.org