Skip to content

Commit d4d7176

Browse files
committed
etc: update klayout version
Klayout org only provides the latest versions for new OSes such as RHEL9/RockyLinux9/Ubuntu24 Signed-off-by: Vitor Bandeira <[email protected]>
1 parent 515a851 commit d4d7176

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

etc/DependencyInstaller.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ else
1010
fi
1111

1212
# package versions
13-
klayoutVersion=0.28.8
13+
klayoutVersion=0.29.8
1414
verilatorVersion=5.026
1515

1616
_versionCompare() {
@@ -158,9 +158,14 @@ _installUbuntuPackages() {
158158
fi
159159
else
160160
if [[ $1 == 20.04 ]]; then
161-
klayoutChecksum=15a26f74cf396d8a10b7985ed70ab135
161+
klayoutChecksum=bfa011330bc9e1f61b46f668379cc741
162+
elif [[ $1 == 22.04 ]]; then
163+
klayoutChecksum=60839f6b5b2b1c1e76bf0c1bc17bf18c
164+
elif [[ $1 == 24.04 ]]; then
165+
klayoutChecksum=b8909538985b15135b49e8d32a089d72
162166
else
163-
klayoutChecksum=db751264399706a23d20455bb7624264
167+
echo "Could not find checksum for klayout"
168+
exit 1
164169
fi
165170
wget https://www.klayout.org/downloads/Ubuntu-${1%.*}/klayout_${klayoutVersion}-1_amd64.deb
166171
md5sum -c <(echo "${klayoutChecksum} klayout_${klayoutVersion}-1_amd64.deb") || exit 1

0 commit comments

Comments
 (0)