summaryrefslogtreecommitdiff
path: root/lang
AgeCommit message (Collapse)AuthorFilesLines
2006-08-17Update to Erlang R11B-0 (erlang-11.0). Changes since R10B:ghen8-80/+346
=== SMP Support === The major news is the support for SMP (Symmetric MultiProcessing). SMP is supported by most modern operating systems like Linux, Windows, Mac OSx, Solaris and is becoming more important now when dual processors, hyper-threading technology and multi-core systems are a reality. With Erlang, most of the problems which occur in multi-threaded programs have been solved once and for all in the Erlang VM and do not have to be handled by the application programmers. In the SMP version of the Erlang virtual machine, there can be many process schedulers running in separate OS threads. As default there will be as many schedulers as there are processors or processor cores on the system. The SMP support is totally transparent for the Erlang programs. That is, there is no need to change or recompile existing programs. Programs with built-in assumptions about sequential execution must be rewritten in order to take advantage of the SMP support, however. In this release, the Erlang VM supports SMP with focus on stability. There will follow a number of subsequent steps with necessary optimizations and support for more platforms. === Erlang Language and Related Issues === * The andalso and orelse operators are now allowed to be used in guards. That also applies to match specifications. * The BIF is_record/3 can now be used in guards. Also, is_record/3 can now be called without an erlang: module prefix for consistency with the other is_* functions. * The compiler options ignore_try and ignore_cond, which allowed code that used unquoted try or cond as atoms or record tags, has been removed. Old code that depended on the options need to be revised to have occurrences of try or cond as atom or record tags single-quoted. (Note: Although cond is a reserved keyword, there is no cond statement. It might be introduced in a future release.) * (ERTS 5.4.8) The new fun M:F/A construct creates a fun that refers to the latest version of M:F/A. This syntax is meant to replace tuple funs {M,F} which have many problems. * (ERTS 5.4.8) The new type test is_function(Fun, Arity) -- which may be used in guards -- test whether Fun is a fun that can be applied to Arity arguments. === New Applications === Dialyzer Dialyzer is a static analysis tool that identifies software discrepancies such as type errors, unreachable code, unnecessary tests, etc in single Erlang modules or entire (sets of) applications. Inviso The Inviso application, together with some new extensions to Runtime_Tools, is aimed at providing features for efficient tracing of production Erlang/OTP systems: * Distributed tracing - tracing on any number of Erlang nodes. * Autostart - tracing during system start-up. * Overload protection - mechanisms for suspending and later reactivating tracing, should an overload situation occur. * Enhanced use of meta tracing. * Trace cases - predefined specifications of what to trace. * Off-line merging and formatting of log files. Inviso is still under development. An easier-to-use trace tool, using the features listed above, is planned to be released as an R11B patch in Q3/Q4 2006. SSH The SSH application is an Erlang implementation of the secure shell protocol. It is considered to be a beta release, meaning there can be changes made to the API before it reaches 1.0. === Existing Applications === Compiler (Compiler 4.3.6) It is now possible to encrypt the debug information in Beam files. Debugger (Debugger 2.0) The debugger can now handle the try/catch language construct. Inets The Erlang implementation of the TFTP procotcol, tftp, is now documented. Kernel In Kernel 2.10.X, several bug fixes and improvements have been made in global , the global name registration facility. OS_Mon (OS_Mon 2.0) The entire OS_Mon application (code and documentation) has been reviewed and consequently updated with the goal to make the application more robust, homogeneous and easier to configure. STDLIB Added the zip module with functions for reading and creating zip archives.
2006-08-17Correct PLIST to fix a binary package:taca2-4/+5
- remove an extra directory. - handle empty directories.
2006-08-14Update to 5.1.1. Almost all dependencies need adaptation -> bump API.wiz10-227/+135
Changes: * Changes from version 5.0 to 5.1 ------------------------------- Language: + new module system. + new semantics for control variables of fors. + new semantics for setn/getn. + new syntax/semantics for varargs. + new long strings and comments. + new `mod' operator (`%') + new length operator #t + metatables for all types API: + new functions: lua_createtable, lua_get(set)field, lua_push(to)integer. + user supplies memory allocator (lua_open becomes lua_newstate). + luaopen_* functionst must be called through Lua. Implementation: + new configuration scheme via luaconf.h. + incremental garbage collection. + better handling of end-of-line in the lexer. + fully reentrant parser (new Lua function `load') + better support for 64-bit machines. + native loadlib support for Mac OS X. + standard distribution in only one library (lualib.a merged into lua.a)
2006-08-10Add security fix for Secunia Advisory SA21403 from PHP's CVS repository.taca3-3/+85
Bump PKGREVISION.
2006-08-08Fix broken shared library build under Mac OS X. "avidemux2" (from thetron4-4/+27
"avidemux" package) now works with the "js" library provided by this package. Bump package revision of this package. Vital hint provided by Amitai Schlair in private e-mail.
2006-08-08Remove changes added by Perl's configure script. Problem pointed outtron2-20/+4
by Thomas Klausner.
2006-08-08Make this build under NetBSD 4.x.tron2-6/+22
2006-08-08Use correct share library suffix under Mac OS X (".dylib" instead oftron4-10/+29
".so") so that linking with the "libjs" shared library actually works. Bump package revision because of this fix.
2006-08-08set the default defauly python version to 2.4drochner1-2/+2
2006-08-07Add USETOOLS+=dvipdf so that the documentation is properly built onperry1-1/+2
all platforms. Previously this was a hidden dependency. Thanks to cube for adding the make magic so dvipdf is now a tool.
2006-08-04Make this build under Mac OS X.tron3-6/+61
2006-08-03Add a buildlink3.mk file and a package.mk file both aimed at making easyjmmv2-0/+54
the creation of packages for Hugs modules libraries. The former provides the dependency on hugs and the latter an easy way to launch the Cabal build utility.
2006-08-03uhm, the last patch worked or not, depending on SYSCONFIGDIR.drochner8-37/+98
Add that stuff to CONF_FILES instead. Being here, update to the last stable version (1.1.13.8) and fix installed pkgconfig files not to contain relative paths (which will break with our buildlink harnesses).
2006-08-02Update swi-prolog* to 5.6.17.kristerw12-1279/+1344
The 5.6.x release consolidates the 5.5.x development stream started in 2004. Highlights: * UNICODE character set support * Unbounded integer arithmetic and rational numbers * New and faster CHR release * Added clp(r) constraints over reals * Many enhancements to the web and notably sematic web libraries * Much more ...
2006-08-02Add three patches accidently left on my work area.taca5-5/+46
- Add two miscellaneous patches for openssl and yaml libraries. They were left from last year, sigh. - Add one more part for CVE-2006-3694. Bump PKGREVISION.
2006-08-01Update to 200605:jmmv9-319/+602
- November 2002 Feature highlights of this new release are: * Much improved FFI support (contributed by Alastair Reid), bringing Hugs really very close to the Haskell FFI specification. * Adoption of a significant subset of GHC's hierarchical libraries (contributed by Ross Paterson). * An (allegedly) complete implementation of the Haskell98 module system (Sigbjorn Finne). * Numerous bug fixes since the previous major release in Dec 2001. - November 2003 There has been substantial internal restructuring. In addition to numerous bug fixes, user-visible changes include: * The beginnings of a User's Guide (though still incomplete). * The Double type is now double-precision on most architectures. * Hugs now relies on the same hierarchical libraries as GHC and Nhc98, and provides almost all of them. For now, compatibility with the old libraries is provided by stub modules, but users are encouraged to migrate to the new libraries. * Full support for imprecise exceptions (but not asynchronous ones). Most runtime errors are now reported by applying print to an Exception (formerly the built-in printer was applied to the faulty redex). * Integrated .NET support (on Windows platforms). * The -e, -f, -i, -N, -W and -X options and the :project command have been removed. * A searchpath may include an entry of the form "directory/*", meaning all the immediate subdirectories of directory (see -Pstr). - March 2005 This release is primarily targeted at Unix systems to gain experience with new features. The new Cabal-based library build system has the potential to make building on Windows easier, but it's not there yet. Volunteers welcome. In addition to numerous bug fixes, user-visible changes include: * The default current module is now the empty module Hugs.Base instead of the Prelude (see Section 2.2). * The Char type and the Char module now support Unicode as specified in the Haskell 98 Report (contributed by Dmitry Golubovsky). Character oriented I/O uses a byte encoding of characters determined by the current locale (see Section 3.3). * The new -X option can be used to group several options into one argument. This is now needed for executable runhugs scripts (using the Unix "#!" feature) that require two or more options (see Section 4.1). * The syntax of the ffihugs command has changed (see Section 4.2). The +G and +L options are gone, and a new -i option can be used to specify include files. * Hugs now has basic support for the Cabal packaging system (see Section 3.4). - May 2006 * The default current module is now the empty module Hugs (see Section 2.2). * The compatibility libraries are no longer included on the default search path. You can access them by adding "{Hugs}/oldlib" to the search path (see -Pstr), but they will be removed in the next release. * Rewritten graphical Windows interface (contributed by Neil Mitchell; see Section 4.3). * New :main command (contributed by Neil Mitchell).
2006-07-31Bump PKGREVISION for missing files.wiz1-2/+2
2006-07-31Add some missing files to PLIST.wiz1-1/+5
2006-07-31Fix typo and duplicate word in comment.wiz1-3/+3
2006-07-31- Fix PLIST problem; a extra entry.taca4-8/+198
- Reduce warning of optparse.rb when generating ri(1) database. Bump PKGREVISION.
2006-07-31Update the bootstrap kit to make this build on NetBSD-current too.kristerw9-111/+60
Fix some hardcoded paths. Bump PKGREVISION.
2006-07-30- Security fix for CVE-2006-3694 (JVN#13947696 and JVN#83768862).taca10-319/+2741
- Import yaml problem and fix document generation for ri(1). - minor clean up to pkgsrc. Bump PKGREVISION.
2006-07-27Correct PLIST and distinfo.kristerw3-5/+11
Bump PKGREVISION.
2006-07-27Rename "SITES_* to "SITES.*" for file-specific lists of sites from whichjlam2-5/+5
to fetch the file. This completes the renaming described in revision 1.1799 of bsd.pkg.mk.
2006-07-27Update to 6.31.1:wiz3-180/+180
Version 6.31.1 (19 May 2006) ============================ * New version of compiler which fixes several bugs found in the development of Inform 7. * Package now uses the latest autotools. Tested by dillo@
2006-07-26sigaltstack()/SA_ONSTACK isn't going to work on NetBSD with threads,drochner5-18/+25
for fundamental reasons. So don't try it. Being here, don't include <machine/db_machdep.h>. No user program should use it. It shouldn't be installed at all.
2006-07-22Added "c" to USE_LANGUAGES for packages that use GNU configure scripts,rillig1-2/+2
since they always need a C compiler, even when the source code is completely in C++. For some other packages, stated in the comment that a C compiler is really not needed.
2006-07-22Fix PLIST on Linux. Bump PKGREVISION.minskim2-2/+6
2006-07-22Fix a replace-interpreter error. PKGREVISION will be bumped shortlyminskim1-1/+6
after PLIST changes for Linux.
2006-07-22Include float.h on Linux to use DBL_MIN.minskim2-5/+5
2006-07-21"BUILD_ENV" was misnamed. It's actually the environment that is passedjlam1-2/+2
to all internal recursive make processes. As such, rename it to "PKGSRC_MAKE_ENV". XXX Note, some of the usage of this variable in package Makefiles seems XXX incorrect. They probably want "MAKE_ENV", which is the environment XXX passed to the make process when running "make" within ${WRKSRC}.
2006-07-21Depend on libsigsegv>=2.4, as 2.39 release notes say.wiz1-1/+2
2006-07-20Update to clisp 2.39perry10-58/+36
List of changes from the release notes: 2.39 (2006-07-16) ================= User visible changes -------------------- * SAVEINITMEM now accepts :SCRIPT argument that disables interpreting the first positional argument as the script name; and :DOCUMENTATION argument that is printed by the new -help-image command line option. See <http://clisp.cons.org/impnotes/image.html> and <http://clisp.cons.org/impnotes/clisp.html#opt-help-image> for details. * FFI:UINT64 and FFI:SINT64 are now compatible with C's long long type. * Stack overflow detection and recovery finally work fine on Unix. Libsigsegv is required for this, on all platforms (including MS-Windows). CLISP should neither exit nor crash under infinite recursion. If your distribution has CLISP compiled without libsigsegv, report the missing feature to its maintainer. Note that libsigsegv 2.4 is required, there are bugs in libsigsegv 2.3! * It is now possible to specify the default method-combination of a generic function, to be used when the DEFGENERIC form does not specify the :METHOD-COMBINATION explicitly, through a default initarg specification for the :METHOD-COMBINATION keyword on the generic function class. * Readline completion works with non 1:1 terminal encodings, e.g. UTF-8. * WITH-KEYBOARD works with a Unix tty even when SLIME hijacks *TERMINAL-IO*. * I/O operations on Win32 are now much faster. * New functions: POSIX:FFS, POSIX:PATHCONF. * Infrastructure: + Top-level configure now accepts a new option --with-gmalloc to use the GNU malloc implementation instead of the one supplied by libc. You may need it on older HP-UX and newer OpenBSD systems. See file unix/PLATFORMS for more information. + The value of the environment variable CFLAGS is respected by configure. * Bug fixes: + SOCKET:SOCKET-SERVER :INTERFACE now behaves as documented. + EXT:READ-BYTE-NO-HANG and SOCKET:SOCKET-STATUS used to hang on buffered binary sockets. + Allow DESTRUCTURING-BIND (a . b) with circular and dotted lists. + ADJUST-ARRAY of zero length adjustable string now works. + TIME now reports correct results when the heap grows over 4GB. + RAWSOCK functions now handle :START/:END arguments correctly. + BDB:DBC-GET now accepts :READ-COMMITTED and :READ-UNCOMMITTED. + POSIX:GROUP-INFO and POSIX:USER-INFO now handle errors correctly. * Portability: + Support DragonFly BSD.
2006-07-20Change last instance of _REPLACE.* to REPLACE.*. Remove specialjlam1-4/+4
_REPLACE.* handling from replace-interpreter.mk.
2006-07-20pkgsrc-users, not tech-pkg.wiz1-2/+2
2006-07-19Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrcjlam3-6/+3
had actually been ignoring LTCONFIG_OVERRIDE anyway and just using the default LIBTOOL_OVERRIDE to replace libtool scripts in packages. This just formalizes the fact that LTCONFIG_OVERRIDE is not used meaningfully by pkgsrc.
2006-07-19Consistently use $perlprog to refer to the perl executable in thejlam2-4/+4
perllink script. This was causing errors when building perl from pkgsrc. The perllink script didn't create any symlinks because it tried to invoke "perl", which silently fails with revision 1.20 of mk/tools/perl.mk (after the pkgsrc-2006Q2 branch). Bump the PKGREVISION to 3.
2006-07-18Convert _FETCH_MESSAGE to plain old FETCH_MESSAGE. Remove _FETCH_MESSAGEjlam2-37/+32
processing from mk/fetch/*.mk.
2006-07-18Fix for CVE-2006-3011adrianp3-3/+19
Bump to nb2
2006-07-18Include sys/types.h before sys/socket.h to fix socklen_t detectionjoerg2-1/+14
on DragonFly.
2006-07-14Mark these packages as NO_MTREE as they are bootstrap packages and don'tjlam1-1/+2
need mtree to pre-generate any directories for them.
2006-07-14Prepare nawk for use as a bootstrap tool by including the sourcesjlam24-31/+12211
directly in pkgsrc/lang/nawk/files and adjusting the package Makefile accordingly. The README.pkgsrc file includes notes on how the source files were (minimally) adjusted.
2006-07-13Not needed in 1.6.8.wiz1-344/+0
2006-07-12Update to 1.6.8:wiz5-20/+19
Changes since Guile 1.6.7 (changes in 1.6.8): * Changes to the distribution ** A number of GCC 4.0 related build problems have been fixed. A number of changes have been made to accomodate GCC 4.0. * Changes to the stand-alone interpreter ** `readline-set!' now works. * Changes to Scheme functions and syntax ** Guile now allows multiple line comments to end without a trailing newline. Previously Guile would throw an exception if a multiple line comment ended without a trailing newline. Now "!#" will end a multiple line comment regardless of what follows. ** Guile supports newer versions of SLIB more cleanly. Guile now relies on the upstream SLIB code (guile.init) to handle the load process. Previously Guile relied on its own copy of that code, which was incorrect, at least for more recent versions of SLIB. If you still need to use Guile with an older version of SLIB, and the new approach doesn't work for you, please add the following definition to your code before (ice-9 slib) is loaded for the first time: (define *guile-use-old-ice-9-slib* #t) This will cause Guile to revert to the old load behavior. ** The r5rs numerator and denominator functions have been added. These are now available in the default environment. ** `/' fix to <any>/0-<y>i complex division case, avoiding divide-by-zero ** `array-map!' fix, accepts just a destination array again ** `cons*', `list' fix to not clobber source list when called via `apply' ** `string-index', `split-string' and other string func fixes for 8-bit chars ** `number->string' fix for parsing of polar complex number with invalid angle ** (ice-9 poe) bug fixes ** srfi-1 `lset-adjoin' fix to actually use given equality procedure ** srfi-1 `lset-union' fixes to operate in the way specified by the SRFI Note in particular that if the first list is empty then the first non-empty is the starting point, and duplicates are not cast out of that. So (lset-union = '() '(1 1 1)) => '(1 1 1) where previously it was '(1). This, though perhaps unhelpful, comes from the SRFI spec (that if list A is empty then the result is B). ** srfi-1 `lset=', `list=' fix to equality procedure argument order ** srfi-17 avoid deprecation warnings about reexport ** srfi-19 new 2005 leap second ** srfi-39 new parameter versions of `current-output-port' etc, per SRFI ** make-stack can now correctly construct a stack from a continuation. ** Output string port speed problems have been improved Output string port (open-output-string, etc) writing was very slow at about 50 to 100 kbytes or above. This affected various things, in particular regexp-substitute/global on a large string, and stack backtraces with a large object. ** Bug fix: printing values no longer protects them from GC A bug in the printing code used to mean that printing a value (using `display' or `write') would incorrectly protect that value from GC for a while afterwards. This has now been fixed. * Changes to the C interface Ok gdt@
2006-07-10Make sure the do-patch target returns true, as some shells will return thesketch1-2/+2
egrep exit status (which will be false if there are no patches for the module) and stop the build.
2006-07-10- Converted the package to using the SUBST framework.rillig2-32/+26
- Fixed pkglint warnings. - Moved the documentation to share/doc/mpd. - Bumped PKGREVISION.
2006-07-09Update from ghc 6.4.1 to ghc 6.4.2.augustss3-25/+8
I can't find any description of what has changed, but it's bug fixes as far as I know.
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam62-124/+124
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam62-62/+124
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-07-08Sync DIST_SUBDIR for PHP modules with DIST_SUBDIR in Makefile.minskim1-2/+2