summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg225-9066/+407
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg12-28/+14
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg60-145/+82
2009-06-14Updated databases/p5-DBD-ODBC to 1.22sno1-1/+2
2009-06-14pkgsrc changes:sno2-7/+7
- Updating package of p5 module DBD::ODBC from 1.21 to 1.22 - Adjusting LICENSE to ${PERL5_LICENSE} according to META.yaml Upstream changes: * Changes in DBD::ODBC 1.22 June 10, 2009 Fixed bug which led to "Use of uninitialized value in subroutine entry" warnings when writing a NULL into a NVARCHAR with a unicode-enabled DBD::ODBC. Thanks to Jirka Novak and Pavel Richter who found, reported and patched a fix. Fixed serious bug in unicode_helper.c for utf16_len which I'm ashamed to say was using an unsigned short to return the length. This meant you could never have UTF16 strings of more than ~64K without risking serious problems. The DBD::ODBC test code actually got a *** glibc detected *** /usr/bin/perl: double free or corruption (out): 0x406dd008 *** If you use a UNICODE enabled DBD::ODBC (the default on Windows) and unicode strings larger than 64K you should definitely upgrade now. * Changes in DBD::ODBC 1.21_1 June 2, 2009 Fixed bug referred to in rt 46597 reported by taioba and identified by Tim Bunce. In Calls to bind_param for a given statement handle if you specify a SQL type to bind as, this should be "sticky" for that parameter. That means if you do: $sth->bind_param(1, $param, DBI::SQL_LONGVARCHAR) and follow it up with execute calls that also specify the parameter: $sth->execute("a param"); then the parameter should stick with the SQL_LONGVARCHAR type and not revert to the default parameter type. The DBI docs (from 1.609) make it clear the parameter type is sticky for the duration of the statement but some DBDs allow the parameter to be rebound with a different type - DBD::ODBC is one of those drivers.
2009-06-14Use @pkgdir.joerg2-4/+4
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg8-22/+9
2009-06-14dnsmasq updatedroy1-2/+1
2009-06-14Updated net/dnsmasq to 2.49roy1-1/+2
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg15-51/+42
2009-06-14Update to dnsmasq-2.49roy2-6/+6
Changes since 2.47 include * Fix a possible infinite with fixed hostnames to ip and the client sometimes sending one and sometimes not * Improved DHCP logging * addn-hosts now works with a directory instead of just a file
2009-06-14Updated databases/p5-DBI to 1.609sno1-1/+2
2009-06-14pkgsrc changes:sno2-9/+7
- Updating package of p5 module DBI & Co. from 1.608 to 1.609 - Setting LICENSE to ${PERL5_LICENSE} according to META.yaml - Removing dependency to devel/p5-Test-Simple: required version is in pkgsrc distributed perl core Upstream changes: Fixes to DBD::File (H.Merijn Brand) added f_schema attribute table names case sensitive when quoted, insensitive when unquoted workaround a bug in SQL::Statement (temporary fix) related to the "You passed x parameters where y required" error Added ImplementorClass and Name info to the "Issuing rollback() due to DESTROY without explicit disconnect" warning to identify the handle. Applies to compiled drivers when they are recompiled. Added DBI->visit_handles($coderef) method. Added $h->visit_child_handles($coderef) method. Added docs for column_info()'s COLUMN_DEF value. Clarified docs on stickyness of data type via bind_param(). Clarified docs on stickyness of data type via bind_col().
2009-06-14Drop now redundant @unexec ${RMDIR}joerg1-3/+1
2009-06-14Convert to @pkgdir.joerg1-2/+2
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg29-79/+49
2009-06-14Updated converters/p5-JSON-XS to 2.240sno1-1/+2
2009-06-14pkgsrc changes:sno2-7/+8
- Updating package of p5 module JSON::XS from 2.232 to 2.240 (module version 2.24) - Setting license to ${PERL5_LICENSE} according to COPYING Upstream changes: 2.24 Sat May 30 08:25:45 CEST 2009 - the incremental parser did not update its parse offset pointer correctly when parsing utf8-strings (nicely debugged by Martin Evans). - appending a non-utf8-string to the incremental parser in utf8 mode failed to upgrade the string. - wording of parse error messages has been improved.
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg34-154/+125
2009-06-14Updated converters/p5-JSON to 2.15sno1-1/+2
2009-06-14pkgsrc changes:sno2-6/+7
- Updating package of p5 module JSON and subclasses from 2.14 to 2.15 - Setting LICENSE to ${PERL5_LICENSE} accroding to META.yaml Upstream changes: 2.15 Tue Jun 2 16:36:42 2009 [JSON] - made compatible with JSON::XS 2.24 - corrected copyrights in some modules. [JSON::PP] - modified incr_parse, pointed by Martin J. Evans (rt#46439) - deleted a meaningless code
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg16-41/+20
2009-06-14Updated converters/p5-MIME-Base64 to 3.08sno1-1/+2
2009-06-14pkgsrc changes:sno3-19/+21
- updating package of p5 module MIME::Base64 from 3.07nb1 to 3.08 - adjusting LICENSE according to module documentation Upstream changes: 2009-06-09 - Release 3.08: Gisle Aas <gisle@ActiveState.com> Jarkko Hietaniemi (1): EBCDIC changes from core Nicholas Clark (1): Get rid of the PERL_CORE hacks
2009-06-14Replace @exec/@unexec with @pkgdir or drop it.joerg29-117/+88
2009-06-14Updated www/p5-HTTP-Proxy to 0.23sno1-1/+2
2009-06-14pkgsrc changes:sno2-7/+8
- Updating package of p5 module for HTTP::Proxy from 0.22nb1 to 0.23 - Adjusting module type to Module::Build - Setting license to ${PERL5_LICENSE} accroding to Makefile Upstream changes: 0.23 Thu Sep 4 02:29:47 CEST 2008 [ENHANCEMENTS] - HTTP::Proxy::BodyFilter::save had an issue with cygwin because of an incorrect use of File::Spec's catdir(). This is fixed. - CONNECT requests are now forwarded to the upstream proxy, if there is one. Errors from the upstream proxy are relayed to the client. [TESTS] - t/23connect.t does not use sysread() anymore. This time the test should pass about everywhere.
2009-06-14Fixed pkglint warnings.rillig1-6/+4
2009-06-14Updated www/p5-HTTP-DAV to 0.38sno1-1/+2
2009-06-14pkgsrc changes:sno2-6/+7
- Updating package of p5 module HTTP::DAV from 0.35 to 0.38 - Setting license to explicit 'gnu-gpl-v2 # OR artistic' as specified in module's documentation Upstream changes: v0.38 (released 2009/06/09): * bug fixes - Fixed RT #14506 (http://rt.cpan.org/Public/Bug/Display.html?id=14506), about the missing get_lastresponse() method. It was a documentation bug. - Fixed RT #29788 (http://rt.cpan.org/Public/Bug/Display.html?id=29788), avoid file corruptions on Win32 when calling HTTP::DAV::get() method. - Fixed RT #31014 (http://rt.cpan.org/Public/Bug/Display.html?id=31014), probably already in v0.34, since it seems related to propfind() "depth" bug. v0.37 (released 2009/03/24): * bug fixes - Fixed RT #44409 (http://rt.cpan.org/Public/Bug/Display.html?id=44409), Small bug in HTTP::DAV::put(). Passing a reference as local content resulted in the "SCALAR(0x12345678)" being logged instead of the real scalar. v0.36 (released 2009/02/25): * bug fixes - Fixed RT #19616 (http://rt.cpan.org/Public/Bug/Display.html?id=19616), LWP::UserAgent::redirect_ok() is not changed anymore. We're subclassing it from HTTP::DAV::UserAgent and overriding redirect_ok() there. - Fixed RT #42877 (http://rt.cpan.org/Public/Bug/Display.html?id=42877), HTTP::DAV::UserAgent::credentials() has been modified to behave like LWP::UserAgent::credentials(), otherwise basic authentication breakages can occur. - Fixed a problem with C<-depth> argument to C<HTTP::DAV::propfind()> that could lead to massive performance degradation, especially when running C<propfind()> against large folders. C<-depth> was set to 1 even when passed as zero.
2009-06-14Updated time/p5-DateTime-Format-Flexible to 0.09sno1-1/+2
2009-06-14Use @pkgdir.joerg2-4/+4
2009-06-14pkgsrc changes:sno2-7/+7
- Updating package of p5 module DateTime::Format::Flexible from 0.08 to 0.09 - Adjusting license to ${PERL5_LICENSE} according to META.yaml Upstream changes: 0.09 Sun May 24 22:00:00 2009 - add a real copyright for Debian packaging - fix parsing a bare 4 digit year. (thanks Dominic Rose, rt #46278)
2009-06-14Updated time/p5-DateTime-TimeZone to 0.91sno1-1/+2
2009-06-14pkgsrc changes:sno2-7/+7
- Updating package of p5 module DateTime::TimeZone from 0.90 to 0.91 - Adjusting license to ${PERL5_LICENSE} according to META.yaml Upstream changes: 0.91 2009-05-26 - This release is based on version 2009h of the Olson database. This release has no user-visible changes, but I like to follow along anyway.
2009-06-14Updated security/p5-Digest-MD5 to 2.39sno1-1/+2
2009-06-14pkgsrc changes:sno2-6/+7
- Updating package of p5 module Digest::MD5 from 2.38 to 2.39 - Setting license to ${PERL5_LICENSE} according to META.yaml Upstream changes: 2009-06-09 - Release 2.39: Gisle Aas <gisle@ActiveState.com> Nicholas Clark (2): Get rid of the PERL_CORE hacks Sync core: Rename ext/Digest/MD5 to ext/Digest-MD5 Jerry Hedden (1): Handle non-numeric version numbers in ext/Digest/MD5/Makefile.PL
2009-06-14Updated security/p5-Digest to 1.16sno1-1/+2
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg38-395/+373
2009-06-14pkgsrc changes:sno2-8/+7
- Updating package of p5 module Digest from 1.15nb1 to 1.16 - Adjusting license according to documentation of Digest Upstream changes: 2009-06-09 - Release 1.16: Gisle Aas <gisle@ActiveState.com>. Gisle Aas (3): For SHA-1 try Digest::SHA before tryign Digest::SHA1 as suggested by Adam Trickett Support Digest->new("RIPEMD-160") as suggested by Zefram Use 3-arg open for fewer surprises Jarkko Hietaniemi (1): Sync up with EBCDIC changes from core perl.
2009-06-14Updated devel/p5-UNIVERSAL-isa to 1.02sno1-1/+2
2009-06-14pkgsrc changes:sno2-6/+7
- Updating package of p5 module UNIVERSAL::isa from 1.01 to 1.02 - setting license to ${PERL5_LICENSE} Upstream changes: *not recorded*
2009-06-14Updated devel/p5-UNIVERSAL-can to 1.14sno1-1/+2
2009-06-14pkgsrc changes:sno2-7/+8
- Updating package of p5 module UNIVERSAL::can from 1.12nb1 to 1.14 - setting license to ${PERL5_LICENSE} - Adjusting module type to Module::Build Upstream changes: 1.14 Fri Jun 12 19:43:21 UTC 2009 - released a new stable version - removed developer tests, custom M::B subclass, and passthrough Makefile.PL - added build_requires - fixed a documentation bug reported by Adam Kennedy (RT #17043) - fixed interaction with SUPER::can() (patch by Peter du Marchie van Voorthuysen in RT #25355) 1.13_001 Sat Dec 29 02:28:33 UTC 2007 - warn only when someone has overridden can() but someone else called U::c directly
2009-06-14Updated devel/p5-Task-Weaken to 1.03sno1-1/+2
2009-06-14pkgsrc changes:sno2-7/+8
- Updating package of p5 module Task::Weaken from 1.02nb1 to 1.03 - Using module type Module::Install - Setting license to ${PERL5_LICENSE} Upstream changes: 1.03 Fri 12 Jun 2009 - Updating to flush out some old CPAN Testers results
2009-06-14Updated games/gbrainy to 1.11wiz1-1/+2
2009-06-14Update to 1.11:wiz2-8/+6
Version 1.11 is a minor release that introduces the following enhancements: * Updates Italian, Dutch, Brazilian Portuguese, Slovak, Spanish, Basque, British English translations and introduces a new Czech translation. * Full screen mode support * 3 Bug fixes
2009-06-14devel/p5-CPAN-Reporter to 1.1708sno1-1/+2
2009-06-14pkgsrc changes:sno2-10/+7
- Updating package of p5 module CPAN::Reporter from 1.1707 to 1.708 - Update dependencies according to META.yaml Upstream changes: 1.1708 Mon Jun 1 23:31:58 EDT 2009 *** Emergency fix -- 1.1706/1.1707 can prevent subsequent module *** *** installation if installed with an older Test::Reporter. *** *** Disable test reporting (From CPAN, 'o conf test_report 0') *** *** and install CPAN::Reporter 1.1708. Then re-enable test *** *** reports. *** - Fixed: in the case where an old Test::Reporter without the distfile() method is installed, CPAN::Reporter would crash and prevent installation of modules (including newer Test::Reporter); now checks for a Test::Reporter