Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
from 0.40000 to 0.40010.
Upstream changes:
0.4001 - Tue Jun 26 20:54:15 CEST 2012
[BUG FIXES]
- Parse Pod name a litte more leniently [Paul Evans]
[DOCUMENTATION]
- Various spelling fixes [Leon Timmermans, Jonathan Yu]
- Fixes configuration keys used for script location [Leon Timmermans, reported by Samuel Ferencik]
[OTHER]
- use warnings
|
|
|
|
devel/p5-Method-Signatures from 20111020 to 20120523.
pkgsrc changes:
- adding test dependencies
- reordering runtime dependencies for easier check against module
meta information
Upstream changes:
20120523 May 23 16:36:04 PDT 2012
Distribution Fixes
* Fixed META.json
20120517 Thu May 17 20:14:34 PDT 2012
Promoted to full release
20120514.0117_001 Mon May 14 01:17:38 PDT 2012
Distribution Fixes
* Added version number to Method::Signatures::Modifiers.
20111125 Fri Nov 25 01:15:50 PST 2011
Optimizations
* Type checks significantly faster. 40% faster with Mouse.
20% faster with Moose. [github #42]
Distribution Fixes
* Added Test::Exception as a build requirement [github #43]
* Added Moose as a recommended module (with version number)
|
|
|
|
from 0.42 to 0.43.
Upstream changes:
0.43 05.04.12
* Add example in POD of advanced usage with cache by Kent Fredric.
(Gist: https://gist.github.com/1291928)
* Sort keys in param join - more predictable result.
|
|
|
|
devel/p5-Git-CPAN-Patch from 0.7.0 to 0.8.0.
Upstream changes:
0.8.0 2012-05-22
- code churn: 1 files changed, 4 insertions(+), 86 deletions(-)
[ENHANCEMENTS]
- Added new command 'cpan-clone', which operates like git-clone [Mike
Doherty]
|
|
|
|
devel/p5-Getopt-Long-Descriptive from 0.090 to 0.091
pkgsrc changes:
- force any variant of modern Test::More (from p5-Test-Simple) being installed
Upstread changes:
0.091 2012-02-22 18:15:08 America/New_York
don't die quite so violently when a Params::Validate constraint fails
(initial patch by harleypig@github; final blame to RJBS)
|
|
|
|
1.001 to 1.002.
Upstream changes:
1.002 2011-12-07 11:40:26 EST5EDT
[BUG FIXES]
- Fix failures on cygwin [rt.cpan.org #73072 Reini Urban]
|
|
|
|
devel/p5-ExtUtils-PkgConfig from 1.12nb2 to 1.13.
Upstream changes:
1.13 Fri Apr 27 20:27:30 PDT 2012
- Correctly handle major-only versions, like '2' (RT #68246).
- Updated FSF address and copyrights
|
|
|
|
to 0.17018.
Upstream changes:
May 08 2012 <shlomif@shlomifish.org> (Shlomi Fish)
Error.pm #0.17018
- Add a $VERSION variable for Error::Simple.
- thanks to Kevin Dawson for the report.
- Add scripts/bump-version-number.pl .
- This can be used to bump the version numbers globally.
|
|
|
|
from 0.11 to 0.12.
pkgsrc changes:
- removing x-bit from distributed demo.pl
Upstream changes:
0.12 Thu Feb 16 12:26:09 EST 2012
- eliminate interactive prompting during test phase
|
|
|
|
devel/p5-Devel-GlobalDestruction from 0.05 to 0.06.
Upstream changes:
0.06 Thu, 14 Jun 2012
* De-retardize XS-less behavior under SpeedyCGI
* Test suite now works from within space-containing paths
|
|
|
|
|
|
6 years of changes. 3.5.1 in particular has:
it is time for another version of Ocamlnet. The new release 3.5 focuses on
the system interface, and includes a long list of smaller improvements.
The system interface, Netsys_posix, is extended by:
- Support for POSIX clocks and POSIX timers (with nanosecond resolution)
- Netsys_posix.spawn usses now the posix_spawn call if present on the OS
- Adding support for pollable events (as e.g. provided by Linux via
eventfd). For other OS an emulation is available.
- Support for epoll on Linux
Note that Netsys_posix covers now large parts of POSIX realtime.
Other improvements:
- The code generator for XDR has been improved. A new switch -direct for
ocamlrpcgen can be used to generate direct mappings between OCaml values
and binary representation (in many cases). Speedups up to 50% are
possible for large XDR values.
- The new module Uq_mt allows it to access an event-driven resource from
several kernel threads (e.g. use an RPC client commonly from several
threads).
- The thread-safety of Netplex container functions has been improved.
- Netmulticore condition variables can now be polled, for better
integration into event-based programs.
- Option greedy_accepts for Netplex to support servers that accept
many connections per second. With this improvement, Netplex can
now accept more than 5000 connections/s, and assign them to worker
processes.
Last but not least there is now a new tutorial for Equeue (event systems
and engines). In particular, the section about combining Ocamlnet with Lwt
might be interesting.
|
|
|
|
|
|
|
|
in devel/p5-Perl-Tidy from 20101217 to 20120701.
Upstream changes:
2012 07 01
- Corrected problem introduced by using a chomp on scalar references, RT #77978
- Added support for Perl 5.14 package block syntax, RT #78114.
- A convergence test is made if three or more iterations are requested with
the -it=n parameter to avoid wasting computer time. Several hundred Mb of
code gleaned from the internet were searched with the results that:
- It is unusual for two iterations to be required unless a major
style change is being made.
- Only one case has been found where three iterations were required.
- No cases requiring four iterations have been found with this version.
For the previous version several cases where found the results could
oscillate between two semi-stable states. This version corrects this.
So if it is important that the code be converged it is okay to set -it=4
with this version and it will probably stop after the second iteration.
- Improved ability to identify and retain good line break points in the
input stream, such as at commas and equals. You can always tell
perltidy to ignore old breakpoints with -iob.
- Fixed glitch in which a terminal closing hash brace followed by semicolon
was not outdented back to the leading line depth like other closing
tokens. Thanks to Keith Neargarder for noting this.
OLD:
my ( $pre, $post ) = @{
{
"pp_anonlist" => [ "[", "]" ],
"pp_anonhash" => [ "{", "}" ]
}->{ $kid->ppaddr }
}; # terminal brace
NEW:
my ( $pre, $post ) = @{
{
"pp_anonlist" => [ "[", "]" ],
"pp_anonhash" => [ "{", "}" ]
}->{ $kid->ppaddr }
}; # terminal brace
- Removed extra indentation given to trailing 'if' and 'unless' clauses
without parentheses because this occasionally produced undesirable
results. This only applies where parens are not used after the if or
unless.
OLD:
return undef
unless my ( $who, $actions ) =
$clause =~ /^($who_re)((?:$action_re)+)$/o;
NEW:
return undef
unless my ( $who, $actions ) =
$clause =~ /^($who_re)((?:$action_re)+)$/o;
|
|
|
|
from 0.18 to 0.19.
Upstream changes:
0.19 2012-04-03
- No changes, reupload to fix indexing.
|
|
|
|
- 1.3.2: Handling of empty arguments (Wojciech Meyer).
Added entry for camlp4.fulllib.
New switch -add for "ocamlfind install" (Hans Ole Rafaelsen).
Further fixes for ocaml-4.00.
Fixing the recognition of double .cmi interface files.
Fixing -dontlink (it is now deeply interpreted).
- 1.3.1: Fixing a bug with ocamlmklib that slipped through in 1.3.0
- 1.3.0: Fixes for ocaml-4.00 (especially topfind).
Emitting an error if the configuration file does not exist.
Emitting a warning if the selected toolchain does not exist.
camlp4 is referenced by "+camlp4" in META.
Including the sources for the documentation in the tarball.
License change (simplification) for num_top_printers.mli.
Fix ocamlmklib wrapper: processing contracted args (like -L/dir) correctly.
Many wrappers get a new option -passrest instructing to pass all remaining
options on the command-line unchanged to the invoked tool.
Prettified -help output.
|
|
|
|
0.23nb2 to 0.24.
pkgsrc changes:
- add dependency for Algorithm::C3 package
Upstream changes:
0.24 Sat, May 12, 2012
- Require Class::C3::XS on 5.8 perls if a working compiler is found
|
|
|
|
devel/p5-Config-IniFiles from 2.71 to 2.77.
pkgsrc changes:
- bump required version of p5-List-MoreUtils to 0.33
Upstream changes:
Version 2.77 ( Thu Jun 21 19:35:23 IDT 2012 )
------------------------------------------------
* Bump the List::MoreUtils dependency to '0.33'.
- https://rt.cpan.org/Ticket/Display.html?id=77930
- Thanks to TJENNESS for the report.
Version 2.76 ( Fri Jun 15 17:44:31 IDT 2012 )
------------------------------------------------
* Correct the documentation regarding the syntax of calling ->WriteConfig(),
which always accepts a mandatory filename and not just
"->WriteConfig(-delta => 1)".
- Thanks to the Mageia Linux QA team at:
- https://bugs.mageia.org/show_bug.cgi?id=6024#c17
Version 2.75 ( Fri May 25 15:25:29 IDT 2012 )
------------------------------------------------
* Add "=encoding utf8" to the POD of lib/Config/IniFiles.pm
- The POD contained wide characters and it is now an error in
with recent Test::Pod and Pod::Simple.
- See for example: http://www.cpantesters.org/cpan/report/89000ebe-a5bc-11e1-a439-fa78ab6c2661
Version 2.74 ( Thu May 24 00:46:37 IDT 2012 )
------------------------------------------------
* Made sure .ini files are output on Win32 with CR-LF pairs.
- Thanks to Ben Johnson for reporting the bug and for a preliminary
test script.
- Add t/32mswin-outputs-contain-crs.t
Version 2.73 ( Mon May 14 10:46:38 IDT 2012 )
------------------------------------------------
* Regression bug fix: temporary file creation error should generate a warning
and return undef() instead of throwing an exception.
- https://rt.cpan.org/Ticket/Display.html?id=77039
- Thanks to Adam D. Barrat for noticing that, and Gregor Herrmann
from Debian for reporting this issue.
Version 2.72 ( Sat May 5 19:19:09 IDT 2012 )
------------------------------------------------
* More refactoring.
* Now requiring Fcntl (which is a core module) for SEEK_SET() and SEEK_CUR().
* Update the contact information on the POD.
* Maintainer's special birthday (5-May) release.
|
|
|
|
devel/p5-IO-Compress from 2.049 to 2.052.
Upstream changes (since 2.049):
2.052 29 April 2012
* IO::Compress::Zip
Force a ZIP64 archive when it contains >= 0xFFFF entries.
* Typos in POD
[RT# #76130: Gunzip Pod typo in OO section: $$output instead of $$input
|
|
|
|
devel/p5-Compress-Raw-Bzip2 from 2.049 to 2.052 to satisfy requirements
of scheduled update of package for CPAN module IO::Compress.
Upstream changes since 2.049:
2.052 29 April 2012
* No Changes
|
|
|
|
devel/p5-Compress-Raw-Zlib from 2.051 to 2.054.
Upstream changes:
2.054 8 May 2012
* Build issue on Win32
[#77030]
2.053 6 May 2012
* Include zlib 1.2.7 source.
2.052 29 April 2012
* Fixed build issue when Perl is built with C++
|
|
|
|
from 1.35nb1 to 1.37.
Upstream changes (since 1.35):
1.37 to be released
- Updated to SQLite 3.7.12.1 (ISHIGAKI)
1.36_04 Sat 19 May 2012
- Final developer release
- Updated to SQLite 3.7.12 (ISHIGAKI)
- Tweaked Makefile.PL to behave better during the Bsymbolic
check (HMBRAND)
- Added SQLITE_WITHOUT_ZONEMALLOC for older MacOS X (ISHIGAKI)
1.36_03 Mon 7 May 2012
- Updated to SQLite 3.7.11 (ISHIGAKI)
- Fix >32bit integer truncation and other sqlite_set_result
condition issue (Yuriy Kaminskiy)
- Fix integer overflow in passing argument to perl function
(Yuriy Kaminskiy)
- Convert unsigned -> int64 when possible (Yuriy Kaminskiy)
- Turned datatype mismatch error (introduced in 1.34_02) into
a warning (you can disable this warning by setting PrintWarn
attribute to false). (ISHIGAKI)
- Refactored sqlite_is_number to fix various corner cases
(ISHIGAKI)
1.36_02 Thu 23 Feb 2012
- Downgraded SQLite to 3.7.9, as 3.7.10 turned out to be
broken on the latest MacOS X (due to a missing symbol),
and broke other modules that typically use temporary tables
under a few environments too. As of this writing, would-be
3.7.11 seems fine, but it would take another month to be
released. (ISHIGAKI)
1.36_01 Thu 19 Jan 2012
*** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
- Updated to SQLite 3.7.10 (ISHIGAKI)
Note that this release changed the default schema format
number, that means newly created database files will be
unreadable by SQLite version prior to 3.3.0 (2006-01-10)
(or DBD::SQLite prior to 1.12) unless you explicitly issue
"PRAGMA legacy_file_format=ON".
- Enabled SQLITE_ENABLE_FTS4
- Enabled SQLITE_ENABLE_STAT3
- Resolved #73159: FTS tokenizer segfault (ISHIGAKI)
- Resolved #73787: sqlite_see_if_its_a_number causes a buffer
overflow (ISHIGAKI)
- Resolved #73314 for DBD-SQLite: binding of 64bit integers fail
on 1.34_02 (ISHIGAKI)
- Implemented sqlite_trace and sqlite_profile methods for simpler
tracing/profiling; use DBI_TRACE/DBI_PROFILE for more
complicated cases (ISHIGAKI)
|
|
|
|
0.33 to 0.35.
pkgsrc changes:
- bump version required for Text::CSV_XS to newly recommended version
Upstream changes:
0.35 - 2012-05-24, H.Merijn Brand
* Improved documentation (including mje's contribution)
* Tested under 5.16.0 (installed)
0.34 - 2012-05-12, H.Merijn Brand
* Updated copyright to 2012
* Require 5.8.1, as DBI does
* Tested against perl-5.16.0-RC0 + DBI-1.620
|
|
|
|
from 0.88 to 0.90.
Upstream changes since 0.88:
0.90 - 2012-06-15, H.Merijn Brand
* Drop 5.005 support (5.6.1 is now minimum)
* Introduce record_number
* Try harder to get the complete input parsed for the current record
when hitting errors on parsing seekable IO (only works in 5.14.0 and up)
* Tested with perl 5.6.1 .. 5.17.0 (99 versions of perl) on Linux, HP-UX,
AIX, and Windows
* SvSETMAGIC was missing for tied variables causing weird actions at a
distance, e.g. in printf (Thanks TonyC for finding this)
* UTF8 flag was not always reset when using bound variables (TonyC)
|
|
in PR 46654.
|
|
baloney *didn't* break.
|
|
|