mirror of https://github.com/KLayout/klayout.git
Allow x-suffix versions in .deb builds, updated COPYRIGHT and Changelog for next version.
This commit is contained in:
parent
472bd40455
commit
1647966b70
|
|
@ -1,6 +1,6 @@
|
||||||
klayout is packaged by Peter C.S. Scholtens <peter.scholtens@xs4all.nl>
|
klayout is packaged by Peter C.S. Scholtens <peter.scholtens@xs4all.nl>
|
||||||
and Matthias Köfferlein <matthias@koefferlein.de>
|
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:
|
Authors:
|
||||||
Matthias Köfferlein
|
Matthias Köfferlein
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,7 @@
|
||||||
|
|
||||||
|
0.27.4 (2021-xx-xx):
|
||||||
|
TODO
|
||||||
|
|
||||||
0.27.3 (2021-07-23):
|
0.27.3 (2021-07-23):
|
||||||
* Enhancement: DRC - more filters for edge pair collections
|
* Enhancement: DRC - more filters for edge pair collections
|
||||||
As there are now: with(out)_area and with(out)_internal_angle
|
As there are now: with(out)_area and with(out)_internal_angle
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
# Run this script with
|
# Run this script with
|
||||||
#
|
#
|
||||||
|
|
@ -35,7 +35,7 @@ esac
|
||||||
|
|
||||||
. ./version.sh
|
. ./version.sh
|
||||||
|
|
||||||
version="$KLAYOUT_VERSION"
|
version="${KLAYOUT_VERSION//-*/}"
|
||||||
exe_name="klayout"
|
exe_name="klayout"
|
||||||
bits=64
|
bits=64
|
||||||
|
|
||||||
|
|
@ -115,7 +115,7 @@ for d in db tl rdb; do
|
||||||
mkdir -p makedeb-tmp/${pylibdir}/$d
|
mkdir -p makedeb-tmp/${pylibdir}/$d
|
||||||
cp -pd $bininstdir/pymod/klayout/$d/*py makedeb-tmp/${pylibdir}/$d
|
cp -pd $bininstdir/pymod/klayout/$d/*py makedeb-tmp/${pylibdir}/$d
|
||||||
done
|
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
|
cd makedeb-tmp
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue