pkgsrc changes:
- bump p5-Text-CSV_XS requirement to 0.73
Upstream changes:
1.18 Sat Jun 19 10:34:07 2010
- fixed a combine bug with quote_space reported and patched by rt#58356
- updated test files compatible to CSV_XS 0.73
1.17 Tue Mar 16 15:20:34 2010
- fixed parse working when setting quote_char undef.
- made Text::CSV_XS compat 0.71
* Text::CSV->error_diag() in void context warns instead of doing nothing
* auto_diag also used for new () itself
- added quote_null (introduced in Text::CSV_XS 0.72)
Including Mercurial/hg support especially for our Python users :)
Upstream changes:
1.07 Mon 31 May 2010
- Added git support to resolve#43558: .git missing
- Extend test for bzr, git and default invocation
(Jens Rehsack)
- Added support for RCS (RT#43559) and Mercurial/hg
(Jens Rehsack)
pkgsrc changes:
- switching to Module::Build
- add license definition
Upstream changes:
0.02 2010-04-28
- Taking maintainership (Jens Rehsack)
- Implement optimized versions for slice, slice_exists and
slice_def
- Add test for each function to work proper with default keys
- Add safe_reverse as wished in RT#48403 (Ed Davis)
- Add test for hashsort
Based on packaged by uebayasi@ in pkgsrc-wip-jp,
Modified by Ryo ONODERA in pkgsrc-wip.
A basic set of Kana-Kanji conversion dictionary developed by SKK project.
Upstream changes:
1.30 - 2010-07-15
Fixing MSWin32
1.29
Fixing MacOS X
1.28
Adding more special file systems for Linux (looks in Linux soon
everything is a file system), Fixes RT#55059 (Thanks to Reed Loden)
Improving documentation about selections in filesystems method,
Fixes RT#55058 (Thanks to Reed Loden)
Fixes RT#65504 (Thanks to Brett Gersekowski)
Improve MSWin32 support
pkgsrc changes:
- add conflicts for p5-SQL-Statement<=1.27 and p5-DBI<=1.611
Upstream changes (since 1.28):
2010-07-06 0.30 H.Merijn Brand
* Text::CSV_XS now called with auto_diag
* Implement valid_attrs
* Next version will require DBI-1.612 or higher
This is a transition release
2010-07-04 0.29_03 H.Merijn Brand
* Remove leftover debug. Causes fails
2010-07-02 0.29_02 H.Merijn Brand
* More work to keep in sync with DBI development (Jens)
* Better diagnostics for missing modules
* More spell-check fixes
* Tests for ChopBlanks (now fixed in DBD::File)
* Tests changed to accept old and new DBI
* Statement handle attributes handled in new DBD::File
2010-06-11 0.29_01 H.Merijn Brand
* Prepare for DBD::File-0.39 (DBI-1.612+)
Should still work with older DBI versions
* Documentation updates (style, consistency, spell-checking)
* Test folder cleanup
* More tests for insert
* Tested RT#58039
2010-05-03 0.29 H.Merijn Brand
* Fix git URL in META.yml
* Add empty CLONE method to prevent warning when cloning threads
* Minimum perl 5.8.1
* Minimum Text::CSV_XS 0.71
* Support for f_encoding (requires DBI-1.611)
* Documentation updates
pkgsrc changes:
- require DBI-1.612 for testing
- add conflict for DBI<=1.612
Upstream changes:
Version 1.28, release July 15th, 2010
----------------------------------------------
[Improvements]
* Introduce new "capability" method for SQL::Statement and SQL::Eval::Table
+ Add capability for "insert_new_row" to allow DBD::DBM to fix PK
constrain on INSERT statements.
* Performance of IMPORT feature improved (thanks to Sven Probst, RT#57322)
[Bug fixes]
* expect every table object being derived from SQL::Eval::Table
* rewrite DELETE and UPDATE command based on table capabilities
* add abstract methods for all methods derived classes must override
(this means, open_table for SQL::Statement deriveds must be overridden
and all data access methods of tables - see SQL::Eval::Table for details)
* Tests are fixed to use TEMP TABLES explicitely when required
* check for invalid column names fixed
* Don't let depreciated parser structures stay alive in SQL::Statement when
reusing the Parser
[Documentation]
* Method documentation of SQL::Statement and SQL::Eval::Table are improved
* Add a Roadmap describing future plans for SQL::Statement (in addition to
DBD::File::Roadmap).
* POD spelling fixes provided by H.Merijn Brand and Pod::Spell::CommonMistakes
(thanks Tux)
* POD grammar fixes and reasonable sentences created by Martin Evans
[Things that may break your code]
* SQL::Statement 1.28 is expected not to work proper in combination with
DBI 1.611 and below
* SQL::Statement::ColumnValue expects now every table being derived from
SQL::Eval::Table
pkgsrc changes:
- bumping required API version to 1.612 (Meta-DBD API has changed)
Upstream changes:
Changes in DBI 1.612 (svn r14254) 14th July 2010
NOTE: This is a minor release for the DBI core but a major release for
DBD::File and drivers that depend on it, like DBD::DBM and DBD::CSV.
This is also the first release where the bulk of the development work has
been done by other people. I'd like to thank (in no particular order)
Jens Rehsack, Martin J. Evans, and H.Merijn Brand for all their contributions.
Fixed DBD::File's {ChopBlank} handling (it stripped \s instead of space
only as documented in DBI) (H.Merijn Brand)
Fixed DBD::DBM breakage with SQL::Statement (Jens Rehsack, fixes RT#56561)
Fixed DBD::File file handle leak (Jens Rehsack)
Fixed problems in 50dbm.t when running tests with multiple
dbms (Martin J. Evans)
Fixed DBD::DBM bugs found during tests (Jens Rehsack)
Fixed DBD::File doesn't find files without extensions under some
circumstances (Jens Rehsack, H.Merijn Brand, fixes RT#59038)
Changed Makefile.PL to modernize with CONFLICTS, recommended dependencies
and resources (Jens Rehsack)
Changed DBI::ProfileDumper to rename any existing profile file by
appending .prev, instead of overwriting it.
Changed DBI::ProfileDumper::Apache to work in more configurations
including vhosts using PerlOptions +Parent.
Add driver_prefix method to DBI (Jens Rehsack)
Added more tests to 50dbm_simple.t to prove optimizations in
DBI::SQL::Nano and SQL::Statement (Jens Rehsack)
Updated tests to cover optional installed SQL::Statement (Jens Rehsack)
Synchronize API between SQL::Statement and DBI::SQL::Nano (Jens Rehsack)
Merged some optimizations from SQL::Statement into DBI::SQL::Nano
(Jens Rehsack)
Added basic test for DBD::File (H.Merijn Brand, Jens Rehsack)
Extract dealing with Perl SQL engines from DBD::File into
DBI::DBD::SqlEngine for better subclassing of 3rd party non-db DBDs
(Jens Rehsack)
Updated and clarified documentation for finish method (Tim Bunce).
Changes to DBD::File for better English and hopefully better
explanation (Martin J. Evans)
Update documentation of DBD::DBM to cover current implementation,
tried to explain some things better and changes most examples to
preferred style of Merijn and myself (Jens Rehsack)
Added developer documentation (including a roadmap of future plans)
for DBD::File
Packaged by Ryo ONODERA.
This package contains IPAex Gothic font and IPAex Mincho font. IPAex
fonts contains fixed-width (monospace) Kanji glyphs that is based on
JIS X 0213 and proportional Western characters glyphs.
IPA means Information-technology Promotion Agency, Japan.
Packaged by Ryo ONODERA.
This package contains IPA Gothic font, IPA P Gothic font, IPA Mincho
font, and IPA P Mincho font. Kanji characters in these fonts are
based on JIS X 0213-2004.
IPA is for Information-technology Promotion Agency, Japan.
Bugfixes:
* Bugreport #127: Large SOA serial numbers were not handled properly by signer
* Bugreport #133: Better handling of SOA serial when setting is 'keep'
* Bugreport #136: quicksorter could not handle standard bind format SOA rdata
* The Auditor could not handle the new way of rolling KSKs
* One log message in the Enforcer referred to an old command
* The Enforcer forgot to publish certain keys during transition between states
changes:
-ap_flac_embed: do not forget to import cue sheet into flac,
rather than just artist/title metadata
-main.c: ensure that gettext always returns UTF-8, because GTK
expects UTF-8 strings
Clutter 1.2.12 (14/07/2010)
===============================================================================
* List of changes since Clutter 1.2.10
> Provide a fallback for MESA_copy_sub_buffer by using the
EXT_blit_framebuffer extension. (BCP#2128)
> Never promote clipped redraws to fullscreen redraws. (BCP#2136)
> Fix rounding error in ClutterText. (BCP#2170)
> Fix drawing of transparent stages on X11. (BCP#2050)
> ClutterAnimator bug fixes.
> ClutterAnimation fixes for vector-based API. (BCP#2149)
> Fixes for the Windows backend event handling. (BCP#2135)
> Fixes for the setup of the GL context on OSX. (BCP#1394)
> Documentation improvements. (BCP#2081, BCP#2133)
> Build fixes for the conformance test suite. (BCP#1930)
this commit moves from 8.24 (a non-production release which upstream
has requested we don't package) to 8.25.
Changes 8.15 to 8.25 are many minor bug fixes and improvements.
changes:
-new compressor called Blosc (speed-up)
-A new `tables.Expr` module (based on Numexpr) that allows to do
persistent, on-disk computations on many algebraic operations.
-Support for HDF5 hard links, soft links and automatic external links
-Suport for 'fancy' indexing
-bugfixes
* Bugs fixed:
- TGA files saved with incorrect header yOrigin data
- Save As... does not save Windows Bitmap as default in dialog
- CMYK decompose broken
- brush - color from gradient works wrong in greyscale
- Error in gimp-hue-saturation PDB call
- GIMP crashes when clicking any scroll bar from combo boxes
- newly opened images are put into the background
* Updated translations:
German (de)
Italian (it)
Romanian (ro)
Portuguese (pt)
Pkgsrc changes:
- adjust dependencies
Upstream changes:
0.62 Tue Jul 6 20:18:58 2010
[FEATURES]
* Support MouseX::StrictConstructor (gfx)
0.61 Sat Jun 19 15:35:48 2010
[BUG FIXES]
* Workaround the Perl_call_sv() problem again (gfx)
* Update Module::Install to 0.99 for older versions of perls (gfx)
0.60 Wed Jun 9 19:43:55 2010
[CHANGES]
* BUILDALL is now called by Mouse::Meta::Class::new_object, rather than
by Mouse::Object::new. (Moose 1.05)
[BUG FIXES]
* Fix type constraint validation messages to not include the string
'failed' twice in the same sentence. (Moose 1.05)
* Resolve RT #57975: The prefix "Exception caught" is no longer added
to exceptions Mouse catches. (gfx)
[OTHERS]
* A difficult test (t/900_mouse_bugs/006_RT69939.t) will be skipped on
some platforms. (gfx)
0.59 Tue May 18 16:29:57 2010
[CHANGES]
* Improve error messages on $class->accessor() (gfx)
0.58 Sat May 8 11:18:17 2010
[BUG FIX]
* Compliant with 5.12.0+
0.57 Fri May 7 14:27:00 2010
[BUG FIX]
* Resolve RT #57144: Fix problems in Perl_call_sv() again (gfx)
0.56 Thu Apr 29 11:15:45 2010
[BUG FIX]
* Resolve RT#56837: Role application to instance with init_arg'd
attributes caused problems (Sanko Robinson)
0.55 Wed Apr 21 13:27:13 2010
[BUG FIX]
* Fix a bug that traits could cause panic/SEGV on threads (gfx)
0.54 Sat Apr 17 17:15:54 2010
[BUG FIX]
* Resolve RT#56523: has with reader, writer, lazy and builder
could not create a write-only accessor (Michael G Schwern)
0.53 Sun Apr 11 11:39:03 2010
[BUG FIX]
* Mouse::Meta::Class could not clone objects with "required" attrs (gfx)
0.52 Sat Mar 27 15:38:52 2010
* Workaround Perl-RT#69939 (eval "use $module" in Perl_call_sv()
may cause segmentation faults,
http://rt.perl.org/rt3/Public/Bug/Display.html?id=69939)
0.51 Mon Mar 15 15:25:58 2010
SUMMARY
[BUG FIXES]
* Mouse::Object::DESTROY could cause SEGVs
* Attribute triggers could cause panics
* Integers > 2**32 were not groked as Int
* Incorrect types, e.g. "Array[Int", was accepted
* Metaclass compatibility was sometimes ignored
[MOOSE COMPATIBILITY]
* before/around/after accept regular expressions
* has() becomes strict
* the global destruction flag is passed to DEMOLISH methods
* Delegations can be curried
* Built-in type constraints have the same hierarchy as Moose's
0.50_09 Mon Mar 15 12:02:28 2010
* (re)fix RT #55048 to grok 2**46+0.5 as Int, but
accept 2**46 as Int even on 32 bit environments;
note that an Int is exactly what is matched to /^[+-]?[0-9]+$/,
so 10e100 will not be groked as Int (gfx)
0.50_08 Thu Mar 11 19:28:58 2010
* Makefile.PL
- Resolved#55419: Add Devel::PPPort to build_requires (gfx)
* Mouse::Exporter
- Turns on warnings FATAL => 'recursion' by default (gfx)
* Mouse::Util::TypeConstraints
- Change the type parser to check syntax (gfx)
(Now it throws erros to "ArrayRef[]", "ArrayRef[Int", etc.)
0.50_07 Sun Mar 7 19:59:37 2010
* Mouse::Meta::Attribute
- Fix a possible panic, caused by triggers, reported by
Nobuo Danjou (gfx)
0.50_06 Tue Mar 2 18:35:12 2010
* Mouse::PurePerl
- Fix an issue on metaclass compatibility again (gfx)
- Fix more-than-32-bit-int progrem again (gfx)
0.50_05 Mon Mar 1 11:18:26 2010
* Mouse::Util::TypeConstraints
- Mouse used an incorrect cast at the C-level which meant that
its idea of numbers was different from that of Perl's (and
Mouse's). Notably > 2**32 Integers on 32 bit systems didn't
work, RT #55048 (AEvar).
* Mouse::Meta::Classs
- Fix an issue on metaclass compatibility (gfx)
0.50_04 Fri Feb 26 18:57:24 2010
* All
- Warnings are less noisy, as shown by example/warns.pl (gfx)
- Various optimization and refactoring (gfx)
0.50_03 Mon Feb 22 17:56:47 2010
* Mouse::Meta::Attribute
- Catch up about Moose 0.84 about warnings (gfx)
- If an attribute generates no accessors, it will be warned
- If both 'isa' and 'does' are specified and 'isa' does not do
'does', then it will be warned
* Mouse::Object
- Fix a possible segv which is caused by destructors (gfx)
* Mouse::Util::TypeConstraints
- Implement the built-in type hierarchy (gfx)
0.50_02 Sat Feb 20 14:37:16 2010
* Mouse::Meta::Attribute
- Implement argument currying for delegation (gfx)
* Mouse::Meta::Method::Constructor
- Implement strict constructors experimentally, which will warn
unkown constructor arguments (gfx)
0.50_01 Sat Feb 13 16:39:48 2010
* Mouse
- before/around/after now accept regexps (gfx)
* Mouse::Object
- Support the global destruction flag in DEMOLISH (gfx)
* Mouse::Meta::Attribute
- Attribute constructors now warn very noisily about unknown (or
misspelled) arguments (gfx)