Commit graph

651 commits

Author SHA1 Message Date
recht
367eed19fe Build Python with thread support by default and turn the existing
python*-pth packages into meta-packages which will install the non-pth
packages. Bump PKGREVISIONs on the non-pth versions to propagate the
thread change, but leave the *-pth versions untouched to not affect
existing installations.
Sync all PYTHON_VERSIONS_AFFECTED lines in package Makefiles.
2005-01-23 20:41:45 +00:00
kristerw
523bdff0df Fix a C99ism to make this package build with gcc 2.95. 2005-01-17 19:33:06 +00:00
wiz
4266eb96f3 Made obsolete by update to 20041228, I presume (at least
they were removed from the distinfo).
2005-01-13 09:34:02 +00:00
jlam
b6b853727d Nuke USE_FORTRAN and bring the f2c handling within the mk/compiler
framework.  The list of changes include:

  * Modify compiler.mk so that "c" is always prepended to USE_LANGUAGES,
    so we no longer need to say it in package Makefiles.  Packages
    should now append to USE_LANGUAGES instead of setting it.

  * Create mk/compiler/f2c.mk which implements another pseudo-compiler
    "f2c" that may be used with any C compiler backend, e.g.

	PKGSRC_COMPILER= f2c ccache gcc

  * Teach the various "real" compiler files, e.g., sunpro.mk, mipspro.mk,
    etc., to use f2c if the native Fortran compiler isn't present.

Packages that use Fortran should now simply include the line:

	USE_LANGUAGES+=	fortran

in the package Makefile.
2005-01-12 15:31:58 +00:00
dmcmahill
9898ce27ff remove readline support per pkg/28829. readline and spice licenses were
not compatible.
2005-01-11 22:26:01 +00:00
dmcmahill
fdbff59903 update to 20041228.
Release notes for the gEDA/gaf 20041228 snapshot

   Changes
     _________________________________________________________________

   libgeda

     * Shared library version number now at 22.
     * Added  a  new  attribute:  symversion= and associated mechanism to
       libgeda.
          + The symversion= mechanism allows symbols to be versioned with
            a  major  and  minor  number. An example of this attribute is
            symversion=1.0
          + This symversion= attribute is typically found in symbol files
            at  first,  but  it  will be promoted if it is found when the
            symbol is read in from disk.
          + The  symversion=  attribute  is  an  auto-prompted attribute,
            which  if  present in a symbol will always be promoted to the
            schematic.
          + If the major number of the symversion= attributes (the one in
            the symbol and the one in the schematic) does not match, then
            a serious warning message is issued.
          + When  a user changes a symbol file in a major or incompatible
            way   (translation,   addition/removal   of   pins/attributes
            etc...),  the major number of the symversion= attribute value
            should be incremented by one.
          + For minor changes, primarily cosmetic changes, only the minor
            number  of the symversion= attribute value should incremented
            by one.
          + If  the minor number of the symversision= attributes (the one
            in  the  symbol and the one in the schematic) does not match,
            then a minor warning message is issued.
          + The  default value is 0.0 even if no symversion= attribute is
            present.
     * Fixed  the  randomly  colored  midpoint postscript bug reported by
       Gabriel  Paubert.  Also  removed  some  redundant  code related to
       postscript printing.
     * Moved  a whole bunch of rc routines from gschem/gnetlist/gsymcheck
       into libgeda. This makes using the common rc code much easier.
     * Added  the  --with-rcdir  ./configure  flag  to  libgeda. This was
       required   because  of  the  above  rc  code  refactor.  You  must
       ./configure  libgeda  with  this flag if you intend to move the rc
       files  to  a  different directory. Be sure to put this flag on all
       programs (gschem/gnetlist/gsymcheck/gattrib etc...) if you want to
       move the rc files.
     * Part  of  the  above  rc code refactor was to add an additional rc
       file:  gafrc.  The  gafrc  file is read in last after all other rc
       files  are  read in. Only common rc keywords can be put inside the
       gafrc file, including:
          + component-library
          + component-library-search
          + source-library
          + source-library-search
          + world-size
          + reset-component-library
          + reset-source-library
          + default-series-name
          + untitled-name
          + scheme-directory
          + bitmap-directory
          + font-directory
          + bus-ripper-symname
       Now  you  do not have to create a gschemrc, gnetlistrc, gattribrc,
       gschlasrc   etc...   if  you  are  just  adding  custom  component
       libraries.  Just  create a gafrc file and put the library lines in
       there.
     * Added  a  bunch  of  init function to libgeda_init() to make using
       libgeda a little easier.

   gschem

     * Added  a  dialog  box  which pops up when a schematic is loaded up
       which  has  components  which have changed in a major or minor way
       (based  on  the  new symversion= attribute). See above the libgeda
       section for a description of the new symversion= attribute and its
       usage.
     * Hopefully  finally  fixed  the  broken postscript problem when the
       locale uses commas instead of periods. Original fix by Bill Wilson
       and patch by Andreas Fester.
     * Fixed  a  gschem  crash when certain components (depending on what
       was  connected  to  them)  were being updated. I have also started
       working  on  fixing  Edit/Component Update... to be more sane (and
       not  cause  duplicated  attached  attributes).  This  work  is not
       complete,  and  for now, Edit/Component/Update... will still cause
       duplicate attributes.
     * Fixed  some visual garbage/corruption in the preview window in the
       file selection and component place dialog boxes.
     * Added  a new rc keyword "grid-dot-size" which lets you control the
       size of the grid dots. Handy if the dots are too small to see.
     * Applied  the  scroll  wheel  pan patch by Sascha Silbe. The scroll
       wheel pans the display vertically and holding down the control key
       and moving the wheel the will scroll the display horizontally.
     * Added  a  modal  "Are  you  sure?" dialog box to page revert. This
       should  prevent  accidental page reverts (cause work losses). This
       dialog box is only implemented for gtk+ 2.x
     * Added an Italian translation by Petrecca Michele.
     * Added  the  comment  and  symversion  attribute  to  the attribute
       pulldown list in the Add/Attribute dialog box.
     * Updated gschem with the newly refactored rc code.

   gnetlist

     * Stuart  implemented  a whole slew of improvements to the spice-sdb
       backend.
     * Stuart  added  several  functions  to  passing the command line to
       scheme backends.
     * Removed  gschem2pcb  as  an  installed  program.  gsch2pcb  is the
       preferred tool for going from schematic to PCB.
     * Applied a bugfix patch to the cascade backend by Dan McMahill.
     * Integrated  the  initial  version  of  a  SystemC backend by Jaume
       Masip.
     * Integrated  a  new  scheme  backend for Eagle PCB. The backend was
       written by Braddock Gaskill.
     * Updated gnetlist with the newly refactored rc code.

   gattrib

     * Integrated   Stuart   Brorson's  attribute  editor:  gattrib  into
       gEDA/gaf.  This  is  the  first  gEDA/gaf  release  that  includes
       gattrib.
     * Here's a description of gattrib:
        Gattrib is gEDA's attribute editor. It reads a set of gschem .sch
            files  (schematic  files),  and creates a spreadsheet showing
            all   components  in  rows,  with  the  associated  component
            attributes  listed in the columns. It allows the user to add,
            modify, or delete component attributes outside of gschem, and
            then  save  the .sch files back out. When it is completed, it
            will   allow   the   user  to  edit  attributes  attached  to
            components,   nets,  and  pins.  (Currently,  only  component
            attribute   editing   is   implemented;  pin  attributes  are
            displayed only, and net attributes are TBD.)

   gsymcheck

     * Integrated  a  patch  by Jim Duchek which adds several more useful
       tests to gsymcheck.
     * Updated gsymcheck with the newly refactored rc code.

   symbols

     * Redrew  the following symbols and set the symversion= attribute to
       1.0:
        4000/4002-1.sym  4000/40107-1.sym 4000/4011-1.sym 4000/4012-1.sym
            4000/4023-1.sym        4000/4025-1.sym        4000/4030-1.sym
            4000/4068-1.sym        4000/4070-1.sym        4000/4072-1.sym
            4000/4073-1.sym        4000/4075-1.sym        4000/4078-1.sym
            4000/4081-1.sym 4000/4082-1.sym 4000/4085-1.sym:
       If  you  have any of these symbols in any existing schematics, you
       should get a warning that major changes have occurred when you run
       gschem or gnetlist.
     * Added  over ~100 user contributed symbols to the various component
       libraries. Created 5 new component libraries: minicircuits st apex
       allegro irf
     * Moved  the  local component library to the beginning of the search
       order.
     * Updated Peter Kaiser's asic library with the latest set of symbol.
       Added  Peter's  asic  pad  symbols  into the new asicpads library.
       Commented  in  the  asic  library  now  that  the symbol names are
       unique.
     * Werner Hoch has fixed a whole slew of symbols in various component
       libraries (74, 4000, and memory). Thanks Werner!

   geda (gManager)

     * Piotr Miarecki added graphman, a new tool for managing graphs.
     * Piotr update gManager to build with gtk+ 2.2.x
     * Integrated  a  French  and  Italian  translation.  Not sure if the
       translations are work yet.

   utils

     * Added symbol cleanup (gsymfix.pl) script by Mike Skerritt.
     * Updated gschlas with the newly refactored rc code.

   docs

     * attributes and symbols documents: Added information and details on
       the symversion= attribute
     * toplevel  doc  page:  Added  links  to  SystemC  and Eagle backend
       READMEs.
2005-01-11 03:16:22 +00:00
drochner
154f18aa7d update to 0.4.1
changes:
* VCD output for waveform viewing
- function additions
- needs Python 2.3, 2.4 is OK
* Conversion to Verilog to provide a path to implementation
* Added cosimulation support for the cver Verilog simulator.
- bugfixes
2005-01-05 15:20:10 +00:00
reed
e117eda090 Bump PKGREVISIONs due to libtiff update.
Some BUILDLINK_RECOMMENDED bumps done also.

(If I missed any, please let me know -- and let me know a good
way to automate this.)
2004-12-28 23:18:15 +00:00
minskim
377567caf8 Add build dependency on pkgconfig.
While here, rearrange paragraphs so that buildlink3.mk files are
included before overriding targets.
2004-12-14 18:47:09 +00:00
minskim
43a2843ca0 Needs pkg-config. 2004-12-14 06:38:00 +00:00
dmcmahill
ef22049571 remove obsolete patch. 2004-12-10 01:38:44 +00:00
dmcmahill
509a148b45 Add #define needed for non-gcc compilers. Should address recent bulk build failures. 2004-12-07 22:53:48 +00:00
minskim
58547991e9 Update HOMEPAGE. 2004-12-06 16:37:47 +00:00
minskim
856759999b Honor TCL_LIBS in tclConfig.sh. 2004-12-06 16:20:12 +00:00
minskim
6c2c872d74 Include lang/tcl/buildlink3.mk, since this package uses the tcl
library directly.
2004-12-06 16:06:32 +00:00
wiz
6e02d7ee41 Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.
Suggested by Roland Illig, ok'd by various.
2004-12-03 15:14:50 +00:00
wiz
c0fc199f54 Re-point paths to devel/guile14-gtk instead of devel/guile-gtk. 2004-12-03 14:31:28 +00:00
dmcmahill
39158b9561 remove conflict with ng-spice 2004-12-03 13:37:48 +00:00
dmcmahill
ea7e1a6559 remove conflict with cad/spice. There is no longer a conflict. 2004-12-03 04:41:12 +00:00
dmcmahill
2623e34cd8 update to ng-spice-15c
updates the vbic model, fixes some memory leaks, fixes a bug related
to `m' (multiplicity factor), various other bug fixes.
2004-12-02 13:33:32 +00:00
dmcmahill
b7d8bf0554 update to ng-spice-15
there have been many many bug fixes since the ng-spice-14.  Notable
updates include bug fixes in the bjt pole/zero code, updates to the
bsim1,2,3 models, updated hsim model, updates the jfet model and
much code cleanup.
2004-12-02 00:06:40 +00:00
dmcmahill
ae9d7297e6 master site has reorganized a bit 2004-12-01 12:36:21 +00:00
dmcmahill
71e41985f5 update to electric-7.00
This is a major version bump and represents many many bug fixes and
lots of improvements.  The scope is fairly broad and can't really
be summarized.  See the ChangeLog in the distfile for a complete
list of changes.
2004-12-01 04:47:53 +00:00
wiz
4ce264687e Bump PKGREVISION for removal of db3 buildlink3.mk file from
GConf's buildlink3.mk file. Bump BUILDLINK_DEPENDS where appropriate.
2004-11-30 18:26:39 +00:00
dmcmahill
63528c98d5 update to transcalc-0.14
Changes since 0.13:

* Fixed multiline string problems in help.h which prevented
  compilation in gcc >3.2
* Moved build environment automake, autoheader, autoconf to a more
  modern version (autoconf support is for >2.50).
* Ported transcalc to gtk2.0, which means that the dependency on
  gdk-imlib is now gone. gtk2.0 included gdk-imlib natively.
* Corrected some minor bugs related to config file
* Changed speed of light symbol from C to C0
* Modified configure.in to work also with Mingw32 (and hopefully cygwin)
* Added fnmatch.c and fnmatch.h (needed for Win32)
* Added program version number to saved files
* Updated speed of light constant (!) and changed its name from C to C0
  to avoid clash with variables in other f iles. Updated vacuum dielectric constant
* Moved examples from src directory to a separate examples dir
* Clean-up most warnings during compilation
* Upon running for first time, $HOME/.transcalc dir will be
  created with config file and save file
* Units default values now saved in config file
* Upon exit, last transmission line values remembered in save file
* Made some slight changes in gui setup
* Added coupled microstrip image
* Update manpage
2004-11-30 00:27:35 +00:00
dmcmahill
6029a03b32 remove gsl dependency. It is no longer needed 2004-11-27 20:57:47 +00:00
dmcmahill
5ebe1b673c update to atlc-4.6.0
Many many improvements and bug fixes since the last packaged
release.  A partial list is:

atlc should no longer fail any test on a multi-processor
system configured with --with-threads. The algorithm used
for both single processor and multiple processor (i.e.
threaded code is the same).

The -t option to atlc, which sets the number of threads
when configured for multiple processors can be set to 0
to use entirely the single-threaded algorithm. If set to
one, it will use the multi-threaded algoritm, but use
only one thread. If set to some other number, it will use
that number of threads and be optimal for the same number
of cpus.

Added some support for gathering hardware data under Linux.

Removed MPI support, as its not working at all.

Changes made to the code to remove the need for a type long long,
which should make the code more portable.

Some changes have been made to the bests so that when
the benchmark runs it should not produce junk for
the hardware information on any system. Previosly
is could create a lot of junk, that was all wrong.

uname is now only called once from try_portable.c
and the splatform specific stuff computed elsewhere

atlc now runs on anything from a toy to a supercomuter! Yes, that is
right. An early version of atlc has been run on a Sony Playstation 2
games console and version 4.4.0 has been tested on the Cray Y-MP
supercomputer!! It has also been run on a very large number of other
UNIX systems, so is hopefully very portable.

An option that was previously reccommended --enable-hardware-info
has been removed. It is now enabled by default, but can be
over-ridden with --disable-hardware-info.


Added a system call to get the number of configured
processors online in Linux. This seems to be undocumented
so it not without its risks, but it seems to work okay on the
limited number of systems tested on.

Someone has done a Windoze port of atlc. Appently it took just 5
minutes, from start to finish. A single bug was found that prevented
atlc compiling, but that was fixed - it needed a left brace removed.
This had never been seen on a UNIX system, since the offending code
was between a couple of #define's.

It has been bought to my attention that bitmaps created with Photoshop
prior to version 7.01 could not be read by atlc. This was not a
fault of Photoshop, but of atlc, so that bug has been fixed.

NEWS for realease 4.6.0  Nobember 2003.

This is a very different from the last release (4.5.1) in
two very important ways.

1) The basic accuracy for single dielectrics has been improved.
Now typical errors are only around 0.1%

2) I have re-enabled the calculation of multiple dielectrics
which were disabled due to accuracy concerns. I'm still not
100% happy with the algorithms, but on tests with a dual
coaxial cable with two dielectrics shows errors of under 2%,
I hope to improve this further at a later date.
2004-11-27 20:49:24 +00:00
dmcmahill
e9dc3ae5a4 update to covered-current-20040325.
This release contains lots of bug fixes and also contains the
initial version of the Covered report viewing GUI (line coverage only).  The following is a
description of the changes made since the last development release.

  - Ran C linting tool on all Covered source code and updated code based on linting errors/
    warnings.
  - Modified debug output to show file and line number of code that called the outputting
    function (easier to debug problems and useful in error regression testing).
  - Started initial error testing in regressions.
  - Several bug fixes made to remove segmentation faults and assertion errors in the new
    report generation functions.
  - Initial version of Covered report viewing GUI added.  This version displays line coverage
    only at the moment.
  - Fixed bug in score command for statement removal (was resulting in memory errors that led
    to segmentation faults).
  - Fixed bug in report command that output bad verbose information when -c option was used.
  - Added new diagnostics to regression testsuite to reproduce situations where original
    segmentation faults were found to occur.
  - Development documentation updates.  No user documentation updates are released at this
    time (other than information provided using the -h global option to Covered).
2004-11-27 17:52:09 +00:00
dmcmahill
f9063fe8b1 update to covered-0.3
Changes since the last stable release:

  - User-specified FSM code coverage.  By using command-line options or inline code specified
    by the user, FSM code coverage can be extracted from the design.  This does not include
    the ability to automatically extract FSMs from the design (an ability that will be added
    in future stable releases).
  - Enhanced performance of the score command.  A 3x - 5x speedup in the running time of the
    score command on the design should be expected with this release over past stable releases.
  - Enhanced readability of coverage reports.  The coverage report look has been overhauled to
    produce a much more readable/understandable coverage report.
  - Several bug-fixes have been made, including coverage number calculation bugs.
  - Development and user documentation updates.
  - Enhanced regression suite.
2004-11-27 15:04:02 +00:00
dmcmahill
ef4e3b32a6 update to verilog-current 20041004.
Release Notes for Icarus Verilog Snapshot 20041004

Some minor Makefile bugs have been fixed, and source file text
formatting has in some cases been normalized for release. Also,
configure scripts have been factored for a more consistent build.

Fixed continuous assignments to carry strength when needed for correct
behavior. This bug led to subtly incorrect reset behavior, but could
have caused strength modeling errors in a variety of situations.

Fixed some <= vs >= behaviors to be consistent. The results of these
comparisons, when sized values are involved, are more standard now.
2004-11-27 02:50:08 +00:00
adam
7b7ac9adff Unused patches 2004-11-19 13:46:31 +00:00
adam
df7fa515d0 Changes 3.3.0:
Replaced the "hspice" directory with Conrad Ziesler's
     "spiceparser".  The use of routine AddNTermModule() has
     broken the spice input for now, although once fixed, the
     results should be much improved.
     Also, changed the handling of expression parameters so
     that expression parameter results may be numeric, and
     evaluated results are saved in the PostScript output as
     instance values.  When traversing the hierarchy during
     redisplay, commands invoking a "selected" element will
     pick up the object instance being rendered.  The
     combination of these changes allows the implementation
     of several useful features such as counter-rotation and
     displaying the name of an object within the object.
2004-11-19 13:24:11 +00:00
wiz
24e3b17eb4 Update HOMEPAGE. 2004-10-29 12:29:53 +00:00
tv
dc99bb80f2 Update linkage to libltdl (via guile{,14}), which is now its own package.
Unfortunately, guile{,14}/buildlink3.mk directly includes it, and I don't
know which dependencies actually need libltdl, so it was a recursive bump.
Hopefully this recursive inclusion can be ripped out of
guile{,14}/buildlink3.mk at some point and bubble down to dependencies that
actually use libltdl, avoiding this headache in the future....
2004-10-15 14:50:05 +00:00
dmcmahill
abbba448ff update to verilog-0.8.
The current release is a considerable improvement over the previous stable
release. It includes 20 months of fixes and language coverage improvements.
For a complete history of changes, see the release notes for individual
snapshots between the 0.7 and 0.8 releases found at
ftp://ftp.icarus.com/pub/eda/verilog/snapshots/pre-0.8

A brief list of highlights:

 - Support for advanced standard data types such as real,
 - Lots more language support in general,
 - Kernel of an extensible, interactive debugger is new,
 - More complete support for user supplied system functions and tasks,
   including PLI system functions with various return value types,
 - Better standards compliance for core system tasks and functions in
   general, including some Verilog 2001 file I/O support, and
 - Performance improvements in general.
2004-10-14 22:29:04 +00:00
ben
8598a0877d Fix typo in linker flags so that qcad is linked properly.
Addresses PR#27240 from Joern Clausen.
2004-10-12 21:02:18 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
2004-10-03 00:12:51 +00:00
dmcmahill
a83d175109 add and enable gsmc 2004-10-02 05:25:58 +00:00
dmcmahill
dbb5b65a5b import gsmc-1.1
gsmc is a GTK application that allow to do all the calculation
usually done on a Smith Chart.  It permits to make calculation
for network composed by resistor, capacitor, inductance, and
transmission line (also as stub).  Network topology is
limited to series, parallel and as trasmissive
for trasmission line. No series connection are allowed in parallel
branch, neither parallel connection in series branch.
Trasmission line can be placed as quadrupole or as a parallel or
series stub, either opened or shorted at the other end.

Calculation procedure starts with setting the initial impedance to be
matched, next network elements are added and tuned to obtain the
desidered impedance value.

The network so obtained can be saved in spice format for other analysis;
current work can be saved for succesive retrieve.

The initial (start) impedance is thought as "the load" so when
adding a trasmission line placed as a quadrupole rotation is
clockwise, going "toward generator"; generator is placed after the
last network element, as can be seen from spice output.
2004-10-02 05:25:18 +00:00
dmcmahill
6154283a88 - use the configure output to decide if some headers should be included.
- add some missing headers to get rid of various compiler warnings on
  alpha.

Patches have been fed back to the author.
2004-10-02 00:50:14 +00:00
dmcmahill
7234f24b0c Move cad/tnt to cad/tnt-mmtl and rename the tnt executible from
tnt to tnt-mmtl to avoid a conflict with ham/tnt.  Addresses PR27100
from Berndt Josef Wulf.
2004-10-01 22:56:10 +00:00
wulf
fcd3054938 Added and enabled gattrib: An attribute editor for gEDA 2004-09-29 12:50:43 +00:00
wulf
60726f7565 Initial commit of gattrib-20040313: An attribute editor for gEDA 2004-09-29 12:48:51 +00:00
dmcmahill
bf90574558 add and enable tnt 2004-09-26 01:13:06 +00:00
dmcmahill
c0e644c97f import tnt-1.2.2
TNT-MMTL, the Multilayer Multiconductor Transmission Line 2-D and 2.5-D
electromagnetic modeling tool suite, generates transmission parameters
and SPICE models from descriptions of electronics interconnect
dimensions and materials properties.

MMTL programs and supporting libraries and documentation have been
under development at the Mayo Clinic since the mid-1980s. The programs
were developed under government sponsored electronics research
programs in the Special Purpose Processor Development Group
(SPPDG). They have been employed extensively at Mayo and distributed
to some government agencies and research collaborators. At the
beginning of 2004, we decided to release the TNT graphical front-end
and MMTL programs as free software under the GNU General Public
License (GPL).  Technically, MMTL programs are in the class of 2-D and
2.5-D "field solvers", which convert dimensions and materials
properties into electronic design parameters. The MMTL suite consists
of several programs, including lossy, loss-free, quasi-static, and
full-wave simulators. Circuit parameters are computed by either the
method of moments (MOM) or finite element methods (FEM). Basic
per-unit-length parameters are generated by the simulator, and can be
converted into HSPICE W-element models. MMTL is similar in many ways
to commercial field solver products which typically cost thousands of
dollars.
2004-09-26 01:12:11 +00:00
dmcmahill
4ae6a6af80 use DIST_SUBDIR since the distfile has changed with no name change 2004-09-22 22:37:27 +00:00
jlam
1a280185e1 Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:

	lib/libfoo.a
	lib/libfoo.la
	lib/libfoo.so
	lib/libfoo.so.0
	lib/libfoo.so.0.1

one simply needs:

	lib/libfoo.la

and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.

Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-22 08:09:14 +00:00
dmcmahill
3b3de6063b update to verilog-current-20040915. Changes in this snapshot:
The big news is that module instance arrays now work. Gate and UDP
instance arrays have worked for a while, but module instance arrays
were more tricky because of the scope arrys they create. The issues
have been dealt with, and module instance arrays are now supported.

An interesting but subtle set of bugs in the evaluation of ternary
expressions has been fixed. The problems expressed themselves when the
condition expression was constant.

Degenerate wait statements now work properly.

The @* syntax apparently missed sensitivities in l-value expressions
of assignment statements. This led to subtle bugs in carefully crafted
bits of code.

Verilog attributes are properly parsed in a few more contexts. Also,
some specify syntax cases have been fixed.

Some minor spelling and documentation errors have been fixed, along
with assorted compiler warnings.
2004-09-21 02:23:19 +00:00
dmcmahill
d6a8e41907 update to fastcap-2.0.19920918. Old distfile was no longer available.
New version is the same code but with a newer and less restrictive
license.  Also update the homepage.
2004-09-21 01:40:17 +00:00
dmcmahill
ab8490f3bf - homepage has moved
- distfile has moved
- license has changed.  Patches are the result of de-fuzzing the
  old patches since the new source files have the new (less restrictive)
  license.
2004-09-20 02:08:58 +00:00