pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/cad/klayout
Module Name: pkgsrc
Committed By: mef
Date: Sat Apr 8 13:48:52 UTC 2017
Modified Files:
pkgsrc/cad/klayout: Makefile distinfo
pkgsrc/cad/klayout/patches: patch-src_tlStream.cc
Log Message:
Updated cad/klayout to 0.24.10
------------------------------
(from: http://klayout.de/development.html)
Version 0.24.10
Release date: 2017-04-01
Features:
Enhancements: New method CellView#is_dirty? This method indicates
that a cell view needs saving
Bugfix: DEF reader was not able to read routing Routed segments
with vias plus continued wiring were not read. Instead an error
message was shown saying "Invalid orientation specification"
Bugfix: Setting "technology-data" configuration property did not
work Reading or writing the "technology-data" configuration
property is the only way to access technology data from a
script. Hence it's important that this property can be set. With
this patch, "technology-data" can be set to an XML string which
has the same format than the one stored within the configuration
file.
Bugfix: Reader issues with some RVE files The RVE reader could not
read files with cell names containing hyphens (like "A-B").
Bugfix: Inplace operators are now working in Python too For
example "r1 += r2" was not working (r1 and r2 are pya.Region
objects for example).
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/cad/klayout/Makefile \
pkgsrc/cad/klayout/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/cad/klayout/patches/patch-src_tlStream.cc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/cad/klayout/Makefile
diff -u pkgsrc/cad/klayout/Makefile:1.7 pkgsrc/cad/klayout/Makefile:1.8
--- pkgsrc/cad/klayout/Makefile:1.7 Sun Jan 1 09:15:00 2017
+++ pkgsrc/cad/klayout/Makefile Sat Apr 8 13:48:52 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2017/01/01 09:15:00 mef Exp $
+# $NetBSD: Makefile,v 1.8 2017/04/08 13:48:52 mef Exp $
-DISTNAME= klayout-0.24.9
+DISTNAME= klayout-0.24.10
CATEGORIES= cad
MASTER_SITES= http://www.klayout.org/downloads/source/
Index: pkgsrc/cad/klayout/distinfo
diff -u pkgsrc/cad/klayout/distinfo:1.7 pkgsrc/cad/klayout/distinfo:1.8
--- pkgsrc/cad/klayout/distinfo:1.7 Tue Feb 14 21:33:07 2017
+++ pkgsrc/cad/klayout/distinfo Sat Apr 8 13:48:52 2017
@@ -1,12 +1,12 @@
-$NetBSD: distinfo,v 1.7 2017/02/14 21:33:07 joerg Exp $
+$NetBSD: distinfo,v 1.8 2017/04/08 13:48:52 mef Exp $
-SHA1 (klayout-0.24.9.tar.gz) = 0a740da3d43d13b155167b470869dbf64368bc7b
-RMD160 (klayout-0.24.9.tar.gz) = b694adb820371ac28b0a9b76b3372d6626a2682c
-SHA512 (klayout-0.24.9.tar.gz) = 2b14f9c10968f3c69e0585a6d83756395697ebefb5ab97d37e790e180be2f17073bc488135868be8f61308388dd3b5fac0819765c5e5487bbaae8679a8863574
-Size (klayout-0.24.9.tar.gz) = 11262298 bytes
+SHA1 (klayout-0.24.10.tar.gz) = d3c98eaf32301994bc00ebd430e7fb1806671bf8
+RMD160 (klayout-0.24.10.tar.gz) = 6e2c67b1386030344f10bf81d732043639a5d3a0
+SHA512 (klayout-0.24.10.tar.gz) = 0043b91e2dae9321299c217697c93af27bc7d795209bdf95248eee3690b97728854f9f82cc95f77f05a2cfbcae6a716ae594fe2485e04ed0a3f5d950abc0a31b
+Size (klayout-0.24.10.tar.gz) = 11262007 bytes
SHA1 (patch-build.sh) = 3a1e61100de101cbe82b0c4abfa10a0ab2f7ead7
SHA1 (patch-config_Makefile_conf_freebsd-32-gcc-release) = 8ee1a6f42465ef650fbd26ec6dcdea4db249d018
SHA1 (patch-config_Makefile_conf_netbsd-32-gcc-release) = 1fd264f8a25d4410cd48fcfbbbfbf149e65e3b22
SHA1 (patch-src_Makefile.rules) = ca98445d7e3823cc0b9c2114f0d4c6214ad59e5c
SHA1 (patch-src_layApplication.cc) = 7d0d3ec81e924ad1aec8a22c6a594148ac58107a
-SHA1 (patch-src_tlStream.cc) = 6c47f01b6b82cf8fb4f3995033ba8681d17e0d35
+SHA1 (patch-src_tlStream.cc) = a3c44130e1deaf84c3f966ca25be2af619d49849
Index: pkgsrc/cad/klayout/patches/patch-src_tlStream.cc
diff -u pkgsrc/cad/klayout/patches/patch-src_tlStream.cc:1.1 pkgsrc/cad/klayout/patches/patch-src_tlStream.cc:1.2
--- pkgsrc/cad/klayout/patches/patch-src_tlStream.cc:1.1 Tue Feb 14 21:33:08 2017
+++ pkgsrc/cad/klayout/patches/patch-src_tlStream.cc Sat Apr 8 13:48:52 2017
@@ -1,4 +1,7 @@
-$NetBSD: patch-src_tlStream.cc,v 1.1 2017/02/14 21:33:08 joerg Exp $
+$NetBSD: patch-src_tlStream.cc,v 1.2 2017/04/08 13:48:52 mef Exp $
+
+date: 2017-02-15 06:33:08 +0900; author: joerg; state: Exp; commitid: BDodrFgUrNgNVXFz;
+Add missing includes.
--- src/tlStream.cc.orig 2017-02-09 18:57:16.170616732 +0000
+++ src/tlStream.cc
Home |
Main Index |
Thread Index |
Old Index