pkgsrc/lang
snj 927c2711ab Update python25 to 2.5.4. Spammy changes:
What's New in Python 2.5.4?
===========================

*Release date: 23-Dec-2008*

Core and builtins
-----------------

- Revert patch for #1706039, as it can crash the interpreter.

- Added test case to ensure attempts to read from a file opened for writing
  fail.


What's New in Python 2.5.3?
===========================

*Release date: 19-Dec-2008*


Build
-----

- In the OSX installer, update SQLite to 3.6.7, and change bsddb URL.
  Build against system Tcl framework.

What's New in Python 2.5.3c1?
=============================

*Release date: 13-Dec-2008*

Core and builtins
-----------------

- Issue #1706039: Support continued reading from a file even after
  EOF was hit.

- Issue #1683: prevent forking from interfering in threading storage.

- Issue #4597: Fixed several opcodes that weren't always propagating
  exceptions.

- Issue #4589: Propagated an exception thrown by a context manager's
  __exit__ method's result while it's being converted to bool.

- Issue #4317: Fixed a crash in the imageop.rgb2rgb8() function.

- Issue #4230: If ``__getattr__`` is a descriptor, it now functions correctly.

- Issue #4048: The parser module now correctly validates relative imports.

- Issue #4176: Fixed a crash when pickling an object which ``__reduce__``
  method does not return iterators for the 4th and 5th items.

- Issue #3967: Fixed a crash in the count() and find() methods of string-like
  objects, when the "start" parameter is a huge value.

- Issue #3936: The parser warnings for using "as" and "with" as variable names
  didn't fire after import statements.

- Issue #3751: str.rpartition would perform a left-partition when called with
  a unicode argument.

- Issue #3537: Fix an assertion failure when an empty but presized dict
  object was stored in the freelist.

- Apply security patches from Apple.

- Issue #2620: Overflow checking when allocating or reallocating memory
  was not always being done properly in some python types and extension
  modules.  PyMem_MALLOC, PyMem_REALLOC, PyMem_NEW and PyMem_RESIZE have
  all been updated to perform better checks and places in the code that
  would previously leak memory on the error path when such an allocation
  failed have been fixed.

- Issue #2242: Fix a crash when decoding invalid utf-7 input on certain
  Windows / Visual Studio versions.

- Issue #3360: Fix incorrect parsing of '020000000000.0', which
  produced a ValueError instead of giving the correct float.

- Issue #3242: Fix a crash inside the print statement, if sys.stdout is
  set to a custom object whose write() method happens to install
  another file in sys.stdout.

- Issue #3088: Corrected a race condition in classes derived from
  threading.local: the first member set by a thread could be saved in
  another thread's dictionary.

- Issue #3100: Corrected a crash on deallocation of a subclassed weakref which
  holds the last (strong) reference to its referent.

- Issue #1686386: Tuple's tp_repr did not take into account the possibility of
  having a self-referential tuple, which is possible from C code.  Nor did
  object's tp_str consider that a type's tp_str could do something that could
  lead to an inifinite recursion.  Py_ReprEnter() and Py_EnterRecursiveCall(),
  respectively, fixed the issues.  (Backport of r58288 from trunk.)

- Patch #1442: properly report exceptions when the PYTHONSTARTUP file
  cannot be executed.

- The compilation of a class nested in another class used to leak one
  reference on the outer class name.

- Issue #1477: With narrow Unicode builds, the unicode escape sequence
  \Uxxxxxxxx did not accept values outside the Basic Multilingual Plane.  This
  affected raw unicode literals and the 'raw-unicode-escape' codec.  Now
  UTF-16 surrogates are generated in this case, like normal unicode literals
  and the 'unicode-escape' codec.

- Issue #2321: use pymalloc for unicode object string data to reduce
  memory usage in some circumstances.

- Issue #2238: Some syntax errors in *args and **kwargs expressions could give
  bogus error messages.

- Issue #2587: In the C API, PyString_FromStringAndSize() takes a signed size
  parameter but was not verifying that it was greater than zero.  Values
  less than zero will now raise a SystemError and return NULL to indicate a
  bug in the calling C code.

- Issue #2588, #2589: Fix potential integer underflow and overflow
  conditions in the PyOS_vsnprintf C API function.

- Issue #1204: The configure script now tests for additional libraries
  that may be required when linking against readline.  This fixes issues
  with x86_64 builds on some platforms (a few Linux flavors and OpenBSD).

- Issue #3678: Correctly pass LDFLAGS and LDLAST to the linker on shared
  library targets in the Makefile.

Library
-------

- Issue #3767: Convert Tk object to string in tkColorChooser.

- Issue #4342: Always convert Text.index result to string.

- Issue 3248: Allow placing ScrolledText in a PanedWindow.

- Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to
  give correct results in the case where one argument is a quiet NaN
  and the other is a finite number that requires rounding.

- Issue #1776581 and #4302. Minor corrections to smtplib.

- Issue #3774: Fixed an error when create a Tkinter menu item without command
  and then remove it.

- Assigning methods to ctypes.Structure and ctypes.Union subclasses
  after creation of the class does now work correctly.  See Issue #1700288.

- Issue #3895: _lsprof could be crashed with an external timer that did not
  return a float when a Profiler object is garbage collected.

- Issues #3968 and #3969: two minor turtle problems.

- Issue #3547: Fixed ctypes structures bitfields of varying integer
  sizes.

- Issue #3762: platform.architecture() fails if python is lanched via
  its symbolic link.

- Issue #3554: ctypes.string_at and ctypes.wstring_at did call Python
  api functions without holding the GIL, which could lead to a fatal
  error when they failed.

- Issue #2234: distutils failed for some versions of the cygwin compiler. The
  version reported by these tools does not necessarily follow the python
  version numbering scheme, so the module is less strict when parsing it.

- Issue #2222: Fixed reference leak when occured os.rename()
  fails unicode conversion on 2nd parameter. (windows only)

- Issue #3134: shutil referenced undefined WindowsError symbol.

- Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated to
  menu entries were not deleted.

- Issue #799428: Fix Tkinter.Misc._nametowidget to unwrap Tcl command objects.

- Issue #3339: dummy_thread.acquire() could return None which is not a valid
  return value.

- Issue #3116 and #1792:  Fix quadratic behavior in marshal.dumps().

- Issue #2682: ctypes callback functions no longer contain a cyclic
  reference to themselves.

- Issue #2670:  Fix a failure in urllib2.build_opener(), when passed two
  handlers that derive the same default base class.

- Issue #2495: tokenize.untokenize now inserts a space between two consecutive
  string literals; previously, ["" ""] was rendered as [""""], which is
  incorrect python code.

- Issue #2482: Make sure that the coefficient of a Decimal is always
  stored as a str instance, not as a unicode instance.  This ensures
  that str(Decimal) is always an instance of str.  This fixes a
  regression from Python 2.5.1 to Python 2.5.2.

- Issue #2478: fix failure of decimal.Decimal(0).sqrt()

- Issue #2432: give DictReader the dialect and line_num attributes
  advertised in the docs.

- Issue #1747858: Fix chown to work with large uid's and gid's on 64-bit
  platforms.

- Bug #2220: handle rlcompleter attribute match failure more gracefully.

- Bug #1725737: In distutil's sdist, exclude RCS, CVS etc. also in the
  root directory, and also exclude .hg, .git, .bzr, and _darcs.

- Bug #1389051: imaplib causes excessive memory fragmentation when reading
  large messages.

- Bug #1389051, 1092502: fix excessively large memory allocations when
  calling .read() on a socket object wrapped with makefile().

- Bug #1433694: minidom's .normalize() failed to set .nextSibling for
  last child element.

- Issue #2791: subprocess.Popen.communicate explicitly closes its
  stdout and stderr fds rather than leaving them open until the
  instance is destroyed.

- Issue #2632: Prevent socket.read(bignumber) from over allocating memory
  in the common case when the data is returned from the underlying socket
  in increments much smaller than bignumber.

- Issue #1857: subprocess.Popen.poll gained an additional _deadstate keyword
  argument in python 2.5, this broke code that subclassed Popen to include its
  own poll method.  Fixed my moving _deadstate to an _internal_poll method.

- Issue #2113: Fix error in subprocess.Popen if the select system call is
  interrupted by a signal.

- Issue #874900: after an os.fork() call the threading module state is cleaned
  up in the child process to prevent deadlock and report proper thread counts
  if the new process uses the threading module.

- Issue #3309: Fix bz2.BZFile iterator to release its internal lock
  properly when raising an exception due to the bz2file being closed.
  Prevents a deadlock.


Extension Modules
-----------------

- Issue #1040026: Fix os.times result on systems where HZ is incorrect.

- Issue #4228: Pack negative values the same way as 2.4 in struct's L format.

- Security Issue #2: imageop did not validate arguments correctly and could
  segfault as a result.

- Issue 3886: [CVE-2008-2316] Possible integer overflow in the _hashopenssl
  module was closed.

- Issue 1179: [CVE-2007-4965] Integer overflow in imageop module.
  Also fixes rgbimg module.

- Issue #3205: When iterating over a BZ2File fails allocating memory, raise
  a MemoryError rather than silently stop the iteration.

- Patch #2111: Avoid mmap segfault when modifying a PROT_READ block.

- zlib.decompressobj().flush(value) no longer crashes the interpreter when
  passed a value less than or equal to zero.

- issue2858: Fix potential memory corruption when bsddb.db.DBEnv.lock_get
  and other bsddb.db object constructors raised an exception.

- Issue #3120: On 64-bit Windows the subprocess module was truncating handles.

- Issue #1471: Arguments to fcntl.ioctl are no longer broken on 64-bit OpenBSD
  and similar platforms due to sign extension.

- Issue #3312: Fix two crashes in sqlite3.


Tests
-----

- Issue #3863: Disabled a unit test of fork being called from a thread
  when running on platforms known to exhibit OS bugs when attempting that.

- Issue #3261: test_cookielib had an improper file encoding specified.

- Patch #2232: os.tmpfile might fail on Windows if the user has no
  permission to create files in the root directory.


Documentation
-------------

Build
-----

- Issue #4368: Don't define _XOPEN_SOURCE on FreeBSD 4.*.
2009-04-11 19:42:23 +00:00
..
a60 Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
awka Fixed typo. 2007-08-18 06:03:14 +00:00
baci Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
brandybasic Switch to INSTALLATION_DIRS 2009-02-13 23:36:00 +00:00
bwbasic DESTDIR support. 2009-03-02 14:27:11 +00:00
caml-light Fix broken 64-bit build. Add destdir support. 2008-09-05 02:07:51 +00:00
camlp5 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
ccsh Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
cdl3 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
Cg-compiler Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
chicken Update chicken to 3.4.0. 2008-10-07 15:28:44 +00:00
cim Add DESTDIR support. 2008-06-12 02:14:13 +00:00
cint Fix broken 64-bit build, and patch makefile to stop on error. There 2008-09-05 05:27:30 +00:00
classpath Supports DESTDIR. 2008-03-13 22:58:17 +00:00
classpath-gui Fix paths for GConf, libglade, libart, libsigc++, lablgtk moves. 2007-09-21 13:03:25 +00:00
clisp Update to clisp-2.47. From Aleksej Saushev via pkgsrc-wip. Changes: 2008-10-27 18:07:23 +00:00
coq Bunp PKGREVISION, as it requires rebuild with ocaml 3.10.2 and cmalp5 5.08 2008-04-27 10:46:16 +00:00
cparser Update to cparser-0.9.7: 2008-12-17 16:59:19 +00:00
cu-prolog Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
drscheme Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +00:00
eag Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +00:00
ecl Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
eieio Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
elisp-manual Add CONFLICTS line for previous PKGNAME versions. 2008-03-10 10:33:38 +00:00
elk Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
embryo Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
erlang Make it compile on DragonFly master. 2009-04-07 18:36:52 +00:00
erlang-doc Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
erlang-man Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
ezm3 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
f2c Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
focal Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
fort77 Add DESTDIR support. 2008-06-12 02:14:13 +00:00
g95 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gambc Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gauche Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gawk Changes 3.1.6: 2007-11-02 07:17:59 +00:00
gcc Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gcc-ssp Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
gcc3 Fix C++ build on NetBSD 5.x. Bump revision of gcc3-c. 2009-02-28 18:37:22 +00:00
gcc3-ada Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gcc3-c Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gcc3-c++ Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gcc3-f77 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gcc3-java Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gcc3-objc Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gcc34 Fix build on NetBSD 5.x using same patch Joerg applied to gcc3. 2009-03-30 10:57:02 +00:00
gcc34-ada Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gforth
ghc Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gpc Added a patch for gcc4. 2008-02-17 10:07:59 +00:00
gprolog Make this configure for NetBSD amd64. While here, add DESTDIR support. 2008-09-07 04:35:41 +00:00
guile support NetBSD's pthread_attr_get_np() which is similar to Linux's 2009-04-07 10:53:07 +00:00
guile16 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gwydion-dylan Add a comment warning that this package can cause bulk builds to hang. 2008-09-07 23:55:41 +00:00
hugs Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
icon Add support for Darwin. Untested by me. 2009-03-07 01:31:45 +00:00
inform Mark as destdir ready. 2008-07-14 12:55:56 +00:00
intercal
ja-gawk
jamvm Update to 1.5.1 and make it build on amd64. Add destdir support. 2008-09-07 06:41:44 +00:00
japhar Make this configure for and build on amd64. 2008-09-07 07:31:35 +00:00
jasmin Correct email address for generic MAINTAINER. 2009-03-17 21:40:44 +00:00
java-lang-spec Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
java-vm-spec Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
jbuilder-jit Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
jdk Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
jdk-openjit give away to pkgsrc-users 2007-03-19 16:36:41 +00:00
jikes Supports DESTDIR. 2007-11-08 18:19:24 +00:00
jini Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
joos Fix MAINTAINER. 2009-03-21 05:43:53 +00:00
js Mark as destdir ready. 2008-07-14 12:55:56 +00:00
kaffe Remove the remaining NO_MTREE definitions, it has been a nop for a 2009-04-08 22:43:23 +00:00
kaffe-esound
kaffe-x11 Fix paths for GConf, libglade, libart, libsigc++, lablgtk moves. 2007-09-21 13:03:25 +00:00
kali Mark this not available on sparc64 and x86_64 as well as alpha; it is 2008-09-06 22:37:04 +00:00
ksi Mark as destdir ready. 2008-07-14 12:55:56 +00:00
librep Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libtcl-nothread Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
lua Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
lush Update to 1.2.1. 2009-01-16 16:35:33 +00:00
maude Convert to user-destdir, and mark as MAKE_JOBS_SAFE=no (latter part 2009-03-06 09:55:30 +00:00
mawk Remove ex-MASTER_SITE. From Zafer Aydogan. 2007-12-02 00:11:10 +00:00
mercury Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
minischeme Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
mit-scheme-bin Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
mono Welcome to mono 2.4 2009-04-07 08:20:42 +00:00
mono-basic Update to mono 2.4 2009-04-07 08:21:19 +00:00
moscow_ml Update to Moscow ML version 2.01 (January 2004) 2008-04-28 10:16:57 +00:00
mpd Fix installation. 2008-04-07 17:43:14 +00:00
mzscheme drop maintainership 2009-03-22 10:33:42 +00:00
nawk Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
nhc98
objc
ocaml Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
ocamlduce Update distinfo file. 2008-10-16 12:55:51 +00:00
onyx Removed ONLY_FOR_PLATFORM, which was meant to exclude very early NetBSD 2007-11-07 07:40:19 +00:00
oo2c Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
opencobol Add DESTDIR support. 2008-06-20 01:09:05 +00:00
openjdk7-bin Add a buildlink file for the java vm framework 2009-04-10 09:09:37 +00:00
ossp-js Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
p2c
parrot Update from version 0.4.11nb1 to 1.0.0. 2009-03-25 23:01:48 +00:00
pcc Update pcc to 0.9.9. 2008-02-09 14:53:14 +00:00
pcc-current Import a package which can be used to track "pcc current". 2008-03-02 12:13:38 +00:00
pear Fix some pkglint warnings 2008-12-20 14:42:50 +00:00
perl5 Fix PR pkg/40944 by using the Module::Build from Perl's Core as default. 2009-03-21 23:11:29 +00:00
pforth Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
php Allow a directory to be excluded from PEAR_DIRRM by specifying PEAR_DIRRM_EXCLUDE 2009-01-19 19:55:02 +00:00
php5 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
pnet Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
pnetC Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
pnetlib Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
pnetlib-nox11 Update dotgnu Portable.Net packages to 0.8.0: 2008-02-18 16:39:43 +00:00
polyml Import Poly/ML version 5.2.1 2009-03-20 21:12:51 +00:00
py-basicproperty Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-funge Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-html-docs Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
py-psyco Remove PYBINMODULE. All it did was mark some packages as not available 2009-03-05 18:51:26 +00:00
py-pyrex Update to Pyrex-0.8.9.5. Myriad bug fixes and some new features; 2008-10-17 12:46:18 +00:00
py22-html-docs Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
py23-html-docs Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
py24-html-docs Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
py25-html-docs Add HTML documentation for Python 2.5 2008-06-03 16:23:24 +00:00
python Update python25 to 2.5.4. Spammy changes: 2009-04-11 19:42:23 +00:00
python23 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
python24 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
python25 Update python25 to 2.5.4. Spammy changes: 2009-04-11 19:42:23 +00:00
rexx-imc Remove Ex-MASTER_SITE. From Zafer Aydogan. 2007-12-02 12:11:59 +00:00
rexx-regina
ruby Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
ruby-doc-stdlib Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
ruby18 Switch to use META_PACKAGE. No functional change. 2008-01-06 15:45:12 +00:00
ruby18-base Apply patch from Ruby's repository, revision 22440. 2009-02-20 12:32:26 +00:00
sablevm Remove the remaining NO_MTREE definitions, it has been a nop for a 2009-04-08 22:43:23 +00:00
sablevm-classpath Remove the remaining NO_MTREE definitions, it has been a nop for a 2009-04-08 22:43:23 +00:00
sablevm-classpath-gui Add DESTDIR support. 2008-06-20 01:09:05 +00:00
sather There are a handful of Linux-specific files. 2008-07-14 02:38:08 +00:00
sbcl Fix typo in SED pattern. 2008-06-25 23:42:19 +00:00
scheme48 lang/gambc and lang/scheme48 are conflict with bin/scheme-r5rs. 2008-08-31 09:17:56 +00:00
scm Update scm to 5.5.3 a.k.a 5e3. 2007-08-02 14:47:24 +00:00
see Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
sigscheme Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
siod Add destdir support and mark not make jobs safe. 2008-08-28 13:15:27 +00:00
smalltalk Update to GNU Smalltalk 3.1. 2009-04-10 17:36:42 +00:00
SmartEiffel Mark some packages as not for bulk building on HPUX. 2008-05-26 22:37:30 +00:00
smlnj Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
snobol Update to 1.2 release. 2009-01-16 02:37:11 +00:00
spidermonkey Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
spl Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
squeak Set interpreter properly in the bash script this installs. 2008-08-17 04:36:28 +00:00
sr Replaced the deprecated INSTALLATION_DIRS_FROM_PLIST with AUTO_MKDIRS, 2008-02-28 11:58:47 +00:00
sr-examples Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
stalin Mark as not for bulk building on SunOS. 2008-05-26 22:19:40 +00:00
STk Fix broken build caused by invalid shell syntax in a configure script. 2008-09-07 00:23:57 +00:00
sun-jdk6 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
sun-jdk14 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
sun-jdk15 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
sun-jre6 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
sun-jre14 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
sun-jre15 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
swi-prolog Use META_PACKAGE 2009-04-08 23:11:13 +00:00
swi-prolog-lite Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
swi-prolog-packages MAKE_JOBS_SAFE=no 2008-01-30 11:17:43 +00:00
tcl Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
tcl-expect Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
tcl-itcl Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
tcl-itcl-current Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
tcl-otcl Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
tcl-tclX Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
tcl83 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
tinyscheme Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
tk-expect Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
tk-tclX
twelf Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
ucblogo
umb-scheme Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
utilisp Mark this NOT_FOR_PLATFORM on 64-bit platforms; it is severely broken. 2008-08-31 22:48:12 +00:00
vala Patch GTK vapi bug (needed by valide) 2009-03-21 18:03:42 +00:00
vscm Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
vslisp
wsbasic Full DESTDIR support and use REPLACE_INTERPRETER framework instead of SUBST. 2008-01-04 12:17:16 +00:00
yabasic
yap Add DESTDIR support. 2008-06-12 02:14:13 +00:00
Makefile Add polyml. 2009-03-20 22:12:03 +00:00