QuickWho

Check-in [d84a922071]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix bug in Mac build script
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: d84a922071004d504332b169bd023abde5d5499d
User & Date: kevin 2016-04-08 03:08:01
Context
2016-04-08
04:07
Cleanup of software update check-in: bc281c51cf user: kevin tags: trunk
03:08
Fix bug in Mac build script check-in: d84a922071 user: kevin tags: trunk
02:39
Update build script for Mac check-in: 5108dd1abb user: kevin tags: trunk
Changes
Hide Diffs Side-by-Side Diffs Ignore Whitespace Patch

Changes to buildapp.

31
32
33
34
35
36
37

38
39
40
41
42
43
44
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45







+








find dist/QuickWho.app -type f -name "*.so"  -exec codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" {} \;
find dist/QuickWho.app -type f -name "*.dylib"  -exec codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" {} \; 

codesign  --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Tk.framework/Versions/8.6/Resources/Wish.app/Contents/MacOS/Wish
codesign  --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Tk.framework/Versions/Current
codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Tcl.framework/Versions/Current
codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Python.framework/Versions/Current
codesign  --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/MacOS/python


codesign  --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" --verbose=2  dist/QuickWho.app
 
echo "Compressing application..."
 
99
100
101
102
103
104
105
106

107
108
109
110
111

112
113
114
115
116
117
118
100
101
102
103
104
105
106

107
108
109
110
111

112
113
114
115
116
117
118
119







-
+




-
+








echo "Copying app and XML file to server..."
cp -f QuickWho.tgz /Users/kevin/share/kevin/Sites/codebykevin/updates/QuickWho.tgz
cp -f quickwho.xml /Users/kevin/share/kevin/Sites/codebykevin/quickwho.xml


echo "Copying zip to Amazon S3..."
aws s3 cp dist/QuickWho.zip s3://codebykevin/FileMorph.zip --acl public-read
aws s3 cp dist/QuickWho.zip s3://codebykevin/QuickWho.zip --acl public-read

cd ../

#create archive of entire source tree
tar cvfz FileMorph-$1.tgz FileMorph
tar cvfz QuickWho-$1.tgz QuickWho

fi

echo "Done."