summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-06-22Update from version 0.31 to 0.33. Changes:he2-6/+6
0.33 Tue 27 May 2008 - Upgrading to Module::Install 0.74 - Bumping Scalar::Util version to 1.18 to get a fixed better looks_like_number - Moved B driver test class to My_B to prevent collision with the B modules 0.32_01 Sat 23 Feb 2008 - Moving 01_compile.t minimum version to 5.005 to match Makefile.PL (Resolves rt.cpan.org #26674) - Removing the deprecated _CALLABLE function
2008-06-22Note update of net/p5-Net-Z3950 to 0.51.he1-1/+2
2008-06-22Update from version 0.32 to 0.51. Changes:he2-8/+8
0.51 Mon May 8 11:55:19 BST 2006 - Deprecation in favour of ZOOM-Perl. - Fix some compiler warnings. - Fix typo in documentation (thanks to Kimmo Valtonen). 0.50 Wed Jul 27 13:28:03 BST 2005 - Correct the ResultSet::present() fix that was supposed to be in the previous release: that code inadvertently always returned undef in asynchronous mode. - "ywpriv.h" now #undefines "list", which the Perl development header files inexplicably and inexcusably #define to "Perl_list". - "ywpriv.h" now #undefines "open", which Solaris 9 #defines (I really can't believe this) to "open64". Maybe Sun would like me to go round their place and dump a load of _my_ crap in _their_ workspace? - New querytype "cql" can be used to pass CQL queries, untranslated, straight through to the server. Use like: $conn->search(cql => "au=(kernighan and richie)") 0.49 Thu Apr 21 11:06:02 BST 2005 - Change to the ResultSet::present() API in asynchronous mode: returns 1 if new requests were queued, 0 if all of the requested records had already been queued. (No changes to its usage in synchronous mode.) - yazwrap/send.c no longer includes <yaz/log.h> (not needed, generates warning) 0.48 Tue Apr 19 22:36:45 2005 - Patches supplied by Jan Bauer Nielsen <jbn@dtv.dk> to interpret otherInformation packets, in search responses, containing a search-info report of subquery counts. - Patches supplied by Myron Turner <mturner@Ms.UManitoba.CA> to protect the Net::Z3950 module against certain classes of badly-behaved server. - Bring "samples/multiplex.pl" up to date, illustrating the use of this module to run sequences of queries against multiple servers in parallel. 0.47 Tue Jan 4 22:15:07 2005 - The "connection refused" condition is now handled more gracefully, so that there is no error message emitted by Event.pm, just an undefined value returned and $! set to ECONNREFUSED. - Improve many of the comments on this subject. 0.46 Mon Nov 22 23:42:40 2004 - Use the MARC::Record module for rendering MARC records instead of the older, unsupported and possibly buggy MARC.pm. WARNING: This change is backwards incompatible, but that incompatibility will only affect you if you're relying on the precise formatting of $rec->render() on MARC records. 0.45 Mon Nov 1 09:13:51 2004 - Support for "charset" and "language" options added by Adam Dickmeiss. 0.44 Fri May 7 18:00:54 2004 Note that this release consists entirely of backwards-incompatible changes to new functionality introduced in 0.43, the previous release. If you use Scan, then all your Scan code must change; if you do not use Scan, then this release will not affect you at all. - Change scan-option names to be ZOOM-compliant. - Introduce a new enumeration, Net::Z3950::ScanStatus - Add a new class, Net::Z3950::ScanSet, representing the results of a Scan operation. This is compliant with the ZOOM Abstract API, and supports much nicer client code than the previous release: $ss = $conn->scan('@attr 1=1003 kern'); $status = $ss->status(); print $ss->errmsg() if $status == Net::Z3950::ScanSet::Failure; $count = $ss->size(); ($term, $hits) = $ss->term(0); The scanResponse APDU, which used to be returned from the scan() method, is still available via the scanResponse() method, but there is no reason for new code to call this. - Complete rewrite of the sample client "scan.pl" to use the new API. 0.43 Thu May 6 14:19:56 2004 - Add support for Scan, using code contributed by Jan Bauer Nielsen <jbn@dtv.dk>, somewhat tidied up. Use it like this: $apdu = $conn->scan('@attr 1=1003 kern'); $status = $apdu->scanStatus(); if ($status == 6) print Dumper($apdu->diag()); $count = $apdu->numberOfEntriesReturned(); $term = $apdu->entries()->[0]->termInfo()->term()->general(); $hits = $apdu->entries()->[0]->termInfo()->globalOccurrences(); Subsequent releases will support more corners of the Scan specification (e.g. displayTerm and friends), and present a much nicer API with a ZOOM-like ScanSet object. See http://zoom.z3950.org/api/zoom-1.4.html#3.6 - Included in the "samples" directory is a simple scanning client program, "scan.pl". 0.42 Wed Mar 31 13:06:09 2004 - Add support for Unix-domain sockets: use "unix" as the hostname, and the path to the socket file as the port, in the connection constructor. Like this: $conn = new Net::Z3950::Connection("unix", "/tmp/socket"); 0.41 Wed Mar 17 13:33:43 2004 - When Net::Z3950::Manager::wait() times out, it now returns an undefined value rather than, as in v0.40, the timeout value. This code is now tested, thanks to Rick Jansen. - Minor changes to some of the logic in ResultSet.pm 0.40 Tue Mar 16 13:57:33 2004 - A timeout may be set for a Net::Z3950::Manager's wait() by setting that manager's "timeout" option to the maximum number of seconds to wait. Donald Knuth once wrote, "Beware: this code has not been tested, only proved correct." _This_ code improves on Knuth in that it has been neither tested _nor_ proved correct. However, I give you my solemn promise that I think it probably works, as likely as not. 0.39 Fri Dec 19 16:08:35 2003 - Recognise record-syntax names such as "USMARC" as well as enumerators such as Net::Z3950::RecordSyntax::USMARC, in accordance with what's specified in v1.4 of the ZOOM AAPI. Such names are recgonised case- and hyphen-insensitively, so "GRS-1" and "grs1" are equivalent. - Add "XML" as an alias for the "TEXT_XML" record-syntax. - Handle the ZOOM AAPI's standard options "pass" and "group" in preference to the old options "password" and "groupid" (although these are still also recognised, for the benefit of old applications.) - Handle the ZOOM AAPI's standard option "async" in preference to the old "type" with _value_ "async" (although that's still also recognised, for the benefit of old applications.) - Makefile.PL includes support for and instructions about building against a YAZ in a non-standard place ("non-root install"). - Another slight refinement to samples/simple.pl's diagnostics. - Documentation for diagnostic methods now includes a link to the BIB-1 diagnostics web-page. 0.38 Fri Oct 24 13:28:42 2003 - Fix a silly bug in Net::Z3950::Record::OPAC::rawdata(), spotted by Kristina Long. It was trying to return $$this, like the opaque-array-of-bytes record-types such as USMARC, whereas in fact $this is itself a Perl structure representing the record. - Add a kludge to patch over anti-social behaviour from servers that sometimes return USMARC records when asked for OPAC records: the returned record is wrapped in an otherwise empty OPAC record structure. 0.37 Tue Sep 16 15:14:40 2003 - Remove a pair of extraneous declarations (copied from "yaz/include/yaz/z-opac.h" for reference) at the end of translateHoldingsAndCirc(). On recent GCC versions, such as mine, they were pointless but harmless; but older versions, such as the one in Debian/stable, croak if you mix statements and declarations. - Improve behaviour when a server unilaterally closes the connection while we're waiting for a Init response. Previously, this would cause a segmentation fault; now you get errno set to 104 (ECONNRESET) which is pretty close. - Improve the OPAC record renderer in Z3950/Record.pm so that it walks more of the OPAC-record structure. As well as being prettier, this is better documentation-by-example of how to use the record structure. 0.36 Fri Sep 12 23:47:00 2003 - Add support for the OPAC record syntax: OPAC records are now translated into self-describing Perl data-structures, blessed into the class Net::Z3950::Record::OPAC. There is a rudimentary renderer included in that class, but sophisticated applications will want to deal with the data structure itself. To see it in action, use something like: $ perl samples/simple.pl alpha.calarts.edu 210 \ MARION fruit preferredRecordSyntax 35 WARNING: for some servers, e.g. troy.lib.sfu.ca:210/innopac, you MUST request elementSetName "F", otherwise you'll just be fed USMARC records whatever your preferredRecordSyntax. - Deal better with unrecognised or malformed APDUs from the server, e.g. library.ucfv.bc.ca:2200/unicorn when asked for the USMARC record found by "@attr 1=4 time". Now, the operation fails with diagnostic code 1001 (Malformed APDU). - Change all <mike@tecc.co.uk> addresses to <mike@indexdata.com>. (This change is well overdue, since I changed jobs seven months ago!) - Fix reference for PQF in the YAZ manual. 0.35 Fri Jun 27 10:48:03 2003 - Fix all non-US MARC record-types to return raw data from the rawdata() method rather than, as before, the render() method. - Add a new delete() method to Net::Z3950::ResultSet 0.34 Mon May 12 10:17:07 2003 - Slightly more robust cleanup in Manager::forget() - Make samples/simple.pl a little less simple(!) by making a manager so that pre-connection options such as authentication parameters can be set. - In Makefile.PL, LIBS and INC are now both set via yaz-config, so you don't need to mess with that file before building. (Adam Dickmeiss) - The INC is now inherited by yazwrap/Makefile.PL, so that this file also does not need to be edited. (Adam Dickmeiss) - CCFLAGS is no longer set in the yazwrap directory. I only did that in order to add "-Wall", which is pleasant luxury but not really necessary; and doing so caused problems as other, default, components of that setting were discarded on some platforms. (Adam Dickmeiss) - Add support for the MAB record syntax, thanks to Heiko Jansen <JANSEN@hbz-nrw.de> 0.33 Thu Apr 3 09:10:16 2003 - Add explicit statement of GPL licence. No code changes at all.
2008-06-22Note update of x11/xf86-video-intel pacakge to 2.3.2.taca1-1/+2
2008-06-22Update xf86-video-intel package to 2.3.2.taca3-6/+20
hangelog since 2.3.1: Alan Coopersmith (1): Define DEFFILEMODE for OS'es that don't have it Bryce Harrington (1): Two more Dell quirks Eric Anholt (10): Disable a bunch of clock gating disables on IGD_GM, which doesn't need them. Just remove the mprotect kludge. Replace a couple of wait-for-ring-idles with a single function to do so. Remove duplicated i830_stop_ring()/SetHWOperatingState() in EnterVT(). Remove gratuitous wait_ring_idle after I830Sync. Syncing implies that. Move BIOS scratch register setup to EnterVT instead of PreInit. Initialize clock gating from EnterVT and save/restore it appropriately. Remove SVG_WORK_CONTROL init. Move debug clock printout from ErrorF to X_INFO. Set up/restore PWRCTXA from enter/leavevt not server start/exit. Hong Liu (1): Set SDVO sync polarity to default on 965 Jesse Barnes (3): Panel fitting: fix letterbox modes Fixup power saving registers Fix TV programming: add vblank wait after TV_CTL writes Keith Packard (2): Skip copying on FOURCC_XVMC surfaces Only use FOURCC_XVMC when INTEL_XVMC is defined Lukas Hejtmanek (1): Fix maximum backlight issue Robert Lowery (1): Fix TV out connection type detection Rmi Cardona (1): Add glproto to DRI dependencies Shuang He (1): Fix typo in xvmc block destroy Zhenyu Wang (6): Revert "Add FIFO watermark regs to register dumper" xvmc: remove unused dri drawable xvmc: a little cleanup Fix compiler warning when disable xvmc config Fix compiling with server master in LVDS backlight patch Bump version 2.3.2 Changelog since 2.3.0: Bryce Harrington (2): More quirks from ubuntu/dell More Pipe A force quirks Eric Anholt (1): Bug #15807: Fix use of the ring while VT-switched, hit by fast user switching. Jesse Barnes (3): Add a new quirk for BIOSes that reprogram regs at lid close/open time Add FIFO watermark regs to register dumper Save/restore cursor registers Keith Packard (2): Overlay video doesn't require that the target pixmap be in video memory. Use new xf86RotateFreeShadow function to clean up shadow buffers. Mike Isely (1): Implement option to ignore external fixed mode settings Zhenyu Wang (4): Only check xvmc lib when xvmc is enabled. Use I830FALLBACK when check pitch for debug Revert last HP 965GM pipe A quirk Bump version 2.3.1
2008-06-22Note update of net/p5-Net-Google to 1.0.he1-1/+2
2008-06-22Note update of net/p5-Net-TFTP to 0.17.he1-1/+2
2008-06-22Simplify the logic that avoids using compat_headers during bootstrap.tnn1-5/+2
2008-06-22Update from version 0.61 to 1.0. Changes:he2-7/+10
1.0 Fri Dec 02, 2005 - The "Nothing Special" release. It's just been almost three years. I think we can call it 1.0, don't you? - Added 'queries_exhausted' methods to indicate whether Google API query limit has been reached (RT ticket 12001) - Fixed POD errors in Net::Google::Response (RT ticket 8735) - Updated t/002-spelling.t (RT ticket 11386/11458) - Updated POD - Replace ExtUtils::MakeMaker with Module::Build - Pass maintainership to Bill Stillwell 0.62 Wed Jun 02, 2004 - Fixed POD in N:G:Response (RT bug #5351) - Updated spel(l)ings in t/002-spelling.t (RT bug #6183) - Updated N:G:Search to account to weirdness in the way SOAP::Lite handles booleans. Not clear that this is necessarily a problem in SOAP::Lite but the patch fixes a reported bug and doesn't seem to break anything else so... (RT bug #6167) - Added explicit call to $search->filter(1) in t/001-search.t (RT bug #6167)
2008-06-22Note today's Ruby related package update.taca1-1/+22
Update: databases/ruby-DBI to 0.2.0 databases/ruby-DBD-mysql to 0.2.0 databases/ruby-DBD-postgresql to 0.2.0 databases/ruby-DBD-sqlite to 0.2.0 databases/ruby-datamapper to 0.3.2 databases/ruby-mysql to 2.7.6 databases/ruby-sqlite3 to 1.2.2 devel/ZenTest to 3.10.0 devel/hoe to 1.6.0 devel/ruby-debug-ide to 0.2.0 devel/ruby-flexmock to 0.8.2 devel/ruby-inline to 3.7.0 devel/ruby-linecache to 0.4.3 devel/ruby-parsetree to 2.2.0 devel/ruby-rspec to 1.1.4 devel/ruby2ruby to 1.1.9 devel/rubyforge to 1.0.0 mail/ruby-mailfactory to 1.3.5 mail/ruby-tmail to 1.2.3.1 misc/ruby-launchy to 0.3.2 Addition: databases/ruby-DBD-sqlite3 version 0.2.0
2008-06-22Update from version 0.10 to 0.17. Changes:he2-9/+8
Release 0.17 -- Wed Jul 18 06:30:05 CDT 2007 Enhancements * Added support for IPv6 (patch from John Jason Brzozowski) Change 746 on 2002/09/23 by <gbarr@pobox.com> (Graham Barr) Fix return logic for get and put (patch from Bruce Gray) Change 726 on 2002/05/27 by <gbarr@pobox.com> (Graham Barr) Release 0.15 Change 725 on 2002/05/27 by <gbarr@pobox.com> (Graham Barr) Fix 'Use of uninitialized' warning Change 693 on 2002/01/11 by <gbarr@pobox.com> (Graham Barr) Add O_TRUNC to open in get() so an existing file is truncated instead of unlinked and recreated Change 646 on 2001/09/17 by <gbarr@pobox.com> (Graham Barr) Ensure local files are in binmode when transfer is octet mode Avoid spurious Buffer underflow warning Change 633 on 2001/09/03 by <gbarr@pobox.com> (Graham Barr) Release 0.12 Change 614 on 2001/05/29 by <gbarr@pobox.com> (Graham Barr) Move TFTP out of libnet
2008-06-22Note update of chat/p5-Net-Jabber to 2.0.he1-1/+2
2008-06-22Update from version 1.26 to version 2.0. Changes:he2-12/+9
2.0 === - All of the core functionality has moved into Net::XMPP. It provides the connection, messages, iq, and presence. Net::Jabber now just provides the extensions that the JEPs define and that are truly Jabber and not XMPP. 1.30 ==== - Added initial support for XMPP 1.0 via XML::Stream 1.18. - Locked version of XML::Stream to 1.18. - Changed connectiontimeout to just timeout in the Connect function. - Hey, here's a good idea. Instead of copying the function hash out of each namespace why not just use a refrence... duh... This might make things a little faster and use a smidge less memory. Just a little thought. - Fixed a taint problem with an eval and the xmlns read from the socket. - Fixed some -w warnings. - Updated client test to user newer methods and create the test account. - Added password to MUCJoin. - Fixed typo in DefineNamespace. - Added Tree Transfer (JEP-105) 1.29 ==== - Added PubSub (JEP-60) - Added documentation for most of the below. - Added in a basic basic support for SOAP (JEP-72). You can dump in rawxml and get it back out. - Looking into using contants for the namespaces, but they don't work in hashes. =( - Removed jabber:x:sxpm (it was never used). - Added initial (low level) support for Commands (JEP-50). - Added initial (low level) support for FNeg (JEP-20), Disco (JEP-30), Bytestream (JEP-65), SI (JEP-95), and FT-Profile (JEP-96). - Made Client, Component, and Server inherit from Protocol instead of AUTOLOADing. Why didn't I do this in the beginning? - Added function RosterRequest to let the user handle processing the roster in their own callback and not return a hash. - Added function PresenceDBClear that will clear out the presence database. - Added check to see if Process generated an error, and then was called again (bad thing). - Moved Process into Client.pm, Component.pm, and Server.pm. - Locked version of XML::Stream to 1.17. - Fixed typos in the Protocol help. 1.28 ==== - Fixed bug in XPathDefined which caused the main iq callback function to not work. Show stopper bug. - Fixed iq:time test. 1.27 ==== - Update examples/client scripts to include an xpath based example. - Added support for XPath based callbacks. - Updated x:data to match the call for experience. - Requires perl 5.6 in an attempt to get Unicode support. - Added finer callback support for presence and message based on type. - Minor tweak to NOT remove an unknown xmlns packet (duh...) - Fixed bug in JID. - Updated DefineNamespace to handle most old style, and all new style. - Locked version of XML::Stream to 1.16. - Major recore due to XML::Stream::Node and XPath. - Moved from XML::Stream::Hash to XML::Stream::Node. - Fixed XDB Reply error. - Uninitialized value round up.
2008-06-22Add HOMEPAGE.taca1-1/+2
2008-06-22Update ruby-launchy package to 0.3.2.taca2-6/+6
== Changes === Version 0.3.2 - 2008-05-21 * detect aix and mingw as known operating systems.
2008-06-22Update ruby-tmail pacakge to 1.2.3.1.taca2-6/+6
=== 1.2.3.1 / 2008-04-11 * Closed #19429 - Installing TMail on Windows with the gem
2008-06-22Update ruby-mailfactory pacakge to 1.3.5.taca2-6/+6
Changes are unknown.
2008-06-22Update rubyforge package to 1.0.0.taca3-11/+12
== Version History: === 1.0.0 / 2008-05-20: * Removed HTTPAccess2, thanks to Aaron Patterson. Even tho he's whiny. * Changed initialize/configure to make testing scream. 100x faster.
2008-06-22Note addition of net/p5-Net-XMPP version 1.02.he1-1/+2
2008-06-22Update ruby-ruby2ruby package 1.1.9.taca3-20/+6
Changes are unkown.
2008-06-22Add p5-Net-XMPP.he1-1/+2
2008-06-22Update ruby-rspec package to 1.1.4.taca3-22/+23
== Version 1.1.4 Maintenance release. Note: we've removed the metaclass method from Object. There were some generated specs that used it, and they will now break. Just replace the metaclass call with (class << self; self; end) and all will be well. * pending steps print out yellow in stories (patch from Kyle Hargraves) * Deprecation warnings for specs that assume auto-inclusion of modules. Closes #326 (patch from Scott Taylor) * mock.should_not_receive(:anything) fails fast (once again) * Patch from Antti Tarvainen to stop files from being loaded repeatedly when running heckle. Closes #333. * Fixed bug in which session object in example was not the same instance used in the controller. Closes #331. * Applied patch from Antti Tarvainen to fix bug where heckle runs rspec runs heckle runs rspec etc. Closes #280. * Applied patch from Zach Dennis to merge :steps functionality to :steps_for. Closes #324. * Applied patch from Ryan Davis to add eval of block passed to raise_error matcher. Closes #321. * alias :context :describe in example_group_methods. Closes #312. * Applied patch from Ben Mabey to make the Story runner exit with a non-0 exit code on failing stories. Closes #228. * Applied patch from Coda Hale to get the :red hook called in autotest. Closes #279. * Applied patch from Patrick Ritchie to support --drb in spec.opts. Closes #274, #293. * Moved metaclass method from Object to an internal module which gets included where it is needed. * Applied patch from Dayo Esho: and_yield clobbers return value from block. Closes #217. * Applied patch from Bob Cotton: ExampleGroupFactory.default resets previously registered types. Closes #222. * Applied patch from Mike Williams to support the lib directory in rails apps with the Textmate Alternate File command. Closes #276. * ExampleGroupMethods#xspecify aliases #xit * A SharedExampleGroup can be created within another ExampleGroup. * Applied patch from Bob Cotton: Nested ExampleGroups do not have a spec_path. Closes #224. * Add before_suite and after_suite callbacks to ExampleGroupMethods and Options. Closes #210. * The after(:suite) callback lambda is passed a boolean representing whether the suite passed or failed * Added NestedTextFormatter. Closes #366. * decoupled mock framework from global extensions used by rspec - supports use of flexmock or mocha w/ rails * Applied patch from Roman Chernyatchik to allow the user to pass in the rails version into spectask. Closes #325, #370
2008-06-22Import p5-Net-XMPP version 1.02:he3-0/+38
The Extensible Messaging and Presence Protocol (XMPP) is an IETF standard that provides a complete cross protocol messaging solution. The problem with current IM solutions is that they are all proprietary and cannot talk to each other. XMPP seeks to get rid of those barriers. For more information about the Jabber project visit http://www.xmpp.org. Net::XMPP is a collection of Perl modules that provide a Perl Developer access to the XMPP protocol. Using OOP modules we provide a clean interface to writing anything from a full client to a simple protocol tester.
2008-06-22Update ruby-parsetree package to 2.2.0.taca3-19/+6
=== 2.2.0 / 2008-06-09 * 18 minor enhancements: * Added 1.9 and rubinius to multiruby skip list. * Added 1.9 fixes for SexpProcessor. * Added compatibility changes for regexp option values. * Added custom compact since Array#compact is hostile to subclasses. * Added some tests for wonky index edge cases. some commented out. * Added test changes for 1.9 and r2r changes. Esp fixed regexp differences. * Added tests for dasgn, proc arities, * Added/updated some tests for ruby_parser. * Changed tests to default to nil for verbose. * Fixed all assertions deprecated in miniunit. * Raises LoadError if incompatible ruby, allows fallback to ruby_parser. * Removed Unified's rewrite_fbody and moved up into defn... not sure about that. * Removed argscat rewriter from unified_ruby.rb * Renamed shadowed variable name. * Reworked parse_tree_for_(method|string) to take optional verbose arg. * Started removing ending newlines from pt_testcase.rb. * Uncommented all commented out tests. ruby_parser must not be a pansy. * Updated rakefile for new hoe abilities. * 3 bug fixes: * Fixed 1.8.[45] wrt dasgn_curr declaration removal. * Fixed pt_testcase bug. * Fixes for colon2/3 in class/module/cdecls.
2008-06-22Update ruby-linecache package to 0.4.3.taca2-7/+7
Notes: Small change to for MSWindows which allows finding the extension in lib rather than ext.
2008-06-22Update ruby-inline pacakge to 3.7.0.taca3-10/+7
=== 3.7.0 / 2008-06-09 * 1 major enhancements: * Removed inline_package in favor of hoe's packaging. * 2 minor enhancements: * Switched from warn/exit to abort to fix buffering for error messages. * Improved some error messages. * 2 bug fixes: * Fixes for rubinius. * Fixes for 1.9.
2008-06-22Update ruby-flexmock package to 0.8.2.taca3-8/+8
= Changes for FlexMock * FlexMock partial mocks will now override any preexisting definitions for "should_receive". Previously, FlexMock would honor preexisting defintions, but an RSpec on Rails bug loads the RSpec mocks, even when other mock libraries are configured. This allows flexmock to correctly use partial mocks in the presence of an ill-behaved mock library. == Pre-Version 0.8.1 * Added Joe O'Brien's patch to allow view stubbing in Rails 2.0 * Added Evan Phoenix's patch to remove allocate from default allocators in new_instances (for Rubinius compatibility).
2008-06-22Update ruby-ruby-debug-ide pacakge to 0.2.0.taca4-23/+11
Changes are unknown but it seems support ruby-debug-base 0.10.1.
2008-06-22Install lynx.lss manually for slang option case.wiz1-1/+4
(I guess it is probably not needed in this case, but the changes to ignore it for the slang option alone are much more effort). Addresses PR 38284 by Daniel Horecki.
2008-06-22Update hoe package to 1.6.0.taca2-6/+6
=== 1.6.0 / 2008-06-18 * 1 minor enhancement * blog categories! Defaults to array with project's name. Thanks Aaron! === 1.5.3 / 2008-05-20 * 1 Bug Fix * hoe really really needs better tests. I suck. :/ === 1.5.2 / 2008-05-20 * 4 Minor Enhancements: * Added multiruby_skip attribute for 'rake multi' version invalidation. * Improved error messages when files are missing. * Added rubygems post_install_message accessor. Thanks to Dr. Nic. * Cleaned up alternative_name... I didn't get it. * 1 Bug Fix: * Removed require of rake/contrib/sshpublisher to fix 1.9.
2008-06-22Update ZenTest package to 3.10.0.taca3-7/+11
=== 3.10.0 / 2008-06-17 * 1 major enhancement: * Added multiruby_setup to help manage multiruby installed versions. * 3 minor enhancements: * Added autotest/once plugin to help plugin developers. * Heavily refactored multiruby. * Switched rubinius from shotgun/rubinius to bin/rbx, finally. * 2 bug fixes: * Refactored zentest_mapping test to avoid zentest altogether. * zentest tests bail gracefully for rubinius. === 3.9.3 / 2008-06-09 * 12 minor enhancements: * Added $RUBY env support to autotest so you can swap what ruby to run. * Added ALL_HOOKS array to autotest for hook devs. * Added EXCLUDED_VERSIONS to multiruby. Integrated with hoe. * Added miniunit compatibility to unit_diff's output. * Multiruby now determines the latest versions 1.8/1.9 automatically. * Removed deprecated :run hook. * Fixed zentest_assertions to be compatible with miniunit. Will phase out. * Minor autotest plugin cleanup / fixes. * Moved assert_callback to test/rails/test_case.rb * Reversed assert_includes' arguments. * Updated requirements info for other ruby impls. * util_capture now returns strings, not iostrings. * 1 bug fixes: * (add|remove)_(mappings|exceptions) now all return nil to help fix autotest hooks. === 3.9.2 / 2008-03-20 * 4 minor enhancements: * Added compatibility with miniunit differences. * Added email_notify, jabber_notify, and rcov autotest plugins. * Updated rakefile to include examples automatically in example_dot_autotest. * multiruby now outputs each command so you can grab it easily. * 5 bug fixes: * Ensure tests are run after reset. * Fixed all test/rails tests to run in any combo. * Fixed up growl.rb a bit... still buggy (growlnotify, not growl.rb). * Fixes for -f (fast start) and last_mtime in general. * Fixes for 1.9 and rubinius
2008-06-22Update ruby-sqlite3 package to 1.2.2.taca3-10/+8
Changes: === 1.2.2 / 31 May 2008 * Make the table_info method adjust the returned default value for the rows so that the sqlite3 change in 3.3.8 and greater can be handled transparently [Jamis Buck <jamis@37signals.com>] * Ruby 1.9 compatibility tweaks [Roman Le Negrate <roman2k@free.fr>] * Various performance enhancements [thanks Erik Veenstra] * Correct busy_handler documentation [Rob Holland <rob@inversepath.com>] * Use int_bind64 on Fixnum values larger than a 32bit C int can take. [Rob Holland <rob@inversepath.com>] * Work around a quirk in SQLite's error reporting by calling sqlite3_reset to produce a more informative error code upon a failure from sqlite3_step. [Rob Holland <rob@inversepath.com>] * Various documentation, test, and style tweaks [Rob Holland <rob@inversepath.com>] * Be more granular with time/data translation [Rob Holland <rob@inversepath.com>] * Use Date directly for parsing rather than going via Time [Rob Holland <rob@inversepath.com>] * Check for the rt library and fdatasync so we link against that when needed [Rob Holland <rob@inversepath.com>] * Rename data structures to avoid collision on win32. based on patch by: Luis Lavena [Rob Holland <rob@inversepath.com>] * Add test for defaults [Daniel Rodr?guez Troiti?o] * Correctly unquote double-quoted pragma defaults [?ukasz Dargiewicz <lukasz.dargiewicz@gmail.com>]
2008-06-22Update ruby-mysql package to 2.7.6.taca2-8/+7
2008-06-17 version 2.7.6 * On 64bit machine, Mysql::Stmt#execute raise error on large numeric value(>= 2**30). 2008-03-08 version 2.7.5 * On 64bit machine, Mysql::Stmt#fetch return invalid numeric value. 2007-12-26 version 2.8pre1 * for Ruby 1.9.0 * Incompat: Mysql::Result#each_hash don't create column name string each row. it's shared. * Incompat: Mysql#query with block no longer turn on multi-statements mode automatically. 2007-08-22 version 2.7.4 * BUG: Mysql::Stmt#execute memory leak.
2008-06-22Update databases/ruby-datamapper pacakge to 0.3.2.taca2-6/+6
Changes are unknown.
2008-06-22Add and enable ruby-DBD-sqlite3.taca1-1/+2
2008-06-22Update distinfo alog update to 0.17014.taca1-4/+4
2008-06-22Describe what DESTDIR means and improve description what to do for packages.wiz1-2/+15
Fix a typo while here.
2008-06-22Note update of textproc/p5-XML-Stream to 1.22.he1-1/+2
2008-06-22- pan, gnash.wiz1-3/+1
2008-06-22Update from version 1.15 to 1.22. Changes:he2-11/+9
1.22 ==== - Using Encode module to handle utf encoding and decoding. I cannot just put the socket into utf8 because IO::Socket::SSL does not support binmode. So I'm calling decode_utf8() before returning the Read string, and encode_utf8() before writing the Send string. - Fixed SASL PLAIN authentication. 1.21 ==== - Sigh... Screwed up the CPAN release... again... 1.20 ==== - Ok... dang it. Another minor tweak to fix CPAN. 1.19 ==== - Minor release bug. Forgot to include the prereqs for Authen::SASL and MIME::Base4. 1.18 ==== - Added initial cut at XMPP 1.0 support. - Fixed timeout for Connect(). It was horribly broken and in efficient. Thanks to Jesper Krogh. - Added timeout to socket creation. 1.17 ==== - Added patch to make the Process a little faster by putting the sleeps into the can_read() calls so that you don't have to delay even a few micro seconds when you get new XML. (Evan Prodromou) - Added SRV lookup support for Connect via Net::DNS. - Changed the select calls when blocking to can_read calls so that we can wake up when there is data, and not just after a certain period of time. Thanks to Evan Prodromou. - Interesting bug with Broken Pipes. 1.16 ==== - Upgraded the XPath engine to a more extensible and robust design. - To get tests to work 100% I have to get better determination on the BuildXML functions. So fomr this point on, all attributes are printed in alphabetical order. - Fixed bug in Parser with <![CDATA[...]]> not being supported. - Changed BuildXML for Tree. You have to pass it a ref and not an array. That was to make the rawXML thing work better. - Added the ability to add raw XML at the BuildXML call. - Added remove_cdata method to Node. - Added methods to Node to make calls easier (XPath, GetXML).
2008-06-22Updated multimedia/gnash to 0.8.3wiz1-1/+2
2008-06-22Update to 0.8.3:wiz5-19/+71
2008-05-10 Russ Nelson <nelson@crynwr.com> Sixth alpha release of Gnash (0.8.3). Improvements since 0.8.2 release are: More visible to users: * Native fullscreen support (from AS) implemented. * Long command-line options properly supported. * View detailed movie information from GTK gui. * Added an option in Preferences to initially display a movie as a blank ("Click here to start") screen. * Added "dump" GUI to dump a movie to disk. * Improved Cairo rendering performance. * Fix support for OpenOffice Impress SWF exporter (malformed..) Less visible to users: * Garbage Collector usage reduced where appropriate. * Mouse.hide and Mouse.show implemented in GTK. * ActionScript inheritance fixes: o super implemented correctly (still not 100% compatible for SWF7) o implements / instanceof works correctly now * FsCommands quit, fullscreen and showMenu implemented. * FsCommand-to-javascript implemented (plugin). * Minor ActionScript compatibility fixes: String, XML, toLocaleString, int, parseInt. fromCharCode, toString (SWF4) etc. * Fixes to arguments class (tests: Function.as, line404~456). * Stage.scaleMode implemented (fixes resizing of various movies). * Stage.align implemented. * Fixes to Date class (platform consistent). * Logging uses boost::format. * Improved Win32 support: builds using MinGW/MSYS (cross-compile not tested yet), and initial implementation of npgnash.dll exists. * Sprite handling improved, fixing FlowPlayer and other video SWFs. * TextField handling: o Fix in device font handling (DefineFontInfo tag) o Fix support for DefineFont2 tag (sizes) o Improve TextField support for TextFormat use. * Fix parsing of malformed XML files * Fix loading of text / XML with Byte Order Marks. * Minor fix to _x and _y translation. * More functions correctly registered as ASnative. * System.capabilities information expanded. * Jemalloc memory allocator from Mozilla added as an option. * Redesigned and implemented AMF0 support, with the beginning of AMF3 support. * SWF8 line styles support (both from tag and drawing api)
2008-06-22Note update of sysutils/p5-File-Remove to 1.41.he1-1/+2
2008-06-22Note sysutils/pfstat update.peter2-3/+3
2008-06-22Update to pfstat-2.3.peter6-65/+109
Added a patch to make it compile on NetBSD 3.1 (no pf+ALTQ). (No changelog found)
2008-06-22Update to version 1.41. Changes:he2-6/+6
1.41 Mon 2 Jun 2008 - No functional changes - Updating location of author tests - Switching to Module::Install again, to generate a better META.yml
2008-06-22Drop check for 'make replace => unsafe_depends" support being presentgdt1-22/+4
in pkgsrc. It's been 1.75 years, and the benefit of the check is now outweighed by the cruftiness.
2008-06-22Added converters/p5-JSON-XS-VersionOneAndTwokim2-2/+4
2008-06-22Add JSON::XS::VersionOneAndTwo - Support versions 1 and 2 of JSON::XSkim3-0/+27
2008-06-22Updated graphics/exiv2 to 0.17.1gdt1-1/+2