pkgsrc/lang
asau 2d94573469 Update to ABCL 1.3.1
While here, add test target. Temporarily require network access for it.


Changes since previous package:

Version 1.3.1
=============
http://abcl.org/svn/tags/1.3.1/
30-APR-2014

## Fixed

*  The underlying Java Function Interface (JFI) now converts CL:T and
   CL:NIL to JAVA:+TRUE+ and JAVA:+FALSE+.  Users who wish to
   reference a JAVA:+NULL+ should do so explicitly.

*  Make JCALL work in more places.  Thanks to Olof-Joachim Frahm.
   <http://abcl.org/trac/changeset/14683>

*  Interpolate CL:SLEEP and THREADS:OBJECT-WAIT for timeouts below the
   Planck timer ("1ns") to a nanosecond.
   <http://abcl.org/trac/changeset/14679>

*  Update to ASDF 3.1.0.103.
   <http://abcl.org/trac/changeset/14661>

   Fixes loading of Ironclad and other Quicklisp systems.

*  Fix Uniform Naming Convention (aka "UNC" or "network") paths under Windows.
   <http://abcl.org/trac/changeset/14659>

   DIRECTORY now works again on UNC paths.

   UNC paths may be either specified with either back slash (#\\) or
   forward slash (#\/) doubled as the first character in a Pathname
   namestring.

   The patterns in

        //<server>/<share>/[directories-and-files]

   are parsed as

    <server> is stored as HOST.

    <share> is stored as DEVICE.

    [directories-and-files] gets parsed as per the normal rules under
    Windows.

   Mixing namestrings with both backslash and slash characters can
   lead to unpredictable results.  It is recommended not to use
   backslash characters in namestrings if it can be avoided.  The
   pathname printed representation is always normalized to using
   forward slash delimiters.


*  Find contrib based on system jar name.
   <http://abcl.org/trac/changeset/14657>

   From Olof-Joachim Frahm.


Version 1.3.0
=============
http://abcl.org/svn/tags/1.3.0/
15-MAR-2014

## Features

*  Make LispStackFrame.UNAVAILABLE_ARG a singleton object,
   and lazily create the little used portions of the Lisp stack.

    Aggressively cache and control the use of memory by the underlying
    Lisp stack frame representation by introducing the private
    LispThread.StackFrame and LispThread.StackSegments classes.

    Contributed by Dmitry Nadezhin.

    LispStackFrame object are allocated on every
    LispThread.execute(...) .  However, they are seldom [accessed]
    ([... verify via] inspect[tion of the] stack trace). This patch
    delays allocation of LispStackFrame? objects until they are
    requested.  Raw information about stack frames is stored in
    stack. Stack is an Object[] array (more precisely a list of [...]4
    [Mib] Object[] arrays).

    ME: We are going to need a way to try to less agressively grab 4Mib
    chunks in low memory situations.

    Memory profiling of ABCL shows that the classes with largest
    allocation count are org.armedbear.lisp.LispStackFrame and
    org.armedbear.lisp.LispStackFrame.UnavailableArgument.

    Contributed by Dmitry Nadezhin.

    [r14572]: http://abcl.org/trac/changeset/14572
    [r14579]: http://abcl.org/trac/changeset/14579

*  ASDF 3.0.1.94 shipped with the implementation

*  per function call stack and memory exception handler in CL:COMPILE

   Inline calls to jrun-exception-protected (used by handler-bind to
   catch out of memory conditions).  This commit saves generation
   roughly 50 cls files.

   [r14552]: http://abcl.org/trac/changeset/14552

*  SYS:SHA256 audited

    The functionality if the SYS:SHA256 algorithim has been audited for
    use on inputs of single for files with recently shipping ORCL Java 7
    implementations (through jdk-1.7.0_51).

    [r14582]:  http://abcl.org/trac/changeset/14582

* Connect to NetBeans controlled JDWP via SLIME

    The Netbeans IDE configuration now includes a way to connect to
    the running-under-jdb ABCL via SLIME.  One needs a version of
    SLIME able to be loaded from its 'swank.asd' definition.

* Install 'abcl.jar' and 'abcl-contrib.jar' locally as Maven artifacts

    The Ant `abcl.mvn.install` target now installs build artifacts
    into the local Maven repository (Olof-Joachim Frahm)

    [r14579]: http://abcl.org/trac/changeset/14606

## Compatibility

*  CL:DIRECTORY

   The implementation specific :RESOLVE-SYMLINKS argument to the ANSI
   DIRECTORY function has been changed to nil.  This implements
   behavior closer to SBCL and guarantees that a DIRECTORY operation
   will not signal a file error.

   [r14619]: http://abcl.org/trac/changeset/14619
   [ticket-340]: http://abcl.org/trac/ticket/340

## Fixes

*  Fix CL:SLEEP for intervals less than a millisecond.

   For intervals less than or equal to a nanosecond, including an
   interval of zero, the current thread merely yields execution to
   other threads.

   [r14632]: http://abcl.org/trac/changeset/14632


## Tested

### "Java_HotSpot(TM)_64-Bit_Server_VM-Oracle_Corporation-1.7.0_51-b13" "x86_64-Mac_OS_X-10.9.1"

### "Java_HotSpot(TM)_64-Bit_Server_VM-Oracle_Corporation-1.8.0-b129" "x86_64-Mac_OS_X-10.9.2"

## Contrib

#### abcl-asdf

*  Now working with both Maven 3.0.x and 3.1.x.  Thanks to Anton for
   the help!

   [ticket-328]: http://abcl.org/trac/ticket/328

*  cache Maven dependency resolution to avoid repeated lookups.

   Instead of calling ABCL-ASDF:RESOLVE in both the ASDF COMPILE-OP
   and LOAD-OP, we now cache the result of invocation in COMPILE-OP
   and add this value in the LOAD-OP phase. Contributed by Cyrus
   Harmon.

   [r14631]: http://abcl.org/trac/changeset/14631

#### jna

   Now references jna-4.0.0.  Some incompatibility with CFFI ([in
   progress with fixing upstream][cffi-easye]).

[cffi-easye]: http://github.com/easye/cffi/
2014-09-12 20:29:30 +00:00
..
a60 Calling time() requires <time.h>. My fault, I think, and/or NetBSD has 2014-06-29 04:34:07 +00:00
abcl Update to ABCL 1.3.1 2014-09-12 20:29:30 +00:00
algol68g * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
asn1c Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
awka Add the license definition for this package 2014-09-05 00:59:12 +00:00
baci
basic256 recursive bump from icu shlib major bump. 2014-04-09 07:26:56 +00:00
boomerang Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
brandybasic This package for some reason thinks MacOS comes with DOS <conio.h>. It 2014-06-29 04:39:58 +00:00
bwbasic
caml-light Don't force -fno-defer-pop. 2013-10-27 20:32:56 +00:00
camlp5 Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
ccsh
cdl3 No change to package version: just updated maintainer e-mail address (no 2013-04-03 12:53:58 +00:00
Cg-compiler Munged MAINTAINER on file copy. Fixed. 2013-06-30 14:14:10 +00:00
chicken Update to Chicken 4.9.0.1 2014-06-12 07:22:12 +00:00
cim Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
cint
clang Changes 3.5.0: 2014-09-06 07:37:14 +00:00
classpath Share patches with lang/classpath-gui. Fix freetype use. 2014-04-19 15:00:37 +00:00
classpath-gui Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
clisp Disable custom (and broken) Solaris linking, fixes 64-bit build. 2014-05-14 11:24:24 +00:00
clojure Update to Clojure 1.5.1 2013-06-11 19:51:27 +00:00
coq Update of package to version 8.4pl4. Changes include: 2014-05-13 14:52:28 +00:00
cparser Remove accidental global variable. On most Unix platforms such 2014-06-29 04:53:26 +00:00
cu-prolog
eag Updated package to version 2.6. Added license (eag-license). Upstream changes 2013-04-03 13:26:44 +00:00
ecl Bump PKGREVISION for boehm-gc default-on threads, just to be on 2014-04-30 14:19:40 +00:00
eieio Resolves: 2013-04-06 20:27:16 +00:00
elisp-manual Shorten. Note that this is the emacs21 manual and emacs22+ come with 2013-08-03 21:47:00 +00:00
elk
embryo band-aid patch for missing fxp2f(3) on NetBSD<6. 2013-08-30 11:12:04 +00:00
erlang Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
erlang-doc Update Erlang/OTP to R16B02. 2013-10-20 18:37:49 +00:00
erlang-man Update Erlang/OTP to R16B02. 2013-10-20 18:37:49 +00:00
f2c Only install catman page if catinstall is set. 2013-09-12 13:10:19 +00:00
ficl
focal
fort77 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
g95 Restrict USE_TOOLS+= perl:build to Linux. 2014-07-16 12:16:31 +00:00
gambc Don't try to optimize some files, clang will require up to 8GB of memory 2013-12-15 19:39:34 +00:00
gauche Fix build on SunOS - needs c99 + extensions, and requires zlib. 2014-08-28 17:45:53 +00:00
gawk Fix build under SCO OpenServer 5.0.7/3.2. 2014-07-15 14:58:08 +00:00
gcc Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc-aux Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gcc3
gcc3-c Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc3-c++ Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc3-f77 Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc3-objc Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc34 Fix build on NetBSD 7+ 2014-09-10 12:18:54 +00:00
gcc44 Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc45 Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc46 Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc47 Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc47-libs Don't pass --enable-__cxa_atexit on SunOS, it is only available in newer 2014-07-24 12:43:20 +00:00
gcc48 Remove unused buildlink3.mk 2014-06-01 08:17:33 +00:00
gcc48-cc++ Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc48-fortran Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc48-libs Update to 4.8.3 2014-05-31 13:06:25 +00:00
gcc48-objc Replace all references to _GCC_REQD with the appropriate logical value for 2014-09-06 08:20:28 +00:00
gcc49 Don't redefine putc and friends to fix build on NetBSD with libc++. 2014-09-10 12:20:00 +00:00
gcc49-libs Initial import of gcc49-libs-4.9.1nb1 as lang/gcc49-libs. 2014-09-04 18:49:10 +00:00
gforth Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
ghc Recognize more Perl versions. 2014-06-27 06:51:22 +00:00
ghc-bootstrap Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
ghc7 make it clear what package depend on 2014-08-29 14:08:38 +00:00
gnat-aux Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gnat_util lang/gnat_util: Don't silence tsort for sake of SunOS support 2014-05-09 11:47:05 +00:00
go Update to 1.3.1: 2014-08-17 15:17:42 +00:00
gpc This is too old to support MacOS. 2014-06-29 05:08:36 +00:00
gprolog Add another site. 2013-06-13 16:31:55 +00:00
guile Patch around gtexinfo 5.2's high-and-mighty attitude towards indiscretions. 2013-11-30 07:06:25 +00:00
guile16 guile doesn't use any curses, termcap or terminfo 2013-10-18 15:53:27 +00:00
gwydion-dylan Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
heirloom-awk
hugs * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
icc11 s/gcc48/gcc48-cc++/ 2014-06-15 17:37:22 +00:00
icon
inform
intercal
ja-gawk
jamvm Update jamvm to 1.5.4. 2014-02-08 09:41:29 +00:00
japhar Work around linux's broken sort(1). 2013-04-28 03:31:22 +00:00
jasmin
java-lang-spec
java-vm-spec
jikes
jini
joos
js
kaffe Fixes build with giflib-5.1. 2014-05-25 08:24:24 +00:00
kaffe-esound
kaffe-x11 libungif is not relevant any longer since the GIF relevant patents 2014-05-31 15:56:26 +00:00
kali Remove flagrantly wrong shell syntax (trailing &&) appearing in the 2014-01-02 04:18:49 +00:00
konoha recursive bump from icu shlib major bump. 2014-04-09 07:26:56 +00:00
ksi Bump PKGREVISION for boehm-gc default-on threads, just to be on 2014-04-30 14:19:40 +00:00
librep Update to 0.92.3 2014-01-03 05:01:36 +00:00
libtcl-nothread Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
likepython Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
lua Multiversion support for Lua. 2014-05-03 13:00:44 +00:00
lua51 Remove .pc files. 2014-06-13 17:09:57 +00:00
lua52 Remove .pc files. 2014-06-13 17:09:57 +00:00
LuaJIT
LuaJIT2 . Added buildlink3.mk 2014-03-26 13:29:53 +00:00
lush * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
maude Fix build with newer bison. Don't use <rope> with clang, but fall back 2013-11-29 18:30:09 +00:00
mawk Changes 1.3.4.20131226: 2014-03-13 16:35:23 +00:00
mercury Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
minischeme
mit-scheme-bin Fix a common mistake in many different packages: POSIX says that when using 2013-10-18 11:41:17 +00:00
mono PLIST libtool archive handling doesn't work for symlink aliases, so add 2014-09-10 12:17:14 +00:00
mono-basic recursive bump from icu shlib major bump. 2014-04-09 07:26:56 +00:00
mono2 Remove MAKE_JOBS_SAFE=no, added 4 years and many versions ago. 2014-09-01 19:18:21 +00:00
moscow_ml Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
mpd
nawk Increase the default YYMAXDEPTH from 150 to 300, fixes problems building 2014-03-25 12:50:49 +00:00
newlisp The symlink to java is not needed anymore. 2014-07-07 14:41:09 +00:00
nhc98 Use mk/curses instead of devel/ncurses 2014-03-09 11:59:09 +00:00
nodejs Update nodejs to 0.10.31. 2014-08-21 09:28:44 +00:00
nqp Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
nuitka Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
objc Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
ocaml Added comments to gethostbyname/addr patches 2014-05-13 10:17:44 +00:00
onyx This probes for and uses libedit, but libedit isn't buildlinked. 2014-01-05 04:10:06 +00:00
oo2c Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
open-cobol-ce Import open-cobol-ce-1.1.59 as lang/open-cobol-ce. 2013-05-26 04:13:05 +00:00
opencobol Set CONFLICTS. 2013-05-26 04:15:40 +00:00
openjdk7 Ignore null returns in operator new implementations. They are generally 2014-09-11 13:50:24 +00:00
openjdk7-bin
opensource-cobol Add missing patch 2014-03-16 04:53:14 +00:00
ossp-js Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p2c Redo DESTDIR support correctly. hi joerg-from-2009 :-) 2014-01-02 07:45:14 +00:00
p5-Switch Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
parrot Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
pcc
pcc-current update to 20140706 snapshot 2014-07-16 20:17:37 +00:00
pear Bump PKGREVISION by Updating bundled Archive_Tar pear to 1.33.12. 2014-08-18 15:17:54 +00:00
perl5 adjust a pattern to match 0.8 vs everything else. 2014-08-12 05:41:39 +00:00
pfe Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
pforth Remove flags that have been GCC's since ~forever. 2013-10-28 23:47:56 +00:00
php Update php55 to 5.5.16 (PHP 5.5.16). 2014-08-23 16:09:21 +00:00
php5-perl Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
php53 Update php53 to 5.3.29, final PHP 5.3 release. 2014-08-15 16:09:16 +00:00
php54 Update php54 to 5.4.32 (PHP 5.4.32). 2014-08-23 16:07:24 +00:00
php55 Update php55 to 5.5.16 (PHP 5.5.16). 2014-08-23 16:09:21 +00:00
picoc Use a pointer to the void type, not a enum value that turns out to be 0. 2013-12-17 23:23:38 +00:00
pict Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
polyml Fix compilation script to actually work. 2014-03-05 22:14:17 +00:00
py-basicproperty Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-cxfreeze Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-hy Import py27-hy-0.10.0 as lang/py-hy. 2014-05-18 03:32:16 +00:00
py-pyrex Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-pythonz Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-six Update to 1.7.3: 2014-07-22 09:59:07 +00:00
py26-html-docs Some packaging improvements. 2014-07-17 11:30:58 +00:00
py27-html-docs Some packaging improvements. 2014-07-17 11:34:42 +00:00
py33-html-docs Import py33-html-docs-3.3.5 as lang/py33-html-docs. 2014-07-17 11:37:38 +00:00
py34-html-docs Import py34-html-docs-3.4.1 as lang/py34-html-docs. 2014-07-17 11:45:40 +00:00
python Add python-digest 2014-06-07 14:27:02 +00:00
python26 try to find openssl header from system inc_dirs additionally, builtin one 2014-05-21 00:35:50 +00:00
python27 Reverting some changes which made building on Darwin to fail. 2014-07-26 06:19:38 +00:00
python33 Add a fix, test-case and note for directory traversal vulnerability, ref. 2014-07-02 12:53:52 +00:00
python34 Apply fix for directory traversal vulnerability, ref. 2014-07-04 11:37:13 +00:00
racket Bump PKGREVISION for sqlite3 dependency. Requested by wiz@ 2014-09-03 07:00:01 +00:00
racket-textual Update to Racket 6.0.1 2014-06-15 09:35:28 +00:00
rakudo-star Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
rcfunge Can work with system curses 2014-03-09 11:48:15 +00:00
rexx-imc
rexx-regina
ruby Upadte ruby193-base to 1.9.3p547 (Ruby 1.9.3 patchlevel 547). 2014-08-25 03:25:57 +00:00
ruby-coffee-script
ruby-coffee-script-source Update ruby-coffee-script-source to 1.7.0. 2014-03-14 17:19:18 +00:00
ruby-doc-stdlib
ruby-execjs Update ruby-execjs to 2.0.2. 2014-03-14 17:21:29 +00:00
ruby18 Refelect change of RUBY_SRCDIR. 2014-03-13 17:06:42 +00:00
ruby18-base Use gmake on Darwin, bmake doesn't like the codesign / POSTLINK bits. 2014-06-26 15:59:31 +00:00
ruby21 Add ruby21 package which contains all packages from Ruby 2.1.1 2014-03-14 19:47:00 +00:00
ruby21-base Remove MAKE_JOBS_SAFE=no, it appears to be a cargo cult from previous 2014-09-02 14:03:36 +00:00
ruby193 Refelect change of RUBY_SRCDIR. 2014-03-13 17:06:42 +00:00
ruby193-base Remove MAKE_JOBS_SAFE=no. It was added 2 years ago, back when then package 2014-09-02 20:41:42 +00:00
ruby200 Refelect change of RUBY_SRCDIR. 2014-03-13 17:06:42 +00:00
ruby200-base Remove MAKE_JOBS_SAFE=no, it appears to be a cargo cult from previous 2014-09-02 11:31:14 +00:00
runawk Update to 1.5.1 (build failure on Hurd was fixed) 2014-07-13 16:27:03 +00:00
sablevm
sablevm-classpath build fix following the freetype2 update 2014-03-23 11:14:46 +00:00
sablevm-classpath-gui Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
sather Let's try using the pkgsrc config for MacOS. If it doesn't work, which is 2014-06-29 05:12:42 +00:00
sbcl Update to SBCL 1.2.0 2014-06-01 18:55:59 +00:00
scala Update to 2.11.1. 2014-06-12 17:35:46 +00:00
scheme48 Treat FreeBSD and DragonFly the same way. 2014-06-17 22:23:40 +00:00
scm Add network libs on SunOS 2014-02-08 23:39:55 +00:00
see Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
sigscheme
siod Disable check-libs, this package unpacks directly into WRKDIR so falls 2014-07-25 15:21:39 +00:00
smalltalk FreeBSD uses NetBSD's libexecinfo. 2014-06-19 15:15:38 +00:00
smlnj '"@comment $NetBSD$" expected.' 2013-04-06 04:03:36 +00:00
snobol Use new DIST_SUBDIR for snobol-1.3bis distfile, in the unlikely event 2014-07-06 18:25:31 +00:00
spidermonkey * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
spl recursive bump from icu shlib major bump. 2014-04-09 07:26:56 +00:00
squeak Update to Squeak 4.4 2013-11-16 20:34:56 +00:00
squeak-vm Recursive revbump from pulseaudio-5.0 2014-06-09 14:18:04 +00:00
sr
sr-examples
stalin Bump PKGREVISION for boehm-gc default-on threads, just to be on 2014-04-30 14:19:40 +00:00
STk Update HOMEPAGE. 2013-06-16 11:47:13 +00:00
sun-jdk6 Fix SunOS PLISTs. Please try to keep them in sync when you change this 2013-12-13 11:10:20 +00:00
sun-jdk7 Add support for Oracle Java 7 (manually installed via Mac OS X builtin 2014-09-03 12:47:37 +00:00
sun-jre6 Update to 6.0.45 2013-04-25 13:32:12 +00:00
sun-jre7 Add support for Oracle Java 7 (manually installed via Mac OS X builtin 2014-09-03 12:47:37 +00:00
swi-prolog
swi-prolog-jpl Add swi-prolog-jpl version 6.6.5 2014-05-28 10:33:00 +00:00
swi-prolog-lite Update to 6.6.5 2014-05-28 10:29:12 +00:00
swi-prolog-packages Update to 6.6.5 2014-05-28 10:29:12 +00:00
tcl Set USE_GCC_RUNTIME=yes for packages which build shared libraries but do 2014-03-13 11:08:49 +00:00
tcl-expect Set USE_GCC_RUNTIME=yes for packages which build shared libraries but do 2014-03-13 11:08:49 +00:00
tcl-otcl Fix build with TCL 8.6 2014-01-20 19:20:07 +00:00
tcl85 Prevent matching TCL 8.6. 2014-03-17 00:04:43 +00:00
tinyscheme fix the location of the init file for tinyscheme 2014-04-29 19:18:16 +00:00
twelf Resolves: 2013-04-06 20:27:16 +00:00
ucblogo Fix format string, some missing prototypes and the check for signal 2013-07-18 12:05:09 +00:00
umb-scheme Fix build on FreeBSD. 2014-05-12 22:16:54 +00:00
utilisp
vala
vala014 Synchronize DESCR/COMMENT across vala versions, fix typos. 2014-08-09 22:11:01 +00:00
vala018 Synchronize DESCR/COMMENT across vala versions, fix typos. 2014-08-09 22:11:01 +00:00
vala020 Synchronize DESCR/COMMENT across vala versions, fix typos. 2014-08-09 22:11:01 +00:00
vala024 Import vala024-0.24.0 as lang/vala024 (based on vala020). 2014-08-09 22:12:56 +00:00
vscm
vslisp Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
wsbasic Hand in maintainership. 2013-04-13 07:55:01 +00:00
yabasic Update to 2.767 2014-04-11 15:24:34 +00:00
yap Fix build against readline 6.3. 2014-04-21 18:15:32 +00:00
Makefile Add gcc49-libs. 2014-09-04 18:49:45 +00:00