summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-10-21Update for python26-2.6.3.wiz1-3/+3
2009-10-21Fix current_version in dylib target. Bump PKGREVISION.wiz3-6/+7
2009-10-21s/open-vm-tools-2009.09.18.193784/open-vm-tools-2009.10.15.201664/.taca1-2/+2
2009-10-21Note update of databases/unixodbc package to 2.2.14nb2.taca1-1/+2
2009-10-21Try to fix some pthread problems detected on NetBSD 4.0_STABLEtaca8-3/+154
(and may be later). * When connecting a SQL server, isql crashed. isql: Error detected by libpthread: Unlocking unlocked mutex. * Setting "Threding = 0" in odbcinst.ini, isql crashed when closing connection to a SQL server. isql: Error detected by libpthread: Destroying locked mutex. I've checked mutex handling and created patches. Bump PKGREVISION.
2009-10-21Remove two __sgi ifdefs that have been migrated in pkgsrc fromwiz3-33/+1
before python24. Please report if they were still necessary, including errors, so we can upstream them.
2009-10-21Remove obsolete patch, a version of this was obviously integratedwiz2-15/+1
upstream.
2009-10-20audio/ncmpc updated to 0.15jakllsch2-3/+3
2009-10-20Update ncmpc to 0.15.jakllsch3-7/+8
Changes since 0.14: * added the "lyrics-autosave" option * added CMD_SELECT_PLAYING * display song duration in the playlist * added the "hardware_cursor" option * show plugin error messages on the screen * fixed NULL pointer dereference when not yet connected * new translation: Hebrew
2009-10-20Updated audio/libmpd to 0.19.0joerg2-3/+3
2009-10-20Updated audio/gmpc to 0.19.1joerg2-3/+3
2009-10-20Update to gmpc-0.19.1:joerg6-52/+81
- bugfixes - usability improvements
2009-10-20Update to libmpd-0.19.0:joerg2-8/+7
- bufixes
2009-10-20Add a buildlink3.mk file for gsoapagc1-0/+12
2009-10-20Updated lang/python26 to 2.6.3wiz2-3/+3
2009-10-20Update to 2.6.3:wiz3-10/+19
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-20Updated multimedia/libtheora-docs to 1.1.1wiz1-1/+2
2009-10-20Updated multimedia/libtheora to 1.1.1wiz2-3/+3
2009-10-20Update libtheora* to 1.1.1:wiz4-11/+9
libtheora 1.1.1 (2009 October 1) - Fix problems with MSVC inline assembly - Add the missing encoder_disabled.c to the distribution - build updates: autogen.sh should work better after switching systems and the MSVC project now defaults to the dynamic runtime library - Namespace some variables to avoid conflicts on wince. libtheora 1.1.0 (2009 September 24) - Fix various small issues with the example and telemetry code - Fix handing a zero-byte packet as the first frame - Documentation cleanup - Two minor build fixes libtheora 1.1beta3 (2009 August 22) - Rate control fixes to smooth quality - MSVC build now exports all of the 1.0 api - Assorted small bug fixes libtheora 1.1beta2 (2009 August 12) - Fix a rate control problem with difficult input - Build fixes for OpenBSD and Apple Xcode - Examples now all use the 1.0 api - TH_ENCCTL_SET_SPLEVEL works again - Various bug fixes and source tree rearrangement libtheora 1.1beta1 (2009 August 5) - Support for two-pass encoding - Performance optimization of both encoder and decoder - Encoder supports dynamic adjustment of quality and bitrate targets - Encoder is generally more configurable, and all rate control modes perform better - Encoder now accepts 4:2:2 and 4:4:4 chroma sampling - Decoder telemetry output shows quantization choice and a breakdown of bitrate usage in the frame - MSVC assembly optimizations up to date and functional libtheora 1.1alpha2 (2009 May 26) - Reduce lambda for small quantizers. - New encoder fDCT does better on smooth gradients - Use SATD for mode decisions (1-2% bitrate reduction) - Assembly rewrite for new features and general speed up - Share code between the encoder and decoder for performance - Fix 4:2:2 decoding and telemetry - MSVC project files updated, but assembly is disabled. - New configure option --disable-spec to work around toolchain detection failures. - Limit symbol exports on MacOS X. - Port remaining unit tests from the 1.0 release. libtheora 1.1alpha1 (2009 March 27) - Encoder rewrite with much improved vbr quality/bitrate and better tracking of the target rate in cbr mode. - MSVC project files do not work in this release.
2009-10-20Updated net/clive to 2.2.7wiz2-3/+3
2009-10-20Update to 2.2.7:wiz2-6/+6
Version 2.2.7 (September 29, 2009) User-visible changes: * Fix: dailymotion id parsing * Youtube: # Accept -f fmt34 # fmt34 is now treated as yet another (new?) format # Rewrite youtube section of the FORMATS in the manual * Fix: --format=best not working with youtube (closes issue #39) # Thanks to Peter Baranyi for the fix Known issues: * redtube: broken (verify -> http/404) Version 2.2.6 (September 14, 2009) User-visible changes: * Fix: liveleak: "error: Unsupported protocol (http/1)" (closes #36) * Fix: vimeo: title parsing (Thanks to Peter Baranyi for the fix, closes #37) - Fixes title issues with accented chars * Fix: break: http/403 (Thanks to Werner Elsler for the fix, closes #38)
2009-10-20Updated emulators/snes9x-gtk to 1.51.78wiz2-3/+3
2009-10-20Update to 1.51.78:wiz2-7/+7
Changes for version 78 * Fixed an issue where, after failing to load a ROM, the emulator would be paused forever. * Added a toggle to joypad configuration to allow or disallow direct use of modifier keys. * Changed the option to disable screensaver so that it uses XResetScreenSaver and xdg-screensaver due to XTestFakeKeyEvent being removed in the latest X.org release. Changes for version 77 * Added pt_BR translation. [Tiberio Vitor] * Fixed a bug where the sound driver would switch from SDL in the Preferences dialog if one of OSS or PortAudio was not installed.
2009-10-20patch-ad: Don't remove the $(NOOPT) for slamch.f and dlamch.ftnn3-9/+13
Was probably done unintentionally and caused infinite loops on some platforms. Patch from Aleksey Cheusov in PR pkg/38371.
2009-10-20Set app-defaults folder so it is in ${PREFIX} (previously tried to installsborrill3-4/+6
in /usr/lib). Bump PKGREVISION
2009-10-20Added databases/jdbc-postgresql84 version 701abs1-1/+4
Updated databases/jdbc-postgresql83 to 605 Updated databases/jdbc-postgresql82 to 510
2009-10-20Updated databases/jdbc-postgresql82 to 510abs2-9/+9
Version 8.2-510 (2009-07-01) * fix The Statement and Connection proxies used for connection pooling code relied on the underlying real connection and statement code for equals and hashcode support. When the proxies are closed we discard the references to the real objects, so we can't rely on them for this support because we'll get a NullPointerException. (jurka) Thanks to Radu Buzila. * fix Retrieve columns' default values from pg_attrdef.adbin rather than adsrc because adsrc can get out of date when dependent objects are renamed while adbin stays up to date. (jurka) Thanks to Dickson Guedes, Tom Lane. * fix Fix parsing of integer and long data. Some malformed inputs (only a negative sign) got treated as valid data. (jurka) Thanks to Heiiki Linnakangas. * fix Initialize BatchUpdateExceptions with the SQLState of the SQLException that they are wrapping. Code that inspects the SQLStates of SQLExceptions, but doesn't unwrap the nested exception will not understand the underlying cause and may make incorrect decisions about the severity of the error. (jurka) Thanks to Fujii Masao. Version 8.2-509 (2008-11-16) * update Make the build system aware of the 1.7 JDK (which icedtea reports itself as) and add an explicit check and complaint if we find a JDK that we don't support. (jurka) * update Updated German translation. (jurka) Thanks to Andre Bialojahn. * fix Do comparison of identifiers in a known Locale (specificially US). In Turkish for example "id".toLowerCase().equals("ID".toLowerCase()) is false which makes looking up a column name case insensitively a problem. (jurka) Thanks to Mikko Tiihonen. * fix Fix a deadlock that occurs when retrieving notifications. Normal query execution enters the QueryExecutor monitor and then calls a synchronized method in the ProtocolConnection to update the transaction state. Notification retrieval operates in the reverse order, entering the ProtocolConnection monitor and then calling a synchronized method in the QueryExecutor. Remove the QueryExecutor call from ProtocolConnection and make the higher level code responsible for calling it so we always acquire locks in the same order. (jurka) Thanks to Joao Rui Leal. * fix CallableStatement#getUpdateCount was returning 1 when a function returned a ResultSet. Return -1 instead. (jurka) Thanks to Sam Lawrence, Albe Laurenz. * fix Accept UTF8 as an equivalent of UNICODE when trying to detect if client_encoding has changed to something the driver doesn't understand. Don't try to accept every possible spelling (UTF-8) as UTF8 is the server's canonical name and people shouldn't be messing with this anyway. (jurka) * fix Adjust the deadlock avoidance code for the V3 protocol to be concerned with many statements in a single execute call in addition to the existing worry about many statements from an executeBatch call. This doesn't prevent all possible deadlocks as the deadlock avoidance calculation was written for batch execution which should not be returning ResultSets. If many long queries that return significant results are issued with a single execute we will still deadlock. (jurka) * fix DatabaseMetaData.getTypeInfo was reporting whether the type was signed or not, but the output column is really supposed to indicate whether the the type is unsigned or not. (jurka) Thanks to Mythili Gopalakrishnan. * fix Support a parameter (?) for the amount part of the timestampadd function. Previously we only supported literals. (jurka) Thanks to Christophe Janton.
2009-10-20Updated databases/jdbc-postgresql83 to 605abs2-9/+9
Version 8.3-605 (2009-07-01) * fix The Statement and Connection proxies used for connection pooling code relied on the underlying real connection and statement code for equals and hashcode support. When the proxies are closed we discard the references to the real objects, so we can't rely on them for this support because we'll get a NullPointerException. (jurka) Thanks to Radu Buzila. * fix DatabaseMetaData.getColumns was broken for the JDBC 3 and 4 drivers when running against 7.2 or older servers. (jurka) * fix Retrieve columns' default values from pg_attrdef.adbin rather than adsrc because adsrc can get out of date when dependent objects are renamed while adbin stays up to date. (jurka) Thanks to Dickson Guedes, Tom Lane. * fix Fix parsing of integer and long data. Some malformed inputs (only a negative sign) got treated as valid data. (jurka) Thanks to Heiiki Linnakangas. * fix Initialize BatchUpdateExceptions with the SQLState of the SQLException that they are wrapping. Code that inspects the SQLStates of SQLExceptions, but doesn't unwrap the nested exception will not understand the underlying cause and may make incorrect decisions about the severity of the error. (jurka) Thanks to Fujii Masao. Version 8.3-605 (2009-07-01) * fix The Statement and Connection proxies used for connection pooling code relied on the underlying real connection and statement code for equals and hashcode support. When the proxies are closed we discard the references to the real objects, so we can't rely on them for this support because we'll get a NullPointerException. (jurka) Thanks to Radu Buzila. * fix DatabaseMetaData.getColumns was broken for the JDBC 3 and 4 drivers when running against 7.2 or older servers. (jurka) * fix Retrieve columns' default values from pg_attrdef.adbin rather than adsrc because adsrc can get out of date when dependent objects are renamed while adbin stays up to date. (jurka) Thanks to Dickson Guedes, Tom Lane. * fix Fix parsing of integer and long data. Some malformed inputs (only a negative sign) got treated as valid data. (jurka) Thanks to Heiiki Linnakangas. * fix Initialize BatchUpdateExceptions with the SQLState of the SQLException that they are wrapping. Code that inspects the SQLStates of SQLExceptions, but doesn't unwrap the nested exception will not understand the underlying cause and may make incorrect decisions about the severity of the error. (jurka) Thanks to Fujii Masao.
2009-10-20+jdbc-postgresql84abs1-1/+2
2009-10-20Added databases/jdbc-postgresql84 version 701abs4-0/+54
This is a pure Java (Type IV) JDBC driver for the PostgreSQL database. It allows Java programs to connect to a PostgreSQL database using standard, database independent Java code. The driver provides a reasonably complete implementation of the JDBC 3 specification in addition to some PostgreSQL specific extensions.
2009-10-20Avoid installing binaries in /binstacktic1-2/+4
2009-10-20Fix build with dts option:tnn1-2/+5
# The configure handling for --enable-libdca is broken. # However, it works if you omit the argument and let # configure autodetect support.
2009-10-20+ anjuta-2.28.1.0 [GNOME 2.28], aqsis-1.6.0, brasero-2.28.2 [GNOMEwiz1-21/+29
2.28], cairomm-1.8.4, cheese-2.28.1 [GNOME 2.28], empathy-2.28.1 [GNOME 2.28], evince-2.28.1 [GNOME 2.28], evolution-mapi-0.28.1 [GNOME 2.28], gdl-2.28.1 [GNOME 2.28], gnome-control-center-2.28.1 [GNOME 2.28], gnome-packagekit-2.28.1 [GNOME 2.28], gnome-power-manager-2.28.1 [GNOME 2.28, wants DeviceKit-power], gnome-settings-daemon-2.28.1 [GNOME 2.28], gnome-system-tools-2.28.1 [GNOME 2.28], gnome-themes-2.28.1 [GNOME 2.28], gok-2.28.1 [GNOME 2.28], libspectre-0.2.3, mousetweaks-2.28.1 [GNOME 2.28], musicpd-0.15.5, orca-2.28.1 [GNOME 2.28], p5-Carp-Clan-6.03, p5-Date-Calc-6.2, pcre-8.00, rapidsvn-0.12, seahorse-plugins-2.28.1 [GNOME 2.28], vinagre-2.28.1 [GNOME 2.28], vino-2.28.1 [GNOME 2.28], vsftpd-2.2.1.
2009-10-20Fix rapidsvn version.wiz1-2/+2
2009-10-20Fix PKGVERSION.wiz1-1/+2
2009-10-20Note update of databases/ruby-dbi package to 0.4.3nb1.taca1-1/+2
2009-10-20Add dependency to devel/ruby-deprecated which is needed at runtime.taca1-1/+4
Bump PKGREVISION.
2009-10-20Note addition of devel/ruby-deprecated package version 2.0.1.taca1-1/+2
2009-10-20Add and enable ruby-deprecated.taca1-1/+2
2009-10-20Importing devel/ruby-deprecated version 2.0.1.taca4-0/+29
This is a small library intended to aid developers working with deprecated code. The idea comes from the 'D' programming language, where developers can mark certain code as deprecated, and then allow/disallow the ability to execute deprecated code.
2009-10-20Allow USE_JAVA=build (build dependency on jre).obache1-5/+11
2009-10-20Note update of these pacakges.taca1-1/+6
databases/ruby-dbd-mysql databases/ruby-dbd-odbc databases/ruby-dbd-pg databases/ruby-dbd-sqlite databases/ruby-dbd-sqlite3
2009-10-20Fix DEPENDS line to append variable, not set.taca5-15/+20
Bump PKGREVISION.
2009-10-19Updated textproc/mdocml to 1.9.8joerg1-1/+2
2009-10-19Update to mdocml-1.9.8:joerg2-6/+6
- Improvements for various man(7) and mdoc(7) tags - Initial support for scaling factors - HTML output - Much linting
2009-10-19Fix build for SunOS modular x11 (PR#36132)tez3-2/+16
2009-10-19Updated misc/tellico to 1.3.6wiz2-3/+3
2009-10-19Update to 1.3.6:wiz2-7/+6
* Updated Amazon fetcher to use authentication. * Released Tellico 1.3.6
2009-10-19Updated audio/musicpd to 0.15.5joerg1-1/+2
2009-10-19Update to mpd-0.15.5.joerg2-6/+6
- stability improvements - fix memory leaks - fix Vorbis issues - fix Snowleopard build