Commit graph

104015 commits

Author SHA1 Message Date
dmcmahill
111e3f6d51 note cad/verilog update to 0.8.3 2006-10-04 23:57:22 +00:00
dmcmahill
7170cf5e3e update to verilog-0.8.3
** Release Notes for Icarus Verilog 0.8.3

This is a new release of the stable 0.8 branch. The changes from 0.8.2
are intended to be evolutionary, rather then revolutionary, to enhance
the stability of the branch.

Various simulator bugs have been fixed, including (but not limited to):
- Detect overrun of timescale vs. precision
- Handle more operators in constant expressions
- Various ivl crashes and panics fixed.
- Some performance bottlenecks have been fixed.
- Various tool compilation problems have been fixed.

Also, the internal synthesizer (for synthesis targets) has been
considerably improved. NOTE that the code generators have not been
improved to take advantage of all the changes here, so there is work
yet to be done.

The mingw build process for compiling in Windows has been reworked. It
is now possible (indeed preferable) to compile fully native Icarus
Verilog binaries on Windows with no Cygwin tools at all.
2006-10-04 23:52:47 +00:00
rillig
cd7e9298b9 Fixed the AWK interpreter. Bumped PKGREVISION. 2006-10-04 22:40:40 +00:00
rillig
bc85a438af PERL5_CONFIGURE_DIRS may now contain directory names relative to
${WRKSRC}. This saves some keystrokes when writing Makefiles.
2006-10-04 22:24:49 +00:00
rillig
6544e49e20 Updated g2 to 0.50. 2006-10-04 22:23:04 +00:00
rillig
eb94e01539 Updated g2 to 0.50.
Changes since 0.49:
0.50
====
- removed GIF code
- improved fortran port
2006-10-04 22:22:37 +00:00
wiz
7938151fe6 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
rillig
fda968c83e This package had ignored the LDFLAGS that have been provided by pkgsrc. 2006-10-04 21:59:27 +00:00
wiz
b6160330f7 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:53:15 +00:00
rillig
d24590a24e Added a patch to make the tests runnable on NetBSD. Sadly, they seem to
reach an endless loop.
2006-10-04 21:51:31 +00:00
wiz
768a49f2dd Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:47:16 +00:00
rillig
dbf5d3e27f Fixed path to the manual pages. 2006-10-04 21:46:34 +00:00
wiz
07d46249f6 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:46:12 +00:00
wiz
f5b8945cb9 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:35:58 +00:00
rillig
a3de4e93a9 Only do the build and test actions when NO_BUILD does not prevent them. 2006-10-04 21:31:34 +00:00
rillig
7c3e67ec5f Oops, committed the last change before the test finished. 2006-10-04 21:22:43 +00:00
rillig
777866670e Fixed file permissions and PKGMANDIR. 2006-10-04 21:20:40 +00:00
rillig
190b765ae7 Needs a C compiler. 2006-10-04 21:14:00 +00:00
rillig
2276cdf10a Added a patch that fixes the interpreter path of the installed Python
scripts. Bumped PKGREVISION.
2006-10-04 21:07:52 +00:00
wiz
089e4defb8 bzr updated to 0.11. 2006-10-04 20:55:51 +00:00
wiz
74b4d43c63 Update to 0.11:
bzr 0.11  2006-10-02

    * Smart server transport test failures on windows fixed. (Lukáš Lalinský).

bzr 0.11rc2  2006-09-27

  BUG FIXES:

    * Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).

    * Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
      Arbash Meinel).

bzr 0.11rc1  2006-09-25

  IMPROVEMENTS:

    * Knit files now wait to create their contents until the first data is
      added. The old code used to create an empty .knit and a .kndx with just
      the header. However, this caused a lot of extra round trips over sftp.
      This can change the time for ``bzr push`` to create a new remote branch
      from 160s down to 100s. This also affects ``bzr commit`` performance when
      adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
      down to 40s (John Arbash Meinel, #44692)

    * When an entire subtree has been deleted, commit will now report that
      just the top of the subtree has been deleted, rather than reporting
      all the individual items. (Robert Collins)

    * Commit performs one less XML parse. (Robert Collins)

    * ``bzr checkout`` now operates on readonly branches as well
      as readwrite branches. This fixes bug #39542. (Robert Collins)

    * ``bzr bind`` no longer synchronises history with the master branch.
      Binding should be followed by an update or push to synchronise the
      two branches. This is closely related to the fix for bug #39542.
      (Robert Collins)

    * ``bzrlib.lazy_import.lazy_import`` function to create on-demand
      objects.  This allows all imports to stay at the global scope, but
      modules will not actually be imported if they are not used.
      (John Arbash Meinel)

    * Support bzr:// and bzr+ssh:// urls to work with the new RPC-based
      transport which will be used with the upcoming high-performance smart
      server. The new command ``bzr serve`` will invoke bzr in server mode,
      which processes these requests. (Andrew Bennetts, Robert Collins, Martin
      Pool)

    * New command ``bzr version-info`` which can be used to get a summary
      of the current state of the tree. This is especially useful as part
      of a build commands. See ``doc/version_info.txt`` for more information
      (John Arbash Meinel)

bzr 0.10  2006-08-29

  IMPROVEMENTS:
    * 'merge' now takes --uncommitted, to apply uncommitted changes from a
      tree.  (Aaron Bentley)

    * 'bzr add --file-ids-from' can be used to specify another path to use
      for creating file ids, rather than generating all new ones. Internally,
      the 'action' passed to smart_add_tree() can return file_ids that
      will be used, rather than having bzrlib generate new ones.
      (John Arbash Meinel, #55781)

    * ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
      This will cache some of the intermediate trees, and decrease the
      setup time for benchmark tests. (John Arbash Meinel)

    * Inverse forms are provided for all boolean options.  For example,
      --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)

    * Serialize out Inventories directly, rather than using ElementTree.
      Writing out a kernel sized inventory drops from 2s down to ~350ms.
      (Robert Collins, John Arbash Meinel)

(BUG FIXES, INTERNALS, and TESTING updates removed from commit message)
2006-10-04 20:55:14 +00:00
wiz
18e3283474 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
wiz
852cef6f6d Update HOMEPAGE. 2006-10-04 20:46:06 +00:00
wiz
0e5b27b422 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:45:46 +00:00
wiz
6f9bd56547 Update MASTER_SITES and HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:44:18 +00:00
rillig
5f7aafea6e Fixed "test ==" in the configure script and a spelling mistake. It's
PKGCONFIG_OVERRIDE, not PKG_CONFIG_OVERRIDE.
2006-10-04 20:23:46 +00:00
rillig
d441c853e4 Fixed the "test" phase by adding a dependency on Perl, but only if the
tests are enabled.
2006-10-04 20:20:03 +00:00
gdt
5b2e75917d add fann 2006-10-04 20:19:52 +00:00
gdt
a52a278cf2 Added devel/fann version 2.0.0 [gdt 2006-10-04] 2006-10-04 20:13:42 +00:00
gdt
4039b51e3f Fast Artificial Neural Network Library implements multilayer
artificial neural networks in C with support for both fully connected
and sparsely connected networks. Cross-platform execution in both
fixed and floating point are supported. It includes a framework for
easy handling of training data sets. It is easy to use, versatile,
well documented, and fast. Bindings to other programming languages
and a GUI are also available.
2006-10-04 20:12:34 +00:00
rillig
00d338852e Fixed some pkglint warnings. 2006-10-04 19:45:58 +00:00
rillig
77e2fd3088 Added a patch for the broken "test ==". 2006-10-04 19:45:21 +00:00
rillig
e00f375f74 Fixed "test ==" in the configure script.
Fixed some pkglint warnings.
2006-10-04 19:38:05 +00:00
rillig
f0df9e43aa Added a patch so that pkg-config builds with PKGSRC_RUN_TEST. Fixed a
bug in the configure script and added a comment to patch-aa.
2006-10-04 18:48:04 +00:00
reed
8fc440b0ca Include ../../mk/x11.buildlink3.mk.
This definitely uses X. (I noticed because in my environment, libXt
was not buildlinked.)
2006-10-04 17:46:01 +00:00
wiz
98979e8e2a regen patch-ad (for MacOS X). 2006-10-04 17:15:05 +00:00
gdt
74d9d366ce rename loader script to epsg-load, and install in ${PREFIX}/bin
PKGREVISION++
2006-10-04 14:25:57 +00:00
obache
84272dc247 Updated cyrus-imapd to 2.2.13. 2006-10-04 12:19:53 +00:00
obache
e43ecc231a Update cyrus-imapd to 2.2.13.
Patch provided by Jukka Salmi via PR 33576.

Changes to the Cyrus IMAP Server since 2.2.12

 * Allow sieve scripts to be run on shared mailboxes (via sieve annotation).
 * Updated nntpd to be compliant with latest draft (soon to be RFC3977).
 * Updated IMAP UIDPLUS extension to be compliant with latest specification
    (RFC4315).
 * Performance improvements to quota utility.
 * Fixed possible race condition in IMAP IDLE.
 * Made ptloader runtime configurable.
 * Added more extensive output to arbitron.
 * Allow responses of any length from backend when proxing IMAP/POP3/NNTP
   traffic.
 * Added plaintextloginalert option.
 * Only allow mbpath to be run as Cyrus user.
 * Added berkeley_hash and berkeley_hash_nosync cyrusdb backends (seem to
   perform better under heavy loads).
 * Added lastpop mailbox annotation.
 * Added subscribe/unsubscribe support to cyradm.
 * Fixed miscellaneous bugs and build issues.
2006-10-04 12:18:14 +00:00
obache
81f8f4e2af Updated cyrus-sasl (and plugins, authd) to 2.1.22. 2006-10-04 12:12:35 +00:00
obache
1e0df3a9b8 Update cyrus-sasl (and plugins, authd) to 2.1.22.
New in 2.1.22
-------------

* Added support for spliting big data blocks (bigger than maxbuf)
  into multiple SASL packets in sasl_encodev
* Various sasl_decode64() fixes
* Increase canonicalization buffer size to 1024 bytes
* Call do_authorization() after successful APOP authentication
* Allow for configuration file location to be configurable independently
  of plugin location (bug # 2795)
* Added sasl_set_path function, which provides a more convenient way
  of setting plugin and config paths. Changed the default
  sasl_getpath_t/sasl_getconfpath_t callbacks to calculate
  the value only once and cache it for later use.
* Fixed load_config to search for the config file in all directories
  (bug # 2796). Changed the default search path to be
  /usr/lib/sasl2:/etc/sasl2
* Don't ignore log_level configuration option in default UNIX syslog
  logging callback
* (Windows) Minor IPv6 related changes in Makefiles for Visual Studio 6
* (Windows) Fixed bug of not setting the CODEGEN (code generation option)
  nmake option if STATIC nmake option is set.
* Several fixed to DIGEST-MD5 plugin:
  - Enable RC4 cipher in Windows build of DIGEST-MD5
  - Server side: handle missing realm option as if realm="" was sent
  - Fix DIGEST-MD5 to properly advertise maxssf when both DES and RC4
    are disabled
  - Check that DIGEST-MD5 SASL packet are no shorter than 16 bytes
* Several changes/fixed to SASLDB plugin:
  - Prevent spurious SASL_NOUSER errors
  - Added ability to keep BerkleyDB handle open between operations
    (for performance reason). New behavior can be enabled
    with --enable-keep-db-open.
* Better error checking in SQL (MySQL) auxprop plugin code
* Added support for HTTP POST password validation in saslauthd
* Added new application ("pluginviewer") that helps report information
  about installed plugins
* Allow for building with OpenSSL 0.9.8
* Allow for building with OpenLDAP 2.3+
* Several quoting fixes to configure script
* A large number of other minor bugfixes and cleanups
2006-10-04 12:07:53 +00:00
he
259e970584 Belatedly note the update of math/sc to 6.21nb1. 2006-10-04 07:42:22 +00:00
schwarz
5d6e0bc093 added missing $NetBSD$ headers 2006-10-03 23:01:25 +00:00
schwarz
a4efb4c0c3 added support for IRIX 5 and in particular the SGI IDO cc.
patches were discussed with Bryan Henderson, maintainer of the netpbm
code.
2006-10-03 22:56:50 +00:00
rillig
680973f68f Fixed pkglint warnings and the path to the manual pages. 2006-10-03 21:44:24 +00:00
adam
d5514a94a3 Updated lang/ocaml to 3.09.3 2006-10-03 21:08:36 +00:00
adam
4617c32db7 Changes 3.09.3:
Bug fixes:
- ocamldoc: -using modtype constraint to filter module elements displayed in doc
- ocamldoc: error in merging of top dependencies of modules
- ocamldoc: -dot-colors has no effect
- ocamdloc: missing crossref in text from intro files
- compilers: segfault with recursive modules
- compilers: infinite loop when compiling objects
- compilers: bad error message when signature mismatch
- compilers: infinite loop with -rectypes
- compilers: contravariance bug in private rows
- compilers: unsafe cast with polymorphic exception
- native compiler: bad assembly code generated for AMD64
- native compiler: stack alignment problems on MacOSX/i386
- stdlib: crash in marshalling
- stdlib: crash when closing a channel twice
- stdlib: memory leak in Sys.readdir
- C interface: better definition of CAMLreturn
- otherlibs/unix: crash in gethostbyname
- tools: subtle problem with unset in makefile
- camlp4: install pa_o_fast.o
- camlp4: install more modules

New features:
- ocamldoc: name resolution in cross-referencing {!name}: if name is not
    found, then it is searched in the parent module/class, and in the parent
    of the parent, and so on until it is found.
- ocamldoc: new option -short-functors to use a short form to display
    functors in html generator
- ocamlprof: added "-version" option
2006-10-03 21:06:25 +00:00
reed
1779642046 Update PKGREVISION.
Make sure use PKG_SYSCONFDIR for the "etc" sed expression.
Also do the SUBST_SED on the configuration example file too.
2006-10-03 20:53:38 +00:00
reed
4cf5ada443 Honor PKGMANDIR insetad of hard-coded path. 2006-10-03 20:27:47 +00:00
rillig
0649166ee2 Fixed pkglint warnings. 2006-10-03 19:48:43 +00:00