summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-08-10Changes 2.037:adam2-15/+14
* No Changes Changes 2.036: * Added offset patramter to CRC32 Changes 2.035: * No Changes
2011-08-10Changes 2.037:adam2-14/+13
* No Changes Changes 2.036: * No Changes Changes 2.035: * No Changes
2011-08-10Revision bump after updating perl to 5.14.1adam1-5/+5
2011-08-10Changes 3.4:adam1-3/+2
* remove "regexp" category. this is rather painful as it's a large class, but unfortunately, somebody thought emitting a warning when you match more than 32kb of text is in some way useful, which spoils the whole category. * use META.json instead of META.yml - apparently YAML parsers don't actually exist
2011-08-10Revision bump after updating perl to 5.14.1adam1-4/+3
2011-08-10Changes 1.11:adam2-9/+7
* Fix assignment to lvalue accessors that point at an uninitialized hash element. Changes 1.10: * We don't occasionally crash during END any more. Instead, we rely on the OS to reap a bit of memory after perl was shut down anyway. * Tiny refactoring for smaller object size. Changes 1.09: * Fix: Predicates return value, not bool * TODO test for perl-crashing bug (in perl) that can happen on (arcane) XSUB aliasing on perls < 5.8.9 We're open for work-around patches.
2011-08-10Revision bump after updating perl to 5.14.1adam4-30/+30
2011-08-10Changes 0.07:adam2-9/+9
* Clean up after Class::C3 on pre-5.10 perls.
2011-08-10Revision bump after updating perl to 5.14.1adam6-29/+26
2011-08-10Changes 0.9300:adam2-13/+10
* t/coretests.pm: Reorder tests and include both positive and negative test for exception. * README, lib/version.pm, t/01base.t, t/02derived.t, t/03require.t, t/coretests.pm, vperl/vpp.pm, vutil/lib/version/vxs.pm, vutil/vxs.xs: Fix problem with UNIVERSAL::VERSION
2011-08-10Update to perfuse-2011010: fix permission checks for unprivilegied usersmanu3-7/+8
2011-08-10Revision bump after updating perl to 5.14.1adam1-2/+3
2011-08-10Changes 1.12:adam2-13/+11
* Remove usage of undocumented Package::Stash APIs from the tests. This prevents the tests from failing on Package::Stash >= 0.18.
2011-08-10Revision bump after updating perl to 5.14.1adam1-7/+5
2011-08-10Changes 1.07:adam2-7/+6
* Move from Test::Exception to Test::Fatal Changes 1.06: * Add support for: modifier ["name1", "name2"] => sub {}
2011-08-10Revision bump after updating perl to 5.14.1adam3-29/+27
2011-08-10Changes 1.25:adam2-7/+7
* Updating to Module::Install::DSL 1.00 * Updating copyright year
2011-08-10Revision bump after updating perl to 5.14.1adam3-10/+9
2011-08-10Changes 0.204:adam2-9/+8
* Documented that this module is obsolete. * Clarified the license
2011-08-10Revision bump after updating perl to 5.14.1adam7-32/+34
2011-08-10fix the last change of DEPENDS pattern for p5-Digest-SHA.obache1-2/+2
PR#45228.
2011-08-09Updated multimedia/libdvdread to 4.1.3nb1; multimedia/dvdbackup to 0.4.1adam1-1/+3
2011-08-09Changes 0.4.1:adam5-249/+14
New Features: * New complete translation: German (de); thanks to Chris Leick Bug fixes: * Fix offset bug (which results in wrong .vob files) * Fix typos and improve wording Changes 0.4: New Features: * Added new translations from Launchpad: French (fr), Galician (gl), Italian (it), Norwegian Bokmål (nb), Russian (ru) and Spanish (es) Changes: * Use C99 standard and compile with -pedantic flag. * Code cleanup Bug fixes: * Fixed typos * Fixed compiler warnings * Added missing header file
2011-08-09Provide DVDFileStat functions needed for dvdbackup 0.4.1adam5-9/+256
2011-08-09Updated audio/libmodplug to 0.8.8.4gls1-1/+2
2011-08-09Update audio/libmodplug to 0.8.8.4.gls2-6/+6
Upstream changes: * Improve timidity.cfg parsing capability * Add source command capability in timidity.cfg (useful for debian default) * Fix integer overflow in WAV reader (SA45131/A) * Fix S3M stack overflow possibility (SA45131/B) * Bound seeking and reading in PAT files * Fix AMS/AMSv2 and DSM too large by one (SA45131/C) * Use structure in XM decoding (development related) * Use bmpvalues in Octamed files when calcuting default tempo (Francis Russel) Fixes SA45131.
2011-08-09Updated www/moodle to 2.1.1gls1-1/+2
2011-08-09Update www/moodle to 2.1.1gls3-340/+902
pkgsrc changes: - replace bash with sh in a script. Upstream changes: Many, many changes, including security fixes. Highlights from version 2.1: - New question engine - Ability to restore the course contents from Moodle 1.9 backup files - Support for mobile devices For complete changelog, please refer to: http://docs.moodle.org/dev/Moodle_2.0.3_release_notes http://docs.moodle.org/dev/Moodle_2.0.4_release_notes http://docs.moodle.org/dev/Moodle_2.1_release_notes http://docs.moodle.org/dev/Moodle_2.1.1_release_notes Fixes SA45487 (MSA-11-0021, MSA-11-0022), among others.
2011-08-09Remove aria2ryoon1-2/+1
2011-08-09Updated net/aria2 to 1.12.1ryoon1-1/+2
2011-08-09Update to 1.12.1ryoon2-6/+6
Changelog: aria2 1.12.1 ============ Release Note ------------ This release adds RFC 6249 Metalink/HTTP support. Current implementation only uses rel=duplicate links. --enable-direct-io option was deprecated because of performance issue. Since recent GnuTLS uses libnettle as default instead of libgcrypt, this release added initialization code for libgcrypt. Changes ------- * Initialize libgcrypt. We relied initialization of libgcrypt on gnutls_global_init(), but recent change in gnutls, which changes default crypto backend from libgcrypt to libnettle, leaves libgcrypt uninitialized if it uses libnettle as backend(and this is likely because libnettle is chosen by default). To fix this issue, we simply initialize libgcrypt on our own. * Throw exception with error message if gnutls_global_init() failed. * Implemented Metalink/HTTP. Link header fields from first Metalink server is utilized as described in rfc6249. We only set digest from Digest header field to DownloadContext only when PieceStorage is not initialized(in other words, before file size is known). After PieceStorage is initialized, Digest header field is used to check the value is the same in digest in DownloadContext. Current implementation only handles rel=duplicate. * Remove Metalink content-type after first server response. We don't accept Metalink content-type after first server response. * Updated Russian translation of aria2 man page. Thanks to ITriskTI for translation. * Fixed the bug due to dangling pointers in RequestGroup. RequestGroup holds a poitner to btRuntime_ and peerStorage_. After removing them from BtRegistry, we failed to set 0 to them. When program access them, it goes undefined world, such as random crash. We found this bug when pasuing download and valgrind warned memory corruption. * Added log message to clarify error for BitTorrent server socket. * Added #deprecated help tag. * Removed deprecated options: --enable-xml-rpc, --xml-rpc-listen-all, --xml-rpc-listen-port, --xml-rpc-max-request-size, --xml-rpc-user, --xml-rpc-passwd. * Removed use of O_DIRECT because of performance issue. Deprecated --enable-direct-io option. * Increased the maximum number of in-flight request in BitTorrent. * Added --log option to aria2rpc
2011-08-09Updated devel/gobject-introspection to 0.10.8nb1ryoon1-1/+2
2011-08-09Drop buildlink to graphics/cairo to reduce dependency.ryoon1-2/+4
See http://mail-index.netbsd.org/tech-pkg/2011/08/02/msg007484.html Bump PKGREVISION.
2011-08-09Updated fonts/umefont-ttf to 0.430ryoon1-1/+2
2011-08-09Update to 0.430ryoon2-6/+6
Changelog: In Gothic (Sans-serif) family * Fix glyphs in Unicode : 0020-6640, 9c76-ffff (first check) * Fix glyphs in SJIS : second check completed In Minchi (Serif) family * Fix glyphs in Unicode : 0020-6640, 9c76-ffff (first check) * Fix glyphs in SJIS : second check completed
2011-08-09Revision bump after updating perl to 5.14.1adam1-5/+5
2011-08-09Changes 1.001000:adam2-15/+14
* Add Class::C3::Componentised::ApplyHooks features Changes 1.0009: * Stop importing Carp functions (and thus polluting the inheritor namespaces) * Make sure $_ is properly preserved even if the loaded module is negligent enough to change it * Added missing copyright statement
2011-08-09Revision bump after updating perl to 5.14.1adam3-21/+17
2011-08-09As noted in Changes 0.10003, only require MRO::Compat for older perls,obache1-2/+1
so drop dependency on p5-MRO-Compat.
2011-08-09Changes 2.00:adam2-7/+7
* Switching to a production release Changes 1.99_04: * Upgrading to Module::Install::DSL 1.00 * Bumping minimum version of Perl to 5.006 * Fixing indenting, style and layout issues. * Added debugging entries to all the new code. * Removed on use of _load_ancestors that was not needed * Updating copyright a couple of times :/ Changes 1.99_03: * Upgrading to Module::Install 0.76 * Localising $@ during evals Changes 1.99_02: * Fixing some back-compatibility bugs in the new tests Changes 1.99_01: * Vast swathes of additional functionality
2011-08-09Changes 1.08:adam2-8/+7
* Upgrading to Module::Install 1.00 * Fixed 56492: [PATCH] Fix spelling error
2011-08-09Revision bump after updating perl to 5.14.1adam1-6/+4
2011-08-09Changes 0.10003:adam2-11/+10
* Only require MRO::Compat for older perls * Add SYNOPSIS * Add examples for methods that get used most often Changes 0.10002: * Fix grave bug of XS-enabled simple accessors clobbering an existing 'around' overlay installed in the same method slot * Require bugfixed XSAccessor, remove Win32 caveat Changes 0.10001: * Fix an ActiveState Win32 incompatibility * Fix spurious method re-invocation warnings after Class::Unload Changes 0.10000: * Fix perl 5.6 failures * Add test-time deferred coderef reinvocation checks * Another minor (8%) speedup
2011-08-09Revision bump after updating perl to 5.14.1adam7-43/+38
2011-08-09Changes 0.11:adam2-9/+7
Fixed: * Tests will not use Test::Differences version 0.60 or greater Changes 0.10: Fixed: * Setting PERL_CAPTURE_TINY_TIMEOUT to 0 will disable timeouts
2011-08-09Revision bump after updating perl to 5.14.1adam3-8/+9
2011-08-09Changes 1.39:adam2-10/+9
* Remove CImpl and simplify structure into just Cache::FastMmap module making all XS calls just function calls in Cache::FastMmap namespace Changes 1.38: * Fix build process that was completely broken after moving files around into different directories
2011-08-09Revision bump after updating perl to 5.14.1adam3-9/+9
2011-08-09Changes 0.27:adam2-10/+9
* Switch to Module::Package at YAPC 2011 ++ Changes 0.26: * Fixed doc bug reported by KENTNL++ * Tweaked Makefile.PL Changes 0.25: * Fixed a bug caused by Readonly::XS (schwern++) * Removed the new methods and autobox methods. They didn't add much except confusion. * Documented that you can use isTrue and isFalse as methods. * '&boolean(1,2,3) now dies like boolean(1,2,3)' * '&boolean() now dies like boolean()' Changes 0.24: * '@Schwern++ found out how to make true and false immutable. Kudos to #strategicdata++.' * Document the boolean() function. * Added is_true and is_false methods. * Added boolean, is_true, and is_false autobox methods
2011-08-09Revision bump after updating perl to 5.14.1adam1-3/+2