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)