forked from psychopy/psychopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setupApp.sh
executable file
·86 lines (71 loc) · 3.22 KB
/
setupApp.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/bin/sh
TEST_ONLY=0 # 0=full build, 1=dmg_but_not_notarized, 2=sign_app_dont_bundle
# defVersion=$(python -c 'import psychopy; print(psychopy.__version__)')
defVersion=$(<version) # reads from the version file
echo "DID YOU UPDATE THE CHANGELOG?"
read -p "Version (def=$defVersion):" version
version=${version:-$defVersion}
echo "Building $version"
echo "UNLOCKING KEYCHAIN"
security unlock-keychain
rm -r build
sudo rm -r dist/PsychoPy*.app #the previous version
sudo rm -r ../dist/PsychoPy*.app # the previous version in outer location
python3.8 setup.py sdist --format=zip
# then handle the mac app bundle
rm psychopy/prefSite.cfg
declare -a pythons=("python3.8")
declare -a names=("PsychoPy")
declare -a todo=(0) # or (1 0) to do both
for i in todo; do
# mount the disk image and delete previous copy of app
# echo "Opening disk image for app"
# hdiutil detach "/Volumes/PsychoPy" -quiet
# hdiutil attach "../dist/StandalonePsychoPy3_tmpl.dmg"
# osascript -e "set Volume 0.2"
# say -v Karen "password"
# sudo rm -R /Volumes/PsychoPy/PsychoPy3*
# remove old pyc files
find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
echo $i "BUILDING:" ${pythons[$i]} "__" ${names[$i]}
dmgName="../dist/Standalone${names[$i]}-$version-MacOS.dmg"
${pythons[$i]} setupApp.py py2app || { echo 'setupApp.py failed' ; exit 1; }
# copy over contents of git-core folder
mkdir dist/${names[$i]}.app/Contents/Resources/git-core
cp -R -L /usr/local/git/libexec/git-core/* dist/${names[$i]}.app/Contents/Resources/git-core
# remove matplotlib tests (45mb)
pkg_site=$(ls -d1 dist/${names[$i]}.app/Contents/Resources/lib/python3.*)
rm -r ${pkg_site}/matplotlib/tests
# strip all other architectures from binaries and move both to __fat copy
mv dist/${names[$i]}.app dist/${names[$i]}__fat.app
echo "stripping i386 using ditto"
ditto --arch x86_64 dist/${names[$i]}__fat.app dist/${names[$i]}.app
# built and stripped. Now mac codesign. Running in 2 steps to allow the detach step to work
case $TEST_ONLY in
0)
${pythons[$i]} building/apple_sign.py --app "${names[$i]}.app" --runPostDmgBuild 0
${pythons[$i]} building/apple_sign.py --app "${names[$i]}.app" --runPreDmgBuild 0
;;
1)
${pythons[$i]} building/apple_sign.py --app "${names[$i]}.app" --skipnotarize 1
;;
2)
${pythons[$i]} building/apple_sign.py --app "${names[$i]}.app" --runPostDmgBuild 0 --skipnotarize 1
;;
esac
# mount the disk image and delete previous copy of app (this is now handled by the apple_sign script)
# echo "cp -R ${names[$i]}.app /Volumes/PsychoPy"
# cp -R "${names[$i]}.app" "/Volumes/PsychoPy"
# hdiutil detach "/Volumes/PsychoPy"
# echo "removing prev dmg (although may not exist)"
# rm $dmgName
# echo "creating zlib-compressed dmg: $dmgName"
# hdiutil convert "StandalonePsychoPy3_tmpl.dmg" -format UDZO -o $dmgName
osascript -e "set Volume 0.2"
say -v kate "Finished building for ${pythons[$i]}"
done
# osascript -e "set Volume 0.2"
# say -v Karen "all done"
# osascript -e "set Volume 3"
mv dist/*.dmg ../dist
mv dist/*.app ../dist