comparison scripts/wine-py2exe @ 433:e07b42656d22

Untested build scripts.
author Simon Cross <hodgestar@gmail.com>
date Sat, 17 Sep 2011 19:31:31 +0200
parents
children 4f3c55b09fda
comparison
equal deleted inserted replaced
432:b49f6dde8731 433:e07b42656d22
1 #!/bin/sh
2 # wine-py2exe
3 #
4 # Usage: wine-py2exe
5
6 NT_VERSION=`sed -nre 's/VERSION_STR = "(.*)"/\1/p' setup.py`
7 BUILD_FOLDER="mutable-mamba-${NT_VERSION}"
8 ZIP_NAME="${BUILD_FOLDER}.zip"
9 PY2EXE_LOG="py2exe.log"
10
11 WINE_PYTHON=`winepath "C:/Python26"`
12 WINE_SYS32=`winepath "C:/windows/system32"`
13
14 #
15 # Run py2exe build under wine
16 #
17
18 echo "=== Running wine python setup.py ==="
19 echo ""
20 echo " Mutable Mamba version: ${NT_VERSION}"
21 echo " Writing log to ${PY2EXE_LOG}."
22 echo " ---"
23 echo " Please make sure you have patched your py2exe run.exe"
24 echo " and run_w.exe with PETools (they need to have their"
25 echo " executable size correctly set)."
26 echo ""
27
28 rm -rf "dist/${BUILD_FOLDER}"
29 mkdir -p "dist/${BUILD_FOLDER}"
30 rm -rf "dist/${ZIP_NAME}"
31
32 wine python setup.py py2exe >${PY2EXE_LOG} 2>&1
33
34 #
35 # Copy dependencies py2exe missed
36 #
37
38 echo "=== Copying dependencies that py2exe missed ==="
39 echo ""
40
41 DEST="dist/${BUILD_FOLDER}"
42
43 cp -v "${WINE_SYS32}/python26.dll" "${DEST}"
44 # TODO: the line below copies in the Wine placeholder DLL (oddly this
45 # doesn't appear to break anything)
46 # Decide whether to keep this or not.
47 # cp -v "${WINE_SYS32}/msvcr80.dll" "${DEST}"
48
49 echo "'data' -> '${DEST}/data'"
50 hg archive -I "path:data/" "${DEST}"
51
52 echo "'${WINE_PYTHON}/Lib/site-packages/pygame' -> '${DEST}'"
53 rm -rf "${DEST}/pygame"
54 cp -R "${WINE_PYTHON}/Lib/site-packages/pygame" "${DEST}"
55 rm -rf "${DEST}/pygame/examples" "${DEST}/pygame/tests" "${DEST}/pygame/docs"
56
57 #
58 # create zip file
59 #
60
61 echo "=== Creating zip of patched py2exe dist folder ==="
62 echo ""
63 echo " Zip file: dist/${ZIP_NAME}"
64 echo " Build folder: dist/${BUILD_FOLDER}"
65 echo ""
66
67 cd dist
68 rm -f "$ZIP_NAME"
69 zip -r -q "$ZIP_NAME" "$BUILD_FOLDER"
70 cd ..
71
72 echo "=== Done ==="
73 echo ""
74 echo -n " "; du -sh dist/${ZIP_NAME}
75 echo -n " "; du -sh dist/${BUILD_FOLDER}
76 echo ""