pkgsrc/lang
wiz c76856c53f Update to 2.6.5:
What's New in Python 2.6.5?
===========================

*Release date: 2010-03-18*


What's New in Python 2.6.5 rc 2?
================================

*Release date: 2010-03-09*

Core and Builtins
-----------------

- Issue #8089: a OS X framework build with --with-universal-archs=3-way|intel
  had no way to select a 32-bit executable.

- Issue #8084: fixes build issues on OSX 10.6 when targetting OSX 10.4.

Library
-------

- Reverting the changes made in r78432. Discussed in the tracker issue #7540.

- Issue #8107: Fixed test_distutils so it doesn't crash when the source
  directory cannot be found.

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

- Issue #7670: sqlite3: Fixed crashes when operating on closed connections.

- Issue #8053: logic was inverted on which platforms to run a test on.
  caused test_thread to fail on Windows.


What's New in Python 2.6.5 rc 1?
================================

*Release date: 2010-03-01*

Core and Builtins
-----------------

- Issue #7309: Fix unchecked attribute access when converting
  UnicodeEncodeError, UnicodeDecodeError, and UnicodeTranslateError to
  strings.

- Issue #7649: "u'%c' % char" now behaves like "u'%s' % char" and raises a
  UnicodeDecodeError if 'char' is a byte string that can't be decoded using
  the default encoding.

- Issue #5677: Explicitly forbid write operations on read-only file objects,
  and read operations on write-only file objects.  On Windows, the system C
  library would return a bogus result; on Solaris, it was possible to crash
  the interpreter.  Patch by Stefan Krah.

- Issue #4978: Passing keyword arguments as unicode strings is now allowed.

- Issue #7819: Check sys.call_tracing() arguments types.

- Issue #7788: Fix an interpreter crash produced by deleting a list
  slice with very large step value.

- Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`)
  could crash in many places because of the PyByteArray_AS_STRING() macro
  returning NULL.  The macro now returns a statically allocated empty
  string instead.

- Issue #7604: Deleting an unset slotted attribute did not raise an
  AttributeError.

- Issue #7413: Passing '\0' as the separator to datetime.datetime.isoformat()
  used to drop the time part of the result.

- Issue #6108: unicode(exception) and str(exception) should return the same
  message when only __str__ (and not __unicode__) is overridden in the
  subclass.

- Issue #7491: Metaclass's __cmp__ method was ignored.

- Add Py3k warnings for parameter names in parenthesis.

- Issue #7362: Give a proper error message for def f((x)=3): pass.

- Issue #7085: Fix crash when importing some extensions in a thread
  on MacOSX 10.6.

- Issue #7070: Fix round bug for large odd integer arguments.

- Issue #7078: Set struct.__doc__ from _struct.__doc__.

- Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which
  fixes the problem of some exceptions being thrown at shutdown when the
  interpreter is killed. Patch by Adam Olsen.

- Issue #7084: Fix a (very unlikely) crash when printing a list from one
  thread, and mutating it from another one.  Patch by Scott Dial.

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


Library
-------

- Issue #7250: Fix info leak of os.environ across multi-run uses of
  wsgiref.handlers.CGIHandler.

- Issue #1729305: Fix doctest to handle encode error with "backslashreplace".

- Issue #691291: codecs.open() should not convert end of lines on reading and
  writing.

- Issue #7975: correct regression in dict methods supported by bsddb.dbshelve.

- Issue #7959: ctypes callback functions are now registered correctly
  with the cycle garbage collector.

- Issue #6243: curses.getkey() can segfault when used with ungetch.
  Fix by Trundle and Jerry Chen.

- Issue #7597: curses.use_env() can now be called before initscr().
  Noted by Kan-Ru Chen.

- Issue #7970: email.Generator.flatten now correctly flattens message/rfc822
  messages parsed by email.Parser.HeaderParser.

- Issue #3426: ``os.path.abspath`` now returns unicode when its arg is unicode.

- Issue #7835: shelve should no longer produce mysterious warnings during
  interpreter shutdown.

- Issue #4772: Raise a ValueError when an unknown Bluetooth protocol is
  specified, rather than fall through to AF_PACKET (in the `socket` module).
  Also, raise ValueError rather than TypeError when an unknown TIPC address
  type is specified.  Patch by Brian Curtin.

- Issue #6939: Fix file I/O objects in the `io` module to keep the original
  file position when calling `truncate()`.  It would previously change the
  file position to the given argument, which goes against the tradition of
  ftruncate() and other truncation APIs.  Patch by Pascal Chambon.

- Issue #7773: Fix an UnboundLocalError in platform.linux_distribution() when
  the release file is empty.

- Issue #7748: Since unicode values are supported for some metadata options
  in Distutils, the DistributionMetadata get_* methods will now return an utf-8
  encoded string for them. This ensure that the upload and register commands
  send the right values to PyPI without any error.

- Issue #1670765: Prevent email.generator.Generator from re-wrapping
  headers in multipart/signed MIME parts, which fixes one of the sources of
  invalid modifications to such parts by Generator.

- Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a
  1-byte argument.  Patch by Victor Stinner.

- Issue #3299: Fix possible crash in te _sre module when given bad
  argument values in debug mode.  Patch by Victor Stinner.

- Issue #5827: Make sure that normpath preserves unicode.  Initial patch
  by Matt Giuca.

- Issue #5372: Drop the reuse of .o files in Distutils' ccompiler (since
  ing the .c
  file). Initial patch by Collin Winter.

- Issue #7617: Make sure distutils.unixccompiler.UnixCCompiler recognizes
  gcc when it has a fully qualified configuration prefix. Initial patch
  by Arfrever.

- Issue #7071: byte-compilation in Distue.

- Issue #7092: Remove py3k warning when importing cPickle.  2to3 handles
  renaming of `cPickle` to `pickle`.  The warning was annoying since there's
  no alternative to cPickle if you care about performance.  Patch by Florent
  Xicluna.

- Issue #745tch by
  Victor Stinner.

- Issue #6511: ZipFile now raises BadZipfile (instead of an IOError) when
  opening an empty or very small file.

- Issue #7552: Removed line feed in the base64 Authorization header in
  the Distutils upload command to avoid an ers on long passwords. Initial patch by JP St. Pierre.

- Issue #7231: urllib2 cannot handle https with proxy requiring auth. Patch by
  Tatsuhiro Tsujikawa.

- Issue #7348: StringIO.StringIO.readline(-1) now acts as if it got no argument
  like other file objects.

- Issue #5949: fixed IMAP4_SSL hang when the IMAP server response is
  missing proper end-of-line termination.

- Fix variations of extending deques:  d.extend(d)  d.extendleft(d)  d+=d

- Issue #1923: Fixed the removal of meaningful spaces when PKG-INFO is
  generated in Distutils. Patch by Stephen Emslie.

- Issue #4120: Drop reference to CRT from manifest when building extensions
  with msvc9compiler.

- Issue #7410: deepcopy of itertools.count() erroneously reset the count.

- Issue #7403: logging: Fixed possible race condition in lock creation.

- Issue #7341: Close the internal file object in the TarFile constructor in
  case of an error.

- Issue #7328: pydoc no longer corrupts sys.path when run with the '-m' switch

- Issue #7318: multiprocessing now uses a timeout when it fails to establish
  a connection with another process, rather than looping endlessly. The
  default timeout is 20 seconds, which should be amply sufficient for
  local connections.

- Issue #7282: Fix a memory leak when an RLock was used in a thread other
  than those started through `threading.Thread` (for example, using
  `thread.start_new_thread()`.

- Issue #7264: Fix a possible deadlock when deallocating thread-local objects
  which are part of a reference cycle.

- Issue #7249: Methods of io.BytesIO now allow `long` as well as `int`
  arguments.

- Issue #6665: Fix fnmatch to properly match filenames with newlines in them.

- Issue #1008086: Fixed socket.inet_aton() to always return 4 bytes even on
  LP64 platforms (most 64-bit Linux, bsd, unix systems).

- Issue #7246 & Issue #7208: getpass now properly flushes input before
  reading from stdin so that existing input does not confuse it and
  lead to incorrect entry or an IOError.  It also properly flushes it
  afterwards to avoid the terminal echoing the input afterwards on
  OSes such as Solaris.

- Issue #7244: itertools.izip_longest() no longer ignores exceptions
  raised during the formation of an output tuple.

- Issue #7233: Fix a number of two-argument Decimal methods to make
  sure that they accept an int or long as the second argument.  Also
  fix buggy handling of large arguments (those with coefficient longer
  than the current precision) in shift and rotate.

- Issue #7082: When falling back to the MIME 'name' parameter, the
  correct place to look for it is the Content-Type header.

- Issue #7099: Decimal.is_normal now returns True for numbers with exponent
  larger than emax.

- Issue #7205: Fix a possible deadlock when using a BZ2File object from
  several threads at once.

- Issue #7048: Force Decimal.logb to round its result when that result
  is too large to fit in the current precision.

- Issue #1488943: difflib.Differ() doesn't always add hints for tab characters

- Issue #5037: Proxy the __unicode__ special method to __unicode__ instead of
  __str__.

- Issue #7481: When a threading.Thread failed to start it would leave the
  instance stuck in initial state and present in threading.enumerate().

- Issue #1068268: The subprocess module now handles EINTR in internal
  os.waitpid and os.read system calls where appropriate.

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

- Issue #7808: Fix reference leaks in _bsddb and related tests.

- Stop providing crtassem.h symbols when compiling with Visual Studio 2010, as
  msvcr100.dll is not a platform assembly anymore.

- Issue #6877: Make it possible to link the readline extension to libedit
  on OSX.

- Expat: Fix DoS via XML document with malformed UTF-8 sequences
  (CVE_2009_3560).

- Issue #7242: On Solaris 9 and earlier calling os.fork() from within a
  thread could raise an incorrect RuntimeError about not holding the import
  lock.  The import lock is now reinitialized after fork.

- Issue #7999: os.setreuid() and os.setregid() would refuse to accept a -1
  parameter on some platforms such as OS X.

Build
-----

- Issue #3920, #7903: Define _BSD_SOURCE on OpenBSD 4.4 through 4.9.

- Issue #7661: Allow ctypes to be built from a non-ASCII directory path.
  Patch by Florent Xicluna.

- Issue #7589: Only build the nis module when the correct header files are
  found.

- Switch to OpenSSL 0.9.8l on Windows.

- Issue #6603: Change READ_TIMESTAMP macro in ceval.c so that it
  compiles correctly under gcc on x86-64.  This fixes a reported
  problem with the --with-tsc build on x86-64.

- Ensure that it possible to build extensions for the default
  binary distribution on OSX 10.6 even when the user does not
  have the 10.4u SDK installed.

- Issue #7541: when using ``python-config`` with a framework install the
  compiler might use the wrong library.

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

- Updating `Using Python` documentation to include description of CPython's
  -J, -U and -X options.

- Update python manual page (options -B, -O0, -s, environment variables
  PYTHONDONTWRITEBYTECODE, PYTHONNOUSERSITE).

Tests
-----

- issue #7728: test_timeout was changed to use test_support.bind_port
  instead of a hard coded port.

- Issue #7498: test_multiprocessing now uses test_support.find_unused_port
  instead of a hardcoded port number in test_rapid_restart.

- Issue #7431: use TESTFN in test_linecache instead of trying to create a
  file in the Lib/test directory, which might be read-only for the
  user running the tests.

- Issue #7324: add a sanity check to regrtest argument parsing to
  catch the case of an option with no handler.

- Issue #7295: Do not use a hardcoded file name in test_tarfile.

- Issue #7270: Add some dedicated unit tests for multi-thread synchronization
  primitives such as Lock, RLock, Condition, Event and Semaphore.

- Issue #7055: test___all__ now greedily detects all modules which have an
  __all__ attribute, rather than using a hardcoded and incomplete list.
2010-05-02 14:09:11 +00:00
..
a60 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
awka DESTDIR support 2010-02-03 23:27:52 +00:00
baci Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
brandybasic Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
bwbasic Set HOMEPAGE. 2010-03-03 12:38:28 +00:00
caml-light Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
camlp5 Update lang/camlp5 to 5.13 2010-04-24 18:40:43 +00:00
ccsh Mechanical changes to add DESTDIR support to packages that install 2008-03-04 16:38:11 +00:00
cdl3 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
Cg-compiler Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
chicken Update to Chicken 4.4.0. 2010-03-15 03:43:51 +00:00
cim Add DESTDIR support. 2008-06-12 02:14:13 +00:00
cint Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
clang update to 2.7 2010-04-27 15:12:08 +00:00
classpath Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
classpath-gui bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
clisp Add patch-ab (clx fix) to distinfo. 2010-04-14 13:10:33 +00:00
coq Support staged installation. 2009-12-12 21:12:43 +00:00
cparser Update to 0.9.9. 2009-08-18 19:01:26 +00:00
cu-prolog Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
drscheme Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
eag Pass down --x-includes/--x-libraries for modular Xorg too. 2009-11-26 16:40:55 +00:00
ecl Recursive revision bump for GMP update, 2nd part. 2010-03-24 21:54:15 +00:00
eieio Doesn't support Emacs 23. 2010-02-16 20:21:57 +00:00
elisp-manual Add user-destdir support. 2010-02-20 12:27:22 +00:00
elk Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
embryo Update to embryo-0.9.9.063: Minor bugfixes. 2009-12-16 19:30:31 +00:00
erlang CVE-2008-2371 pcro buffer overflow fix based on: 2010-04-17 20:10:16 +00:00
erlang-doc Fix PLIST. 2009-12-21 12:07:27 +00:00
erlang-man Follow Erlang/OTP update to R13B03. 2009-12-15 13:07:52 +00:00
ezm3 Remove empty PLIST.common_end. 2009-07-22 09:26:26 +00:00
f2c Pass -arch argument correctly to the compiler; fixes building on Mac OS X 2010-01-10 20:17:49 +00:00
focal patch getline() -> get_line() for -current (thank you PSOIX) 2010-04-29 00:22:02 +00:00
fort77 Don't run tests at build time. Fixes PR pkg/42955 2010-03-11 18:55:34 +00:00
g95 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gambc Make it build on DragonFly and (probably) FreeBSD. 2009-07-20 18:18:10 +00:00
gauche Allow rpath into WRKSRC, the package knows about relinking itself. 2010-02-25 19:07:53 +00:00
gawk Compile with -D_OSF_SOURCE on Tru64. Closes PR pkg/42476. 2009-12-20 23:03:15 +00:00
gcc corrected HOMEPAGE URL (old URL no longer exists) 2009-09-20 14:41:52 +00:00
gcc3 corrected HOMEPAGE URL (old URL no longer exists) 2009-09-20 14:41:52 +00:00
gcc3-ada Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gcc3-c Fix a number of GENERATE_PLIST entries to always have a terminating ; 2009-06-16 15:25:31 +00:00
gcc3-c++ Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gcc3-f77 Support DESTDIR. 2009-11-07 18:03:55 +00:00
gcc3-java Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gcc3-objc Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gcc34 Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
gcc34-ada corrected HOMEPAGE URL (old URL no longer exists) 2009-09-20 14:41:52 +00:00
gcc44 Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
gforth Recursive bump for libltdl 2009-12-15 23:41:45 +00:00
ghc Recursive revision bump for GMP update, 2nd part. 2010-03-24 21:54:15 +00:00
gpc DESTDIR support. 2010-02-14 06:58:25 +00:00
gprolog Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
guile Enhance gc_os_dep.c patch for Solaris. From Marion Hakanson on 2010-04-18 00:31:55 +00:00
guile16 Recursive bump for libltdl 2009-12-15 23:41:45 +00:00
gwydion-dylan Not MAKE_JOBS_SAFE: 2010-04-28 23:31:57 +00:00
hugs Use copy and manual messing with the package.conf in the DESTDIR case. 2010-01-29 18:52:09 +00:00
icon honour PKGMANDIR 2009-09-21 16:38:08 +00:00
inform Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
intercal "flex" apparently changed its behavior wrt "yylineno": If invoked 2010-01-02 12:49:43 +00:00
ja-gawk * add user-destdir support 2010-02-20 08:14:44 +00:00
jamvm Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
japhar Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
jasmin Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
java-lang-spec Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
java-vm-spec Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
jikes Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
jini Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
joos Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
js add license information to the package Makefile 2010-04-19 06:16:40 +00:00
kaffe Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
kaffe-esound Recursive bump for libltdl 2009-12-15 23:41:45 +00:00
kaffe-x11 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
kali Use new ${LP64PLATFORMS} variable to restrict platforms instead of manual 2010-01-07 07:36:53 +00:00
ksi Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
librep Recursive revision bump for GMP update, 2nd part. 2010-03-24 21:54:15 +00:00
libtcl-nothread Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
likepython Added one forgotten installation directory. 2010-03-03 12:25:16 +00:00
lua Fix build with new libtool by specifying --tag=CC in all calls. 2009-12-17 16:42:45 +00:00
LuaJIT Only for i386. 2009-08-03 12:20:16 +00:00
lush Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
maude Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
mawk forgot to remove patches. 2010-04-20 19:25:16 +00:00
mercury Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
minischeme Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mit-scheme-bin Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mono Update to 2.6.4, a bugfix release. From Changelog: 2010-04-29 08:44:30 +00:00
mono-basic Update to mono-basic 2.6.2, bugfix version on 2.6 branch 2010-04-09 15:48:17 +00:00
moscow_ml Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mpd DESTDIR support. 2010-03-03 13:31:53 +00:00
mzscheme Update to MzScheme 4.2.4 2010-01-31 20:24:38 +00:00
nawk Reset maintainer, developer lost his commit bit. 2010-03-21 16:29:38 +00:00
nhc98 Use new ${LP64PLATFORMS} variable to restrict platforms instead of manual 2010-01-07 07:36:53 +00:00
objc Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
ocaml Remove patch that was removed from distinfo during update to 3.11.2. 2010-04-22 07:01:13 +00:00
ocamlduce Update HOMEPAGE. 2010-02-07 12:55:29 +00:00
onyx Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
oo2c Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
opencobol Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
openjdk7 Assert OWNERship for legal reasons. 2010-02-11 09:44:26 +00:00
openjdk7-bin Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
ossp-js Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
p2c DESTDIR support. Fix getline issues. 2009-09-03 13:14:10 +00:00
parrot Update parrot from version 2.2.0 to 2.3.0. 2010-04-23 14:08:17 +00:00
pcc Add platform list based on configure.ac. 2010-03-17 19:26:54 +00:00
pcc-current Update to the snapshot from 090731. 2009-08-06 06:40:31 +00:00
pear Remove one more php4 part. 2010-03-15 16:50:15 +00:00
perl5 Resolve building problem on SunOS and SPARC. 2010-04-01 22:03:09 +00:00
pfe Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
pforth Mark as generally not 64bit safe. Assumes int32 ~= void *. 2010-02-15 16:41:46 +00:00
php add support for PHP 5.2.*-only packages 2010-03-21 11:07:37 +00:00
php5 Add patch for php-xmlrpc to fix CVE-2010-0397 security problem. 2010-03-27 06:23:13 +00:00
php5-perl Restrict to php5 with PHP_VERSION_REQD. 2010-03-16 11:56:22 +00:00
php53 Explicitly set PKGNAME to handle PKG_OPTIONS properly, noted by 2010-04-16 15:19:23 +00:00
pict Not MAKE_JOBS_SAFE. 2009-12-07 22:56:02 +00:00
pnet NetBSD/amd64 is not supported by the internal libffi, so mark it 2009-07-06 22:17:14 +00:00
pnetC Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
pnetlib Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
pnetlib-nox11 Update dotgnu Portable.Net packages to 0.8.0: 2008-02-18 16:39:43 +00:00
polyml Update to Poly/ML Version 5.3 2009-12-13 23:26:25 +00:00
py-basicproperty Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
py-html-docs Remove empty PLIST.pre. 2009-07-22 09:28:15 +00:00
py-psyco Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
py-pyrex Update to 0.9.9, set LICENSE. 2010-05-02 13:51:44 +00:00
py24-html-docs Remove empty PLIST.pre. 2009-07-22 09:28:15 +00:00
py25-html-docs Remove empty PLIST.pre. 2009-07-22 09:28:15 +00:00
py26-html-docs Imported py26-html-docs-2.6.3: 2009-10-25 23:39:01 +00:00
python Adjust to new version of Python 2.5 (pointed out by Dennis den Brok in 2010-04-07 22:20:54 +00:00
python24 Added LICENSE information for Python. The license was approved by OSI 2010-01-21 16:28:51 +00:00
python25 Update to 2.5.5, a minor security fix release with very few changes relative to 2.5.4. 2010-04-07 14:57:49 +00:00
python26 Update to 2.6.5: 2010-05-02 14:09:11 +00:00
rcfunge NetBSD<5.99's curses has a wrong keypad(3) declaration, use pkgsrc 2009-12-01 10:36:58 +00:00
rexx-imc DESTDIR support 2010-02-04 01:32:00 +00:00
rexx-regina DESTDIR support 2010-02-04 01:32:00 +00:00
ruby Update Ruby packages to 1.8.7.174 (1.8.7-p174). 2009-06-16 15:08:38 +00:00
ruby-doc-stdlib Remove empty PLIST.pre. 2009-07-22 09:30:39 +00:00
ruby18 Switch to use META_PACKAGE. No functional change. 2008-01-06 15:45:12 +00:00
ruby18-base Fix a small problem by precious webrick security fix from Ruby's 2010-01-14 15:07:28 +00:00
sablevm Recursive bump for libltdl 2009-12-15 23:41:45 +00:00
sablevm-classpath Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
sablevm-classpath-gui bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
sather Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
sbcl Update to SBCL 1.0.38 2010-05-01 17:01:20 +00:00
scala Fix DESTDIR 2010-02-03 13:01:04 +00:00
scheme48 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
scm DESTDIR support 2010-02-04 01:32:00 +00:00
see add licensing information 2010-04-19 06:24:33 +00:00
sigscheme Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
siod Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
smalltalk * fixes build with gmp-5 (patch-ai). 2010-04-09 01:54:20 +00:00
SmartEiffel - fix pkglint warnings 2009-08-08 23:32:17 +00:00
smlnj Update to SML/NJ 110.72, bug fix release. 2010-02-07 03:14:36 +00:00
snobol Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
spidermonkey use pkg-config to locate nspr 2010-01-16 15:04:32 +00:00
spl Reset maintainer, mail bounced 2010-03-02 15:13:48 +00:00
squeak Update to Squeak 4.0 2010-03-19 14:41:56 +00:00
squeak-vm Import Squeak VM 3.11.3 revision 2135 as lang/squeak-vm. 2010-02-11 00:58:19 +00:00
sr De-warn-ify. 2010-03-03 15:23:51 +00:00
sr-examples Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
stalin Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
STk Not MAKE_JOBS_SAFE. 2010-03-17 15:12:23 +00:00
sun-jdk6 Updated lang/sun-jdk6 to 6.0.17 2009-11-22 19:31:04 +00:00
sun-jre6 Allow build on DragonFly. From PR 43085 2010-03-31 02:35:05 +00:00
swi-prolog Use META_PACKAGE 2009-04-08 23:11:13 +00:00
swi-prolog-lite Recursive revision bump for GMP update, 2nd part. 2010-03-24 21:54:15 +00:00
swi-prolog-packages Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
tcl Add 'clean' to PRIVILEGED_STAGES. 2009-09-12 17:57:40 +00:00
tcl-expect Fix argument order when calling libtool. 2009-09-09 17:18:18 +00:00
tcl-itcl Fix some issues where DESTDIR ended up included twice... 2010-02-11 13:44:02 +00:00
tcl-itcl-current Redo DESTDIR support 2010-02-11 13:58:05 +00:00
tcl-otcl Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
tcl-tclX Fix patch so that -Wl,-R and the path are one option. 2010-02-25 19:53:55 +00:00
tinyscheme Just use our CC, don't override it. Helps libtool-2.2. 2009-11-26 00:48:58 +00:00
tk-expect Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
tk-tclX Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
twelf DESTDIR support 2010-02-04 01:21:39 +00:00
ucblogo Support staged installation. 2009-12-10 23:42:14 +00:00
umb-scheme Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
utilisp Not MAKE_JOBS_SAFE, but in a very simple way, so just patch it. 2010-04-28 23:42:38 +00:00
vala Use MASTER_SITE_GNOME for MASTER_SITES. 2010-03-10 12:36:25 +00:00
vscm Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
vslisp Support staged installation. 2009-12-12 21:36:55 +00:00
wsbasic Update to 1_2_7, from <wenheping@gmail.com> via PR pkg/42845. 2010-02-19 14:06:19 +00:00
yabasic DESTDIR support 2010-02-04 01:32:00 +00:00
yap Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
Makefile Sort. 2010-03-18 09:19:40 +00:00