summaryrefslogtreecommitdiff
path: root/cad/gnetlist
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2007-02-21 13:23:52 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2007-02-21 13:23:52 +0000
commit7ddc234e3477508556620718da13074d9d8c196e (patch)
tree1f365694569dbd7455d4fd0f84566c99c42d77c6 /cad/gnetlist
parent4d2476efa1fc3f95832a74eafd465dab0f6dbd58 (diff)
downloadpkgsrc-7ddc234e3477508556620718da13074d9d8c196e.tar.gz
Update to 20070216 snapshot. Many changes and improvements since the
last snapshot. A highly abbreviated list is: libgeda: - fixes to postscript output - fixes to arc handling - added some functions for embedding and deembedding symbols - many changes to the internal data structure. - fix a bug which could cause missing connectivity on a bus - improvements to attribute handling - fix a bunch of compiler warnings. - various other bug fixes gschem: - improvements and bug fixes to the autonumber code - improvements to the various file selection dialogs - improvements to attribute handling - improvements to the internal data structure - various other bug fixes gnetlist: - fixes for guile-1.8 - update the gsch2pcb backend to allow running or never running m4 for pcb footprints. - changed "package" to "refdes" in the BOM/BOM2 backends - added a drc2 regression test - bugfix in the allegro backend - other misc fixes symbols: - added 4 missing characters to complete the hungarian character set - add greek mu gsymcheck: - man page improvements gattrib: - enhanced sorting functions - various bug fixes utils: - add an option to gsch2pcb to let the user prevent m4 from ever being run when looking for pcb footprints. - let gsch2pcb look both for "name" and "name.fp" when looking for a footprint called "name". - use some configure options to set the default gsch2pcb footprint search paths rather than hardcoding them. - added a gnet_hier_verilog.sh script to do non-flattened verilog netlisting - added options to gschlas to embed or de-embed all symbols in a schematic
Diffstat (limited to 'cad/gnetlist')
-rw-r--r--cad/gnetlist/distinfo8
-rw-r--r--cad/gnetlist/patches/patch-aa20
2 files changed, 4 insertions, 24 deletions
diff --git a/cad/gnetlist/distinfo b/cad/gnetlist/distinfo
index f753c66d240..2fb5a70b108 100644
--- a/cad/gnetlist/distinfo
+++ b/cad/gnetlist/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.21 2006/12/21 00:19:54 dmcmahill Exp $
+$NetBSD: distinfo,v 1.22 2007/02/21 13:23:53 dmcmahill Exp $
-SHA1 (geda/geda-gnetlist-20061020.tar.gz) = b4f2121464ff22db8f0eb08a398df91b055032b2
-RMD160 (geda/geda-gnetlist-20061020.tar.gz) = c05d3bee1db520c8f86c0e4ca6b1707b9c0b4cf8
-Size (geda/geda-gnetlist-20061020.tar.gz) = 332027 bytes
+SHA1 (geda/geda-gnetlist-20070216.tar.gz) = 873a8cec8cb674e0a9d2656baf6255d6d3d2a19e
+RMD160 (geda/geda-gnetlist-20070216.tar.gz) = eea0076b964d178c8d8dab71aab0978da6ebb6de
+Size (geda/geda-gnetlist-20070216.tar.gz) = 355709 bytes
SHA1 (patch-aa) = 1fdc681538545f5712a423bc62b1ce89fbc7ff4c
diff --git a/cad/gnetlist/patches/patch-aa b/cad/gnetlist/patches/patch-aa
deleted file mode 100644
index e1d0ba69872..00000000000
--- a/cad/gnetlist/patches/patch-aa
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-aa,v 1.11 2006/12/21 00:19:54 dmcmahill Exp $
-
-work around compilers without __FUNCTION__ like sun studio compilers.
-Patch is already in the upstream sources.
-
---- utils/mk_verilog_syms.c.orig 2005-02-04 18:14:31.000000000 -0500
-+++ utils/mk_verilog_syms.c
-@@ -46,6 +46,12 @@
- #define CYAN 6
- #define GREY 7
-
-+/* __FUNCTION__ seems to be a gcc extension */
-+#ifndef __GNUC__
-+#define __FUNCTION1(a,b) a ":" #b
-+#define __FUNCTION2(a,b) __FUNCTION1(a,b)
-+#define __FUNCTION__ __FUNCTION2(__FILE__,__LINE__)
-+#endif
-
- /* external prototypes */
- int GetStringDisplayLength(char *str,int font_size); /* char_width.c */