Skip to content

Commit b37ce4e

Browse files
thomaslimaklayoutmatthias
authored andcommitted
WIP: Parametrizing macbuild to make custom installations easier (KLayout#680)
* Changing indentation to 4 spaces * squash * removing more global variables (squash) * | tee always exits with 0 * parameter is a dictionary now * Changing default Makefile to HB38 and adding -rbinc2 option for Catalina * Catalina building... * macQAT fixed * run_build_command depends on parameteres dict alone * Adding options to macbuild/makeDMG4mac.py In particular, we can now specify a -u (unsafe) option, and specify the target dmg file with -t target.dmg
1 parent beae26e commit b37ce4e

10 files changed

+1578
-1397
lines changed

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ build-*
3737
bin-*
3838
mkqtdecl.tmp
3939
testtmp
40+
*build.macos*
41+
*bin.macos*
4042

4143
# private data
4244
private
@@ -54,3 +56,12 @@ src/klayout.pro.user
5456
*.egg-info/
5557
build/
5658
dist/
59+
60+
61+
# IDEs
62+
.vscode
63+
64+
65+
# Macos artifacts
66+
*.dmg
67+
*.dmg.md5

Makefile

+27-21
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
GITCOMMIT := $(shell git rev-parse --short HEAD)
44
KLAYOUT_VERSION := $(shell source version.sh && echo $$KLAYOUT_VERSION)
55
ifndef PYTHON_VERSION
6-
PYTHON_VERSION := B37
6+
PYTHON_VERSION := HB38
77
endif
88
ifndef MACOS_VERSION
9-
MACOS_VERSION := HighSierra
9+
MACOS_VERSION := Catalina
1010
endif
1111

1212
.ONESHELL:
@@ -15,11 +15,11 @@ default: help
1515

1616
help:
1717
@echo "For Mac OS only"
18-
@echo "make build PYTHON_VERSION=B37"
19-
@echo "make deploy PYTHON_VERSION=B37"
18+
@echo "make build PYTHON_VERSION=HB38"
19+
@echo "make deploy PYTHON_VERSION=HB38"
2020
@echo "make test MACOS_VERSION=HighSierra"
21-
@echo "Valid Mac OS Versions: [Yosemite, ElCapitan, Sierra, HighSierra]"
22-
@echo "Valid Python Version: [nil, Sys, B37]"
21+
@echo "Valid Mac OS Versions: [Yosemite, ElCapitan, Sierra, HighSierra, Mojave, Catalina]"
22+
@echo "Valid Python Version: [nil, Sys, HB38]"
2323

2424
build:
2525
@echo "Building for Mac $(GITCOMMIT)"
@@ -29,30 +29,36 @@ build:
2929
deploy:
3030
@echo "Deploying 4 Mac $(GITCOMMIT)"
3131
./build4mac.py -p $(PYTHON_VERSION) -q Qt5Brew -y
32-
32+
3333
test:
3434
@echo "Testing 4 Mac $(GITCOMMIT)"
35-
qt5.pkg.macos-$(MACOS_VERSION)-release/klayout.app/Contents/MacOS/klayout -b -r test-pylib-script.py; \
36-
cd qt5.build.macos-$(MACOS_VERSION)-release; \
35+
PIP_REQUIRE_VIRTUALENV="false" HW-qt5Brew.pkg.macos-$(MACOS_VERSION)-release-RsysPhb38/klayout.app/Contents/MacOS/klayout -b -r test-pylib-script.py; \
36+
cd qt5Brew.build.macos-$(MACOS_VERSION)-release-RsysPhb38; \
3737
ln -s klayout.app/Contents/MacOS/klayout klayout; \
3838
export TESTTMP=testtmp; \
3939
export TESTSRC=..; \
4040
export DYLD_LIBRARY_PATH=.:db_plugins/:lay_plugins/; \
4141
./ut_runner -h || true; \
4242
cd ..
4343

44+
dmg-template:
45+
mkdir -p testtemplate/klayout.app
46+
./makeDMG4mac.py -p testtemplate -m -z -t klayoutDMGTemplate.dmg
47+
cp -a klayoutDMGTemplate.dmg* macbuild/Resources/
48+
rm -Rf testtemplate
49+
4450
dropbox-deploy:
4551
@echo "Preparing for dropbox deployment $(MACOS_VERSION) $(GITCOMMIT)"
46-
mkdir -p deploy/$(MACOS_VERSION)/$(PYTHON_VERSION)/$(KLAYOUT_VERSION); \
47-
pwd; \
48-
ls -lah; \
49-
touch build.txt; \
50-
cp build.txt deploy/$(MACOS_VERSION)/$(PYTHON_VERSION)/$(KLAYOUT_VERSION)/qt5.pkg.macos-$(MACOS_VERSION)-$(PYTHON_VERSION)-release-$(KLAYOUT_VERSION)-$(GITCOMMIT).log.txt; \
51-
hdiutil convert macbuild/Resources/klayoutDMGTemplate.dmg -format UDRW -o work-KLayout.dmg; \
52-
hdiutil resize -size 500m work-KLayout.dmg; \
53-
hdiutil attach work-KLayout.dmg -readwrite -noverify -quiet -mountpoint tempKLayout -noautoopen; \
54-
cp -a qt5.pkg.macos-$(MACOS_VERSION)-release/ tempKLayout/; \
55-
hdiutil detach tempKLayout; \
56-
hdiutil convert work-KLayout.dmg -format UDZO -imagekey zlib-level=9 -o deploy/$(MACOS_VERSION)/$(PYTHON_VERSION)/$(KLAYOUT_VERSION)/qt5.pkg.macos-$(MACOS_VERSION)-$(PYTHON_VERSION)-release-$(KLAYOUT_VERSION)-$(GITCOMMIT).dmg; \
57-
md5 -q deploy/$(MACOS_VERSION)/$(PYTHON_VERSION)/$(KLAYOUT_VERSION)/qt5.pkg.macos-$(MACOS_VERSION)-$(PYTHON_VERSION)-release-$(KLAYOUT_VERSION)-$(GITCOMMIT).dmg > deploy/$(MACOS_VERSION)/$(PYTHON_VERSION)/$(KLAYOUT_VERSION)/qt5.pkg.macos-$(MACOS_VERSION)-$(PYTHON_VERSION)-release-$(KLAYOUT_VERSION)-$(GITCOMMIT).dmg.md5; \
52+
mkdir -p deploy/$(MACOS_VERSION)/$(PYTHON_VERSION)/$(KLAYOUT_VERSION)
53+
pwd
54+
ls -lah
55+
touch build.txt
56+
cp build.txt deploy/$(MACOS_VERSION)/$(PYTHON_VERSION)/$(KLAYOUT_VERSION)/qt5.pkg.macos-$(MACOS_VERSION)-$(PYTHON_VERSION)-release-$(KLAYOUT_VERSION)-$(GITCOMMIT).log.txt
57+
hdiutil convert macbuild/Resources/klayoutDMGTemplate.dmg -ov -format UDRW -o work-KLayout.dmg
58+
hdiutil resize -size 500m work-KLayout.dmg
59+
hdiutil attach -readwrite -noverify -quiet -mountpoint tempKLayout -noautoopen work-KLayout.dmg
60+
cp -a HW-qt5Brew.pkg.macos-$(MACOS_VERSION)-release-RsysPhb38/ tempKLayout/
61+
hdiutil detach tempKLayout
62+
hdiutil convert work-KLayout.dmg -ov -format UDZO -imagekey zlib-level=9 -o deploy/$(MACOS_VERSION)/$(PYTHON_VERSION)/$(KLAYOUT_VERSION)/qt5.pkg.macos-$(MACOS_VERSION)-$(PYTHON_VERSION)-release-$(KLAYOUT_VERSION)-$(GITCOMMIT).dmg
63+
md5 -q deploy/$(MACOS_VERSION)/$(PYTHON_VERSION)/$(KLAYOUT_VERSION)/qt5.pkg.macos-$(MACOS_VERSION)-$(PYTHON_VERSION)-release-$(KLAYOUT_VERSION)-$(GITCOMMIT).dmg > deploy/$(MACOS_VERSION)/$(PYTHON_VERSION)/$(KLAYOUT_VERSION)/qt5.pkg.macos-$(MACOS_VERSION)-$(PYTHON_VERSION)-release-$(KLAYOUT_VERSION)-$(GITCOMMIT).dmg.md5
5864
rm work-KLayout.dmg

build.sh

+5
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,11 @@ if [ "$BIN" = "" ]; then
532532
BIN=$CURR_DIR/bin-$CONFIG
533533
fi
534534

535+
if [ "$QMAKE_CCACHE" = 1 ]; then
536+
echo " Compilation caching is activated."
537+
else
538+
echo " Compilation caching is deactivated!"
539+
fi
535540
echo " Installation target: $BIN"
536541
echo " Build directory: $BUILD"
537542

macbuild/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*.pyc
2+
KLayoutDMG.applescript
-208 KB
Binary file not shown.

macbuild/Resources/template-KLayoutDMG.applescript

+6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@
2626
-------------------------------------------------------------------------------------------------
2727
on run (volumeName) -- most likely, the volume name is "KLayout"
2828
tell application "Finder"
29+
repeat 20 times
30+
if (exists (disk (volumeName as string))) then
31+
exit repeat
32+
end if
33+
delay 1
34+
end repeat
2935
tell disk (volumeName as string)
3036
-- [1] Open the volume
3137
open

0 commit comments

Comments
 (0)