Upstream changes:
1.36 Wed 7 Jan 2009
- Fixing missing feature reported by H.Merijn Brand
1.35 Wed 17 Dec 2008
- Production release for changes in 1.34_01
- No other changes
1.34_01 Wed 19 Nov 2008
- Improving sub-classability by passing the indent level through
to the ->_write_scalar method.
1.33 Thu 24 Jul 2008
- Export Load and Dump functions by default.
Pkgsrc changes:
o Add PERL5_REQD+= 5.8.3
Upstream changes:
version: 0.30
date: Sun Jan 11 12:53:55 IST 2009
changes:
- Plug a leak in Load
- More efficient intermediate structure allocation
Upstream changes:
0.05 Mon Dec 15 2008
- skip some tests when missing English dictionary
- added license
0.04 Sun Dec 14 2008
- patch by Yanick Champoux with three changes :
- lang option
- cached Text::Aspell object
- made suggestions() context-aware
Pkgsrc changes:
o Add PERL5_REQD+=5.8.0
Upstream changes:
0.8 2008/12/07
- Added support for ddns-rev-name, ddns-txt and ddns-fwd-name
statements, based on patch by Franck Joncourt.
Upstream changes:
0.30 - 2008-11-26
* Remove the "wrapper" export, its name is too generic and clashes with a lot
of existing code. It's a negligible amount of sugar.
Pkgsrc changes:
o Add some cludges to tell pkgsrc this is really version 1.61, not 1.61a
(the module version is 1.61)
Upstream changes:
Changes for version 1.61 (Dec 29, 2008)
------------------------
- Fix bugs in locale operations for format_price (thanks Moritz Onken)
- Fix documentation in format_bytes (rt # 42036)
- Enable warning when format_bytes called with numeric precision not hash
Pkgsrc changes:
o Adjust dependencies, including reshuffling to match contents
and order in META.yml
o Require perl version 5.8, also according to META.yml
Upstream changes:
4.63 Sat Jan 3 12:46:15 EST 2009
[DOCUMENTATION]
- Improve docs for writing your own constraints (girlwithglasses)
4.62 Sat Jan 3 12:10:14 EST 2009
[DOCUMENTATION]
- Fix typo in ConstraintsFactory docs (Geraint A. Edwards)
- Clarified docs for get_filtered_data (Lisa Hagemann)
- Clarify that 'field_filter_regexp_map' can take coderefs as
values (Ron Savage)
[INTERNALS]
- Better diagnostics when load_profiles fails (Thoralf Klein)
- Improved portability of t/untaint.t (Alexandr Ciornii)
- Make some tests conditional on Date::Calc being installed (Frank Wiles)
Omega 1.0.10 (2008-12-23):
build system:
* This release now uses newer versions of the autotools (autoconf 2.62 ->
2.63; automake 1.10.1 -> 1.10.2). The newer autoconf fixes a regression
in autoconf 2.62 (and so Omega 1.0.7) with detecting the endian-ness of some
platforms.
Omega 1.0.9 (2008-10-31):
documentation:
* docs/overview.html: Document HTML parsing a bit, including robots
meta and htdig_noindex.
omega:
* omega: Catch std::exception and report what its what() method returns.
* omega: Remove undocumented and non-functional support for numeric sorting
via CGI parameter SORT=#<slot> (SORT=<slot> works as before).
build system:
* configure: Sync warning flag handling changes from xapian-core to eliminate
many warnings from GCC 4.3.
Omega 1.0.8 (2008-09-04):
documentation:
* Fix a few typos and improve wording in a few places.
indexers:
* omindex:
+ If the character encoding is specified using <meta http-equiv=...> in an
HTML document then reparse the document if it isn't the encoding we're
already using so that any preceding <title> is converted correctly
(bug#292).
+ Convert text from meta tag parameters to UTF-8 (bug#293).
+ Handle <meta charset="..."> (new in HTML 5).
+ Fix bug in HTML tag parameter parsing which was probably just a small
performance penalty in real world cases, but could perhaps result in
parsing bogus extra parameters in carefully contrived situations.
portability:
* Add missing <signal.h>, noted on FreeBSD by Henrik Brix Andersen.
Xapian-core 1.0.10 (2008-12-23):
API:
* Composing an OP_NEAR query with two non-term subqueries now throws
UnimplementedError instead of AssertionError (in a --enable-assertions build)
or leading to unexpected results (otherwise). This partly addresses bug#201.
* Using a MultiValueSorter with no values set no longer causes a hang or
segmentation fault (but it is still rather pointless!)
matcher:
* If we're using values for sorting and for another purpose, cache the
Document::Internal object created to get the value for sorting, like we do
between other uses.
flint backend:
* If the disk became full while flushing database changes to disk, the
WritableDatabase object would throw a DatabaseError exception but be left in
an inconsistent state such that further use could lead to the database on
disk ending up in a "corrupt" state (theoretically fixable, but no tool
to fix such a database exists). Now we try to ensure that the object is
left in a consistent state, but if doing so throws a further exception, we
put the WritableDatabase object in a "closed" state such that further
attempts to use it throw an exception.
* Create the lockfile "flintlock" with permissions 0666 so that the umask is
honoured just like we do for the other files (previously we used 0600).
Previously it wasn't possible to lock a database for update if it was
owned by another user, even if you otherwise had sufficient permissions via
"group" or "other".
* Fix garbled exception message when a base file can't be reread.
quartz backend:
* Fix garbled exception message when a base file can't be reread.
remote backend:
* xapian-tcpsrv and xapian-progsrv now accept -w as a short form of --writable,
as was always intended.
build system:
* This release now uses newer versions of the autotools (autoconf 2.62 ->
2.63; automake 1.10.1 -> 1.10.2).
documentation:
* INSTALL: Add new paragraphs about HP's aCC and IRIX (adapted from footnotes
in PLATFORMS).
* PLATFORMS: HP testdrive has been shut down, so all mark all those machines as
"no longer available". Update atreus' build report to 1.0.10.
* docs/queryparser.html: Add link to valueranges.html.
examples:
* delve: Add missing "and" to --help output. Report termfreq and collection
freq for each term we're asked about.
portability:
* Fix to build with GCC 4.4 snapshot.
Xapian-core 1.0.9 (2008-10-31):
API:
* Database::get_spelling_suggestion() is now faster (15% speed up for parsing
queries with FLAG_SPELLING_CORRECTION set in a test on real world data).
* Fix OP_ELITE_SET segmentation fault due to excess floating point precision
on x86 Linux (and possibly other platforms).
* Database::allterms_begin() over multiple databases now gives a TermIterator
with operations O(log(n)) rather than potentially O(n) in the number of
databases.
* Add new Database methods metadata_keys_begin() and metadata_keys_end() to
allow the complete list of metadata in a database to be retrieved (this
API addition is needed so that copydatabase can copy database metadata).
testsuite:
* Remove the cached test databases before running the testsuite.
* apitest: Fix cursordelbug1 to work on Microsoft Windows (bug#301).
* apitest,queryparsertest: Skip tests which fail because the timer granularity
is too coarse to measure how long the test took. In practice, this is only
an issue on Microsoft Windows (bug#300 and bug#308).
matcher:
* Adjust percent cutoff calculations in the matcher in a way which corresponds
to the change to percentage calculations made in 1.0.7 to allow for excess
precision.
* Query::MatchAll no longer gives match results ranked by increasing document
length.
flint backend:
* xapian-compact: Fix crash while compacting spelling table for a single
database when built with MSVC, and probably other platforms, though Linux
got lucky and happened to work (bug#305).
build system:
* configure: Disable -Wconversion for now - it's not useful for older GCC and
is buggy in GCC 4.3.
* configure: Set -Wstrict-overflow to 1 instead of 5, to avoid unreasonable
warnings under GCC 4.3.
documentation:
* Minor improvements to API documentation, including documenting the
XAPIAN_FLUSH_THRESHOLD environmental variable in WriteableDatabase::flush()
(bug#306).
* valueranges.html: Fix typos in example code, and drop superfluous empty
destructor from ValueRangeProcessor subclass.
* HACKING: Several improvements.
examples:
* copydatabase: Also copy user metadata.
Xapian-core 1.0.8 (2008-09-04):
API:
* Fix output of RSet::get_description
testsuite:
* Report subtotals per backend, rather than per testgroup per backend to make
the output easier to read.
flint backend:
* Fix WritableDatabase::add_document() and replace_document() not to be O(n*n)
in the number of values in the new document.
* Fix handling of a table created lazily after the database has had commits,
and which is then cursored while still in sequential mode.
* Fix failure to remove all the Btree entries in some cases when all the
postings for a term are removed. (bug#287)
* xapian-inspect: Show the help message on start-up. Correct the documented
alias for next from ' ' to ''. Avoid reading outside of input string when it
is empty. (bug#286)
quartz backend:
* Backport fix from flint for WritableDatabase::add_document() and
replace_document() not to be O(n*n) in the number of values in the new
document.
build system:
* configure: Report bug report URL in --help output.
* xapian-config: Report bug report URL in --help output.
* configure: Fix deprecation error for --enable-debug=full to say to instead
use '--enable-assertions --enable-log' not '--enable-debug --enable-log'.
documentation:
* valueranges.html: Expand on some sections.
examples:
* quest: Fix to catch QueryParserError instead of const char * which
QueryParser threw in Xapian < 1.0.0.
* copydatabase: Use C++ forms of C headers. Only treat '\' as a directory
separator on platforms where it is. Update counter every 13 counting up to
the end so that the digits all "rotate" and the counter ends up on the exact
total.
portability:
* Eliminate literal top-bit-set characters in testsuite source code.
2008-07-05 Redland Version 1.0.8 Released
Updated to use [1]Rasqal 0.9.16 (from 0.9.15)
Updated to use [2]Raptor 1.4.18 (from 1.4.16)
Added a 'trees' indexed in-memory storage
Improvements to low-memory and other failures of resource allocation
API additions and changes to concepts, parser and serializer classes.
Fixed Issue [3]0000256
NOTE: The next release of redland will NOT include raptor and rasqal in
the tarball, they will be separate download dependencies.
See the [4]1.0.8 Release Notes for the full details of the changes.
2008-07-05 Rasqal Version 0.9.16 Released
WARNING: ABI AND API CHANGED in this release. Rasqal 0.9.16 is
incompatible with 0.9.15.
Added a rasqal_world object used for all constructor functions
Removed deprecated functions and macros
Fixed some memory leaks and made some low-memory resiliance fixes
Query result sets can be read/written from sparql XML results format
Improved error syntax error reporting
See the Raptor 0.9.16 Release Notes for the full details of the
changes.
iso-codes 3.5.1
---------------
Tobias Quathamer <toddy@debian.org>
Fri, 2 January 2009
[ ISO 4217 translations ]
* Dutch by Freek de Kruijf (TP)
* Indonesian by Erwid M Jadied (TP)
* Vietnamese by Clytie Siddall (TP)
[ ISO 15924 translations ]
* Indonesian by Erwid M Jadied (TP)
* Traditional Chinese by Wei-Lun Chao (TP)
[ ISO 639 translations ]
* Vietnamese by Clytie Siddall (TP)
* Asturian by Marcos Alvarez Costales (TP)
[ ISO 3166 translations ]
* Vietnamese by Clytie Siddall (TP)
iso-codes 3.5
-------------
Tobias Quathamer <toddy@debian.org>
Wed, 3 December 2008
[ General ]
* Add note about missing file iso_3166.tab in README. Closes: #498367
[ ISO-639-3 ]
* Update to 2008-11-10
[ ISO-4217 ]
* Replace acronym "SDR" with "Special Drawing Rights"
[ ISO-3166 translations ]
* Portuguese by Miguel Figueiredo
* Simplified Chinese by LI Daobing (TP)
* Indonesian by Andhika Padmawan (TP)
* Irish by Kevin Scannell (TP)
* Korean by Changwoo Ryu (TP)
* Finnish by Tommi Vainikainen (TP)
* Dutch by Freek de Kruijf (TP)
* Estonian by Tõivo Leedjärv
* Occitan correction by Yannick Marchegay. Closes: alioth#311228
* Polish by Łukasz Paździora. Closes: #505898
* Esperanto by Edmund GRIMLEY EVANS (TP)
[ ISO-3166-2 translations ]
* Finnish by Tommi Vainikainen (TP)
* French completed by Christian Perrier
* Occitan correction by Yannick Marchegay. Closes: alioth#311229
[ ISO-639-3 translations ]
* French updated by Christian Perrier
* Occitan correction by Yannick Marchegay. Closes: alioth#311231
[ ISO-639 translations ]
* Simplified Chinese by LI Daobing (TP)
* Italian by Milo Casagrande (TP)
* Finnish by Tommi Vainikainen (TP)
* Dutch by Freek de Kruijf (TP)
* Occitan correction by Yannick Marchegay. Closes: alioth#311230
* German completed by Tobias Quathamer
* Esperanto by Edmund GRIMLEY EVANS (TP)
[ ISO-4217 translations ]
* Occitan correction by Yannick Marchegay. Closes: alioth#311232
* German completed by Tobias Quathamer
[ ISO-15924 translations ]
* Occitan correction by Yannick Marchegay. Closes: alioth#311227
Changes in 0.14.1:
------------------
* Fixed some LTR issues, more remain on bug #563559 (Shaun McCance)
* chmod +x gnome-doc-{tool,prepare} on configure, #557732 (Christian Persch)
* Symlink non-localized figured to C figures, #557227 (Christian Persch)
* Updated translations:
ar (Khaled Hosny)
ja (Mitsuya Shibata)
Data::HexDump - A Simple Hexadecial Dumper
DESCRIPTION
Dump in hexadecimal the content of a scalar. The result is returned in a
string. Each line of the result consists of the offset in the
source in the leftmost column of each line, followed by one or more
columns of data from the source in hexadecimal. The rightmost column
of each line shows the printable characters (all others are shown
as single dots)
Pkgsrc changes:
o Apply fix from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=470250
to prevent this module from looping on input "words" longer than
the current wrap coloumn. Problem also reported upstream via
CPAN's RT system.
Upstream changes:
version: 0.29
date: Tue Nov 11 22:57:07 PST 2008
changes:
- Check SvNIOK when dumping and format if quotes when it's a string that looks
like a number
- Parse plain scalars as numbers when they look like numbers
- Load nulls as newSV(0) instead of &PL_sv_undef to avoid "Modification of
non-creatable hash value attempted" errors
version: 0.28
date: Mon Jun 23 15:23:24 PDT 2008
changes:
- Apply UTF8 patch supplied by KLEINJ in rt.cpan#36734
Changelog:
0.606 Wed Dec 3 00:09:34 GMT 2008 <joe@kafsemo.org>
- Ensure META.yml spec version matches URL.
0.605 Mon Dec 1 23:01:21 GMT 2008 <joe@kafsemo.org>
- Use MIT license, formalising David Megginson's original
("No warranty. Commercial and non-commercial use freely
permitted.").
- Fix from Yanick Champoux for dataElements namespaces (#41359).