Allow x-suffix versions in .deb builds, updated COPYRIGHT and Changelog for next version.

This commit is contained in:
Matthias Koefferlein 2021-07-31 09:03:13 +02:00
parent 472bd40455
commit 1647966b70
3 changed files with 7 additions and 4 deletions

View File

@ -1,6 +1,6 @@
klayout is packaged by Peter C.S. Scholtens <peter.scholtens@xs4all.nl>
and Matthias Köfferlein <matthias@koefferlein.de>
and was obtained from https://www.klayout.org/downloads/source/klayout-0.27.3.tar.gz
and was obtained from https://www.klayout.org/downloads/source/klayout-0.27.4.tar.gz
Authors:
Matthias Köfferlein

View File

@ -1,4 +1,7 @@
0.27.4 (2021-xx-xx):
TODO
0.27.3 (2021-07-23):
* Enhancement: DRC - more filters for edge pair collections
As there are now: with(out)_area and with(out)_internal_angle

View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/bash -e
# Run this script with
#
@ -35,7 +35,7 @@ esac
. ./version.sh
version="$KLAYOUT_VERSION"
version="${KLAYOUT_VERSION//-*/}"
exe_name="klayout"
bits=64
@ -115,7 +115,7 @@ for d in db tl rdb; do
mkdir -p makedeb-tmp/${pylibdir}/$d
cp -pd $bininstdir/pymod/klayout/$d/*py makedeb-tmp/${pylibdir}/$d
done
sed "s/%VERSION%/$KLAYOUT_VERSION/g" <scripts/klayout.egg-info >makedeb-tmp/${distpackdir}/klayout.egg-info
sed "s/%VERSION%/${KLAYOUT_VERSION//-*/}/g" <scripts/klayout.egg-info >makedeb-tmp/${distpackdir}/klayout.egg-info
cd makedeb-tmp