diff options
author | schmonz <schmonz@pkgsrc.org> | 2012-01-10 01:06:31 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2012-01-10 01:06:31 +0000 |
commit | f59fd0dac923574d7f91280b0495c1c1e5e04461 (patch) | |
tree | 3527a92bed2bba0682b3f54218732f7633a23b4d /textproc/p5-Search-Xapian | |
parent | ef1339ddcab08e7a7e1b9d62298eae374beff51f (diff) | |
download | pkgsrc-f59fd0dac923574d7f91280b0495c1c1e5e04461.tar.gz |
Update to 1.2.8.0. From the changelog:
1.2.8.0 Tue Dec 13 14:45:07 UTC 2011
[Changes contributed by Olly Betts]
- Add note to README about documentation, pointing out that the docs
for Xapian are useful.
- Improve note in README about moving to SWIG-generated wrappers in the
next release series.
1.2.7.0 Wed Aug 10 06:14:53 UTC 2011
[Changes contributed by Olly Betts]
- Note in README that the hand-coded XS wrappers are heading for
retirement.
1.2.6.0 Sun Jun 12 11:55:42 UTC 2011
[Changes contributed by Adam Sjøgren]
- Wrap new method QueryParser::set_max_wildcard_expansion().
(ticket#350)
1.2.5.0 Mon Apr 4 14:00:38 UTC 2011
[Changes contributed by Olly Betts]
- simpleindex.pl - use 'while' to loop over input lines - 'foreach'
reads them all in and then loops over them, while reads and processes
line by line.
- Add '1;' to the end of t/symbol-test/SymbolTest.pm.
1.2.4.0 Thu Dec 19 12:41:49 UTC 2010
[Changes contributed by Olly Betts]
- Xapian exceptions were still being thrown as strings in Perl in
some cases. Now all cases throw a subclass of Search::Xapian::Error.
For compatibility with code which expects the previous behaviour
these subclasses auto-stringify to the string which would have been
thrown before.
- Make sure all Perl files have 'use strict;' and 'use warnings;'.
- Remove superfluous 'use Carp;' from generated error classes.
- t/document.t,t/index.t,t/search.t: Test TermIterator::get_termname().
- Makefile.PL now looks for CXXFLAGS and CPPFLAGS passed on the
command line, and adds them to CCFLAGS in the generated Makefile.
[Changes contributed by Tim Brody]
- New testcase t/10query.t.
[Changes contributed by David F. Skoll and Dave O'Neill]
- Tell DynaLoader to load the module with RTLD_GLOBAL so exceptions
still work when multiple Perl modules which link to xapian-core are
loaded. (ticket#522)
1.2.3.0 Tue Aug 24 06:03:12 UTC 2010
[Changes contributed by Tim Brody]
- Allow user-specified ExpandDecider to be specified to get_eset().
[Changes contributed by Jess Robinson]
- Fix bogus "can't find libtool" error when rerunning Makefile.PL and
XAPIAN_CONFIG isn't explicitly specified.
1.1.4.0 Mon Feb 15 14:08:51 UTC 2010
[Changes contributed by Henry Combrinck]
- Add wrappers for the spelling correction functionality (ticket#420).
- Add wrapper for Database::close() (ticket#422).
1.1.3.0 Wed Nov 18 11:00:23 UTC 2009
[Changes contributed by Olly Betts]
- Wrap new Xapian::SerialisationError class.
- Ship simplematchdecider.pl example, which was added in 1.0.13.1 but
accidentally not added to 1.1.1.0.
- Work around odd rerunning of Makefile.PL by MakeMaker when srcdir !=
builddir.
1.1.1.0 Tue Jun 9 13:22:07 UTC 2009
[Changes contributed by Olly Betts]
- Add Search::Xapian::MSet::items() method which returns an array
tied to the MSet (much like Search::Xapian::Enquire::matches(), but
you get easy access to the MSet object itself too).
- Add the ability to tie an ESet to an array and a new
Search::Xapian::ESet::items() method to make use of it.
- Add new translated version of the simple examples from the Python
bindings.
- Add more fully featured examples: full-indexer.pl and
full-searcher.pl.
- Add better test coverage for MatchDecider.
- Catch C++ exceptions from methods of Document and rethrow as Perl
exceptions (ticket#284).
- Add dependency to regenerate Makefile if Xapian.pm changes (since the
former contains a version number extracted from the latter).
1.1.0.0 Thu Apr 22 13:56:31 GMT 2009
[Changes contributed by Andreas Marienborg and Olly Betts]
- Xapian C++ exceptions classes are now wrapped and C++ exceptions
are caught and rethrown in Perl as the wrapped classes.
[Changes contributed by Olly Betts]
- Xapian-core now uses libtool 2.2.x, which has required changes to
the how we cram libtool into the MakeMaker-generated Makefile.
However, there's still a wrinkle in this change - you can't currently
run "make install" in a tree configured to use an uninstalled
xapian-core.
1.0.23.0 Fri Jan 14 04:18:24 UTC 2011
[Changes contributed by David F. Skoll and Dave O'Neill]
- Tell DynaLoader to load the module with RTLD_GLOBAL so exceptions
still work when multiple Perl modules which link to xapian-core are
loaded (ticket#522).
1.0.22.0 Sun Oct 3 12:36:44 UTC 2010
[Changes contributed by Jess Robinson]
- Fix bogus "can't find libtool" error when rerunning Makefile.PL and
XAPIAN_CONFIG isn't explicitly specified.
[Changes contributed by Tim Brody]
- New testcase t/10query.t.
Diffstat (limited to 'textproc/p5-Search-Xapian')
-rw-r--r-- | textproc/p5-Search-Xapian/Makefile | 5 | ||||
-rw-r--r-- | textproc/p5-Search-Xapian/distinfo | 8 |
2 files changed, 6 insertions, 7 deletions
diff --git a/textproc/p5-Search-Xapian/Makefile b/textproc/p5-Search-Xapian/Makefile index ec5660e636b..c717440af8f 100644 --- a/textproc/p5-Search-Xapian/Makefile +++ b/textproc/p5-Search-Xapian/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.9 2011/12/03 03:44:54 sbd Exp $ +# $NetBSD: Makefile,v 1.10 2012/01/10 01:06:31 schmonz Exp $ # -DISTNAME= Search-Xapian-1.0.21.0 +DISTNAME= Search-Xapian-1.2.8.0 PKGNAME= ${DISTNAME:S/^/p5-/} -PKGREVISION= 2 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Search/} diff --git a/textproc/p5-Search-Xapian/distinfo b/textproc/p5-Search-Xapian/distinfo index b366e3e7b5c..137c195312e 100644 --- a/textproc/p5-Search-Xapian/distinfo +++ b/textproc/p5-Search-Xapian/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2010/09/05 01:22:12 schmonz Exp $ +$NetBSD: distinfo,v 1.6 2012/01/10 01:06:31 schmonz Exp $ -SHA1 (Search-Xapian-1.0.21.0.tar.gz) = d7c7c899cf3a6bd5e8b91d0f0fa1d9dfb8af43f4 -RMD160 (Search-Xapian-1.0.21.0.tar.gz) = c81c66634e49749a08321456a73579ff0fb27521 -Size (Search-Xapian-1.0.21.0.tar.gz) = 52436 bytes +SHA1 (Search-Xapian-1.2.8.0.tar.gz) = 7f62951737e7ac417ef7fac51c679dda23c444cf +RMD160 (Search-Xapian-1.2.8.0.tar.gz) = c87fb716409f5afb490af49cfcf30fe37c3a1ab0 +Size (Search-Xapian-1.2.8.0.tar.gz) = 61945 bytes |