pkgsrc/lang
wiz 527a343fc6 Update to 2.6.3:
What's New in Python 2.6.3
==========================

*Release date: 02-Oct-2009*

What's New in Python 2.6.3rc1
=============================

*Release date: 29-Sep-2009*

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

- Issue #5329: Fix os.popen* regression from 2.5 with commands as a
  sequence running through the shell.  Patch by Jean-Paul Calderone
  and Jani Hakala.

- Issue #6990: Fix threading.local subclasses leaving old state around
  after a reference cycle GC which could be recycled by new locals.

- Issue #6922: Fix an infinite loop when trying to decode an invalid
  UTF-32 stream with a non-raising error handler like "replace" or "ignore".

- Issue #1590864: Fix potential deadlock when mixing threads and fork().

- Issue #6844: Do not emit DeprecationWarnings when accessing a "message"
  attribute on exceptions that was set explicitly.

- Issue #6846: Fix bug where bytearray.pop() returns negative integers.

- Issue #6707: dir() on an uninitialized module caused a crash.

- Issue #6540: Fixed crash for bytearray.translate() with invalid parameters.

- Issue #6573: set.union() stopped processing inputs if an instance of self
  occurred in the argument chain.

- Issue #6070: On posix platforms import no longer copies the execute bit
  from the .py file to the .pyc file if it is set.

- Issue #4547: When debugging a very large function, it was not always
  possible to update the lineno attribute of the current frame.

- Issue #4618: When unicode arguments are passed to print(), the default
  separator and end should be unicode also.

- Issue #6119: Fixed a incorrect Py3k warning about order comparisons of
  builtin functions and methods.

- Issue #5330: C functions called with keyword arguments were not reported by
  the various profiling modules (profile, cProfile). Patch by Hagen Fürstenau.

- Issue #6089: str.format can raise SystemError with certain invalid
  field specifiers.

- Issue #5994: the marshal module now has docstrings.

- Issue #5981: Fix two minor inf/nan issues in float.fromhex: (1) inf
  and nan strings with trailing whitespace were incorrectly rejected
  and (2) the interpretation of fromhex('-nan') didn't match that of
  float('-nan').

- Issue #5890: in subclasses of 'property' the __doc__ attribute was
  shadowed by classtype's, even if it was None.  property now
  inserts the __doc__ into the subclass instance __dict__.

- Issue #5724: (See also issue #4575.) Fix Py_IS_INFINITY macro to
  work correctly on x87 FPUs: it now forces its argument to double
  before testing for infinity.

- Issue #4971: Fix titlecase for characters that are their own
  titlecase, but not their own uppercase.

- Issue #5829: complex('1e-500') no longer raises an exception

- Issue #5787: object.__getattribute__(some_type, "__bases__") segfaulted on
  some builtin types.

- Issue #5283: Setting __class__ in __del__ caused a segfault.

- Issue #5759: float() didn't call __float__ on str subclasses.

- Issue #5108: Handle %s like %S and %R in PyUnicode_FromFormatV(): Call
  PyUnicode_DecodeUTF8() once, remember the result and output it in a second
  step. This avoids problems with counting UTF-8 bytes that ignores the effect
  of using the replace error handler in PyUnicode_DecodeUTF8().

Library
-------

- Issue #6790: Make it possible again to pass an `array.array` to
  `httplib.HTTPConnection.send`. Patch by Kirk McDonald.

- Issue #6236, #6348: Fix various failures in the `io` module under AIX
  and other platforms, when using a non-gcc compiler. Patch by egreen.

- Issue #6851: Fix urllib.urlopen crash on secondairy threads on OSX 10.6

- Issue #6947: Fix distutils test on windows. Patch by Hirokazu Yamamoto.

- Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...)
  does now always result in NULL.

- Issue #5042: ctypes Structure sub-subclass does now initialize
  correctly with base class positional arguments.

- Issue #6938: Fix a TypeError in string formatting of a multiprocessing
  debug message.

- Issue #6635: Fix profiler printing usage message.

- Issue #6795: int(Decimal('nan')) now raises ValueError instead of
  returning NaN or raising InvalidContext.  Also, fix infinite recursion
  in long(Decimal('nan')).

- Issue #6850: Fix bug in Decimal._parse_format_specifier for formats
  with no type specifier.

- Issue #4937: plat-mac/bundlebuilder revers to non-existing version.plist

- Issue #6838: Use a list to accumulate the value instead of
  repeatedly concatenating strings in httplib's
  HTTPResponse._read_chunked providing a significant speed increase
  when downloading large files servend with a Transfer-Encoding of 'chunked'.

- Issue #6794: Fix Decimal.compare_total and Decimal.compare_total_mag: NaN
  payloads are now ordered by integer value rather than lexicographically.

- Issue #6117: Fix O(n**2) performance degradation when outputting lots of
  small data on a buffered socket.socket.makefile() object.

- Issue #6637: defaultdict.copy() did not work when the default factory
  was left unspecified.  Also, the eval/repr round-trip would fail when
  the default_factory was None.

- Issue #1424152: Fix for httplib, urllib2 to support SSL while working through
  proxy. Original patch by Christopher Li, changes made by Senthil Kumaran.

- Issues #5155, 5313, 5331: multiprocessing.Process._bootstrap was
  unconditionally calling "os.close(sys.stdin.fileno())" resulting in file
  descriptor errors

- Issue #6415: Fixed warnings.warn sagfault on bad formatted string.

- Issue #6344: Fixed a crash of mmap.read() when passed a negative argument.

- Issue #5230: pydoc would report no documentation found if a module generated
  a 'not found' import error when loaded; it now reports the import errors.
  Thanks to Lucas Prado Melo for initial fix and collaboration on the tests.

- Issue #6274: Fixed possible file descriptors leak in subprocess.py

- Issue #6271: mmap tried to close invalid file handle (-1) when annonymous.
  (On Unix)

- Issue #6258: Support AMD64 in bdist_msi.

- Issue #5262: Fixed bug in next rollover time computation in
  TimedRotatingFileHandler.

- Issue #6121: pydoc now ignores leading and trailing spaces in the
  argument to the 'help' function.

- Issue #6050: Don't fail extracting a directory from a zipfile if
  the directory already exists.

- collections.namedtuple() was not working with the following field
  names:  cls, self, tuple, itemgetter, and property.

- Issue #1309352: fcntl now converts its third arguments to a C `long` rather
  than an int, which makes some operations possible under 64-bit Linux (e.g.
  DN_MULTISHOT with F_NOTIFY).

- Issue #1983: Fix functions taking or returning a process identifier to use
  the dedicated C type ``pid_t`` instead of a C ``int``. Some platforms have
  a process identifier type wider than the standard C integer type.

- Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returns the socket.
  Patch by Farhan Ahmad, test by Marcin Bachry.

- Issue #1655: Make imaplib IPv6-capable. Patch by Derek Morr.

- Issue #1664: Make nntplib IPv6-capable. Patch by Derek Morr.

- Issue #5971: StreamHandler.handleError now swallows IOErrors which occur when
  trying to print a traceback.

- Issue 5955: aifc's close method did not close the file it wrapped,
  now it does.  This also means getfp method now returns the real fp.

- Issue #4875: On win32, ctypes.util.find_library does no longer
  return directories.

- Issue #5692: In :class:`zipfile.Zipfile`, fix wrong path calculation when
  extracting a file to the root directory.

- Issue #2245: aifc now skips chunk types it doesn't recognize, per spec.

- Issue #4305: ctypes should now build again on mipsel-linux-gnu

- Issue #5853: calling a function of the mimetypes module from several threads
  at once could hit the recursion limit if the mimetypes database hadn't been
  initialized before.

- Issue #5041: ctypes does now allow pickling wide character.

- Issue #5768: Fixed bug in Unicode output logic and test case for same.

- Issue #1161031: fix readwrite select flag handling: POLLPRI now
  results in a handle_expt_event call, not handle_read_event, and POLLERR
  and POLLNVAL now call handle_close, not handle_expt_event.  Also,
  dispatcher now has an 'ignore_log_types' attribute for suppressing
  log messages, which is set to 'warning' by default.

- Issue #5828 (Invalid behavior of unicode.lower): Fixed bogus logic in
  makeunicodedata.py and regenerated the Unicode database (This fixes
  u'\u1d79'.lower() == '\x00').

- Issue #1202: zipfile module would cause a DeprecationWarning when storing
  files with a CRC32 > 2**31-1.

- Issue #6163: Fixed HP-UX runtime library dir options in
  distutils.unixcompiler. Initial patch by Sridhar Ratnakumar and
  Michael Haubenwallner.

- Issue #4660: If a multiprocessing.JoinableQueue.put() was preempted, it was
  possible to get a spurious 'task_done() called too many times' error.

- Issue #6595: The Decimal constructor now allows arbitrary Unicode
  decimal digits in input, as recommended by the standard.  Previously
  it was restricted to accepting [0-9].

- Issue #6553: Fixed a crash in cPickle.load(), when given a file-like object
  containing incomplete data.

- Issue #2622: Fixed an ImportError when importing email.messsage from a
  standalone application built with py2exe or py2app.

- Issue #6455: Fixed test_build_ext under win32.

- Issue #6403: Fixed package path usage in build_ext.

- Issue #6287: Added the license field in Distutils documentation.

- Issue #6263: Fixed syntax error in distutils.cygwincompiler.

- Issue #5201: distutils.sysconfig.parse_makefile() now understands `$$`
  in Makefiles. This prevents compile errors when using syntax like:
  `LDFLAGS='-rpath=\$$LIB:/some/other/path'`. Patch by Floris Bruynooghe.

- Issue #6062: In distutils, fixed the package option of build_ext. Feedback
  and tests on pywin32 by Tim Golden.

- Issue #1309567: Fix linecache behavior of stripping subdirectories when
  looking for files given by a relative filename.

- Issue #6046: Fixed the library extension when distutils build_ext is used
  inplace. Initial patch by Roumen Petrov.

- Issue #6022: a test file was created in the current working directory by
  test_get_outputs in Distutils.

- Issue #5977: distutils build_ext.get_outputs was not taking into account the
  inplace option. Initial patch by kxroberto.

- Issue #5984: distutils.command.build_ext.check_extensions_list checks were
  broken for old-style extensions.

- Issue #5854: Updated __all__ to include some missing names and remove some
  names which should not be exported.

- Issue #5810: Fixed Distutils test_build_scripts so it uses
  sysconfig.get_config_vars.

- Issue #6865: Fix reference counting issue in the initialization of the pwd
  module.

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

- Issue #6944: Fix a SystemError when socket.getnameinfo() was called
  with something other than a tuple as first argument.

- Issue #6848: Fix curses module build failure on OS X 10.6.

- Fix expat to not segfault with specially crafted input.

- Issue #4873: Fix resource leaks in error cases of pwd and grp.

Build
-----

- Issue #6980: Fix ctypes build failure on armel-linux-gnueabi with
  -mfloat-abi=softfp.

- Issue #6802: Fix build issues on MacOSX 10.6

- Issue 5390: Add uninstall icon independent of whether file
  extensions are installed.

- Issue #6094: Build correctly with Subversion 1.7.

- Issue #5726: Make Modules/ld_so_aix return the actual exit code of the
  linker, rather than always exit successfully. Patch by Floris Bruynooghe.

- Issue 5809: Specifying both --enable-framework and --enable-shared is
  an error. Configure now explicity tells you about this.

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

- Issue #6556: Fixed the Distutils configuration files location explanation
  for Windows.

- Issue #6801 : symmetric_difference_update also accepts |.
  Thanks to Carl Chenet.

Tests
-----

- Issue #5837: Certain sequences of calls to set() and unset() for
  support.EnvironmentVarGuard objects restored the environment variables
  incorrectly on __exit__.
2009-10-20 15:56:49 +00:00
..
a60 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
awka Fixed typo. 2007-08-18 06:03:14 +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 Remove @dirrm entries from PLISTs 2009-06-14 18:03: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.12 2009-09-03 17:29:37 +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 Chicken to 4.2.0. 2009-09-22 11:34:47 +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
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 bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
coq Update lang/coq to 8.2pl1 2009-09-05 20:44:57 +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 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
ecl Update to ECL 9.10.2. Changes since previous package: 2009-10-11 11:15:40 +00:00
eieio PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
elisp-manual Add CONFLICTS line for previous PKGNAME versions. 2008-03-10 10:33:38 +00:00
elk Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
embryo embryo-0.9.9.062: Bump version for 2009/07/29 snapshot of e17. No 2009-09-11 20:24:41 +00:00
erlang Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
erlang-doc Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
erlang-man Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
ezm3 Remove empty PLIST.common_end. 2009-07-22 09:26:26 +00:00
f2c Add the correct header entry for sparcv8. Addresses PR pkg/33997. 2009-06-25 14:22:08 +00:00
focal Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
fort77 Add DESTDIR support. 2008-06-12 02:14:13 +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 Unmark destdir ready, it tries to run a program during install. 2009-10-06 18:30:42 +00:00
gawk Fix build problem for Mac OS X Snow Leopard 64-Bit ABI. 2009-09-23 18:23:05 +00:00
gcc corrected HOMEPAGE URL (old URL no longer exists) 2009-09-20 14:41:52 +00:00
gcc-ssp Remove @dirrm related logic. 2009-06-14 22:57:58 +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 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +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 Fix a number of GENERATE_PLIST entries to always have a terminating ; 2009-06-16 15:25:31 +00:00
gcc34-ada corrected HOMEPAGE URL (old URL no longer exists) 2009-09-20 14:41:52 +00:00
gcc44 Mark as user-destdir ready. 2009-09-25 09:37:57 +00:00
gforth Fix licence (GNU GPLv3). 2009-08-14 22:54:49 +00:00
ghc Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gpc Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gprolog Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
guile Update to 1.8.7, set LICENSE. 2009-08-16 14:00:50 +00:00
guile16 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gwydion-dylan Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
hugs Remove @dirrm related logic. 2009-06-14 22:57:58 +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 Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
ja-gawk Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +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
jbuilder-jit Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
jdk Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
jdk-openjit Remove BROKEN_IN variable. It was no maintained, and there was no 2009-08-25 12:32:54 +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 Mark as destdir ready. 2008-07-14 12:55:56 +00:00
kaffe Add bits for supporting NetBSD on x86_64. 2009-10-19 06:03:16 +00:00
kaffe-esound Remove @dirrm related logic. 2009-06-14 22:57:58 +00:00
kaffe-x11 bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
kali Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
ksi Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
librep Update to librep-0.90.0. Changes: 2009-07-14 10:01:28 +00:00
libtcl-nothread Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
lua Set LICENSE for lua. 2009-07-10 20:30:21 +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 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mawk Remove ex-MASTER_SITE. From Zafer Aydogan. 2007-12-02 00:11:10 +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 delete pkgsrc generated code from patch-ab 2009-10-11 07:49:49 +00:00
mono-basic recursive bump for icu shlib version change except already done. 2009-08-12 02:31:18 +00:00
moscow_ml Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mpd Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
mzscheme Update package list as well. 2009-10-11 13:34:43 +00:00
nawk Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
nhc98 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
objc Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
ocaml Fix PR pkg/42190 2009-10-18 12:47:53 +00:00
ocamlduce Update lang/ocamlduce to 3.11.1.0 [pkg/41696] 2009-09-07 21:53:30 +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 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
openjdk7 set BUILDDIR correctly for DragonFly 2009-10-18 12:30:54 +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 from version 1.5.0 to 1.6.0. 2009-09-20 10:57:04 +00:00
pcc USE_TOOLS+=gmake, same as pcc-current, for the same reason. Fixes PR 38964. 2009-08-01 20:37:05 +00:00
pcc-current Update to the snapshot from 090731. 2009-08-06 06:40:31 +00:00
pear Give up MAINTAINER 2009-07-17 18:00:13 +00:00
perl5 Fix thread library detection on DragonFly. From corecode via PR 42170. 2009-10-13 10:38:31 +00:00
pforth Fix file name after unzip changes. Bump PKGREVISION. 2009-08-29 18:53:57 +00:00
php Remove @dirrm related logic. 2009-06-14 22:57:58 +00:00
php5 Add some infomation in comment about packages which shold be checked 2009-10-09 03:53:06 +00:00
php5-perl This extension embeds Perl Interpreter into PHP. 2009-07-03 07:40:05 +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 Import Poly/ML version 5.2.1 2009-03-20 21:12:51 +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 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +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
python Simplify pattern to detect Mac OS X Intel 64-Bit. 2009-09-25 13:42:26 +00:00
python24 Fixes module names in disabled_module_list 2009-09-19 09:30:41 +00:00
python25 Fixes module names in disabled_module_list 2009-09-19 09:18:53 +00:00
python26 Update to 2.6.3: 2009-10-20 15:56:49 +00:00
rexx-imc Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
rexx-regina Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +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 Commit a change which I forgot to commit. 2009-09-22 13:32:35 +00:00
sablevm Remove @dirrm related logic. 2009-06-14 22:57:58 +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 Relax unnecessarily strict restrictions, SBCL should be portable enough. 2009-09-05 12:38:56 +00:00
scheme48 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
scm Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
see Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +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 bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
SmartEiffel - fix pkglint warnings 2009-08-08 23:32:17 +00:00
smlnj Remove comment about outdated mirror. 2009-09-22 15:07:23 +00:00
snobol Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
spidermonkey Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib 2009-05-20 00:58:05 +00:00
spl Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
squeak Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
sr Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +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 Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
sun-jdk6 Updated lang/sun-jdk6 to 6.0.16 2009-08-22 22:46:01 +00:00
sun-jdk14 Update sun-{jre,jdk}14 to 2.19, a.k.a. 1.4.2_19. 2009-06-25 11:43:41 +00:00
sun-jdk15 Update sun-{jre,jdk}15 to 1.5.0.20. 2009-08-20 08:46:40 +00:00
sun-jre6 Updated lang/sun-jre6 to 6.0.16 2009-08-22 22:39:57 +00:00
sun-jre14 Update sun-{jre,jdk}14 to 2.19, a.k.a. 1.4.2_19. 2009-06-25 11:43:41 +00:00
sun-jre15 Update sun-{jre,jdk}15 to 1.5.0.20. 2009-08-20 08:46:40 +00:00
swi-prolog Use META_PACKAGE 2009-04-08 23:11:13 +00:00
swi-prolog-lite Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
swi-prolog-packages bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +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 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
tcl-itcl-current Get this to build again on NetBSD-5.0/i386. The build was being tripped 2009-10-07 23:58:50 +00:00
tcl-otcl Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
tcl-tclX Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
tcl83 Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
tinyscheme Update for ${DESTDIR} support, and add an explicit license statement to the 2009-07-07 20:35:53 +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 PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
ucblogo Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
umb-scheme Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
utilisp Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
vala bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +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 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
wsbasic Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
yabasic Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
yap Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
Makefile addition of lang/openjdk7 and www/openjdk7-icedtea-plugin 2009-10-14 11:44:29 +00:00