Mon Apr 20 22:25:12 2009 UTC ()
Update to 1.0.12. From the changelog:

* WritableDatabase::remove_spelling() now works properly.
* The QueryParser now treats NON_SPACING_MARK Unicode characters as phrase
  generators, which improves handling of Arabic.  This is a stop-gap solution
  for 1.0.x which will work with existing databases without requiring
  reindexing - in 1.1.0, NON_SPACING_MARK will be regarded as part of a word.
  (ticket#355)
* Fix undefined behaviour in distribution of OP_NEAR and OP_PHRASE over a
  non-leaf subquery (indentified by valgrind on testcase nearsubqueries1).
  (ticket#349)
* Enhance distribution of OP_NEAR/OP_PHRASE over non-leaf subqueries to work
  when there are multiple non-leaf subqueries (ticket#201).
* Enquire::get_mset() no longer needlessly checks if the documents exist.
* PostingIterator::get_description() output improved visually in some cases.
* Enquire::get_mset():
  + Now throws UnimplementedError if there's a percentage cutoff and sorting is
    primarily by value - this has never been correctly supported and it's
    better to warn people than give incorrect results.
  + No longer needlessly copies the results internally.
  + When searching multiple databases, now recalculates the maximum attainable
    weight after each database which may allow it to terminate earlier.
    (ticket#336).
  + Fix inconsistent percentage scores when sorting primarily by value, except
    when a MatchDecider is also being used; document this remaining problem
    case.  (ticket#216)
* Enquire::set_sort_by_value() (and similar methods): Rename the wrongly named
  "ascending" parameter to "reverse", and note that its value should always be
  explicitly given since defaulting to "reverse=true" is confusing and the
  default will be deprecated in 1.1.0.  (ticket#311)
* Database::allterms_begin(): Fix memory leak when iterating all terms from
  more than one database.
* Query::get_terms_begin(): Don't return "" from the TermIterator (happened
  when the query contained or was Query::MatchAll).
* Add QueryParser::FLAG_DEFAULT to make it easier to add flags to those set by
  default.


(schmonz)
diff -r1.4 -r1.5 pkgsrc/textproc/xapian/Makefile
diff -r1.2 -r1.3 pkgsrc/textproc/xapian/PLIST
diff -r1.2 -r1.3 pkgsrc/textproc/xapian/distinfo

cvs diff -r1.4 -r1.5 pkgsrc/textproc/xapian/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/xapian/Makefile 2009/01/21 06:42:32 1.4
+++ pkgsrc/textproc/xapian/Makefile 2009/04/20 22:25:12 1.5
@@ -1,29 +1,32 @@ @@ -1,29 +1,32 @@
1# $NetBSD: Makefile,v 1.4 2009/01/21 06:42:32 dsainty Exp $ 1# $NetBSD: Makefile,v 1.5 2009/04/20 22:25:12 schmonz Exp $
2# 2#
3 3
4DISTNAME= xapian-core-1.0.10 4DISTNAME= xapian-core-1.0.12
5PKGNAME= ${DISTNAME:S/-core//} 5PKGNAME= ${DISTNAME:S/-core//}
6CATEGORIES= textproc 6CATEGORIES= textproc
7MASTER_SITES= http://oligarchy.co.uk/xapian/1.0.10/ 7MASTER_SITES= http://oligarchy.co.uk/xapian/1.0.12/
8 8
9MAINTAINER= schmonz@NetBSD.org 9MAINTAINER= schmonz@NetBSD.org
10HOMEPAGE= http://xapian.org/ 10HOMEPAGE= http://xapian.org/
11COMMENT= Search engine based on Probabilistic Information Retrieval 11COMMENT= Search engine based on Probabilistic Information Retrieval
 12LICENSE= gnu-gpl-v2
12 13
13GNU_CONFIGURE= yes 14GNU_CONFIGURE= yes
14USE_LIBTOOL= yes 15USE_LIBTOOL= yes
15USE_LANGUAGES= c c++ 16USE_LANGUAGES= c c++
16 17
 18TEST_TARGET= check
 19
17PKG_OPTIONS_VAR= PKG_OPTIONS.xapian 20PKG_OPTIONS_VAR= PKG_OPTIONS.xapian
18PKG_SUPPORTED_OPTIONS= xapian-flint-backend xapian-quartz-backend 21PKG_SUPPORTED_OPTIONS= xapian-flint-backend xapian-quartz-backend
19PKG_SUGGESTED_OPTIONS= xapian-flint-backend xapian-quartz-backend 22PKG_SUGGESTED_OPTIONS= xapian-flint-backend xapian-quartz-backend
20 23
21.include "../../mk/bsd.options.mk" 24.include "../../mk/bsd.options.mk"
22 25
23PLIST_VARS+= quartz 26PLIST_VARS+= quartz
24.if !empty(PKG_OPTIONS:Mxapian-quartz-backend) 27.if !empty(PKG_OPTIONS:Mxapian-quartz-backend)
25CONFIGURE_ARGS+= --enable-backend-quartz 28CONFIGURE_ARGS+= --enable-backend-quartz
26PLIST.quartz= yes 29PLIST.quartz= yes
27.else 30.else
28CONFIGURE_ARGS+= --disable-backend-quartz 31CONFIGURE_ARGS+= --disable-backend-quartz
29.endif 32.endif

cvs diff -r1.2 -r1.3 pkgsrc/textproc/xapian/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/xapian/PLIST 2009/01/21 06:42:32 1.2
+++ pkgsrc/textproc/xapian/PLIST 2009/04/20 22:25:12 1.3
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.2 2009/01/21 06:42:32 dsainty Exp $ 1@comment $NetBSD: PLIST,v 1.3 2009/04/20 22:25:12 schmonz Exp $
2bin/copydatabase 2bin/copydatabase
3bin/delve 3bin/delve
4${PLIST.quartz}bin/quartzcheck 4${PLIST.quartz}bin/quartzcheck
5${PLIST.quartz}bin/quartzcompact 5${PLIST.quartz}bin/quartzcompact
6${PLIST.quartz}bin/quartzdump 6${PLIST.quartz}bin/quartzdump
7bin/quest 7bin/quest
8bin/simpleexpand 8bin/simpleexpand
9bin/simpleindex 9bin/simpleindex
10bin/simplesearch 10bin/simplesearch
11${PLIST.flint}bin/xapian-check 11${PLIST.flint}bin/xapian-check
12${PLIST.flint}bin/xapian-compact 12${PLIST.flint}bin/xapian-compact
13bin/xapian-config 13bin/xapian-config
14${PLIST.flint}bin/xapian-inspect 14${PLIST.flint}bin/xapian-inspect
@@ -53,30 +53,26 @@ man/man1/xapian-tcpsrv.1 @@ -53,30 +53,26 @@ man/man1/xapian-tcpsrv.1
53share/aclocal/xapian.m4 53share/aclocal/xapian.m4
54share/doc/xapian-core/admin_notes.html 54share/doc/xapian-core/admin_notes.html
55share/doc/xapian-core/apidoc.pdf 55share/doc/xapian-core/apidoc.pdf
56share/doc/xapian-core/apidoc/html/annotated.html 56share/doc/xapian-core/apidoc/html/annotated.html
57share/doc/xapian-core/apidoc/html/base_8h-source.html 57share/doc/xapian-core/apidoc/html/base_8h-source.html
58share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight-members.html 58share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight-members.html
59share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight.html 59share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight.html
60share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight__coll__graph.png 60share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight__coll__graph.png
61share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight__inherit__graph.png 61share/doc/xapian-core/apidoc/html/classXapian_1_1BM25Weight__inherit__graph.png
62share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight-members.html 62share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight-members.html
63share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight.html 63share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight.html
64share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight__coll__graph.png 64share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight__coll__graph.png
65share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight__inherit__graph.png 65share/doc/xapian-core/apidoc/html/classXapian_1_1BoolWeight__inherit__graph.png
66share/doc/xapian-core/apidoc/html/classXapian_1_1CategorySelectMatchSpy-members.html 
67share/doc/xapian-core/apidoc/html/classXapian_1_1CategorySelectMatchSpy.html 
68share/doc/xapian-core/apidoc/html/classXapian_1_1CategorySelectMatchSpy__coll__graph.png 
69share/doc/xapian-core/apidoc/html/classXapian_1_1CategorySelectMatchSpy__inherit__graph.png 
70share/doc/xapian-core/apidoc/html/classXapian_1_1Database-members.html 66share/doc/xapian-core/apidoc/html/classXapian_1_1Database-members.html
71share/doc/xapian-core/apidoc/html/classXapian_1_1Database.html 67share/doc/xapian-core/apidoc/html/classXapian_1_1Database.html
72share/doc/xapian-core/apidoc/html/classXapian_1_1Database__inherit__graph.png 68share/doc/xapian-core/apidoc/html/classXapian_1_1Database__inherit__graph.png
73share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor-members.html 69share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor-members.html
74share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor.html 70share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor.html
75share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor__coll__graph.png 71share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor__coll__graph.png
76share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor__inherit__graph.png 72share/doc/xapian-core/apidoc/html/classXapian_1_1DateValueRangeProcessor__inherit__graph.png
77share/doc/xapian-core/apidoc/html/classXapian_1_1Document-members.html 73share/doc/xapian-core/apidoc/html/classXapian_1_1Document-members.html
78share/doc/xapian-core/apidoc/html/classXapian_1_1Document.html 74share/doc/xapian-core/apidoc/html/classXapian_1_1Document.html
79share/doc/xapian-core/apidoc/html/classXapian_1_1ESet-members.html 75share/doc/xapian-core/apidoc/html/classXapian_1_1ESet-members.html
80share/doc/xapian-core/apidoc/html/classXapian_1_1ESet.html 76share/doc/xapian-core/apidoc/html/classXapian_1_1ESet.html
81share/doc/xapian-core/apidoc/html/classXapian_1_1ESetIterator-members.html 77share/doc/xapian-core/apidoc/html/classXapian_1_1ESetIterator-members.html
82share/doc/xapian-core/apidoc/html/classXapian_1_1ESetIterator.html 78share/doc/xapian-core/apidoc/html/classXapian_1_1ESetIterator.html
@@ -93,35 +89,30 @@ share/doc/xapian-core/apidoc/html/classX @@ -93,35 +89,30 @@ share/doc/xapian-core/apidoc/html/classX
93share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderAnd__inherit__graph.png 89share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderAnd__inherit__graph.png
94share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms-members.html 90share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms-members.html
95share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms.html 91share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms.html
96share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms__coll__graph.png 92share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms__coll__graph.png
97share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms__inherit__graph.png 93share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDeciderFilterTerms__inherit__graph.png
98share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDecider__inherit__graph.png 94share/doc/xapian-core/apidoc/html/classXapian_1_1ExpandDecider__inherit__graph.png
99share/doc/xapian-core/apidoc/html/classXapian_1_1MSet-members.html 95share/doc/xapian-core/apidoc/html/classXapian_1_1MSet-members.html
100share/doc/xapian-core/apidoc/html/classXapian_1_1MSet.html 96share/doc/xapian-core/apidoc/html/classXapian_1_1MSet.html
101share/doc/xapian-core/apidoc/html/classXapian_1_1MSetIterator-members.html 97share/doc/xapian-core/apidoc/html/classXapian_1_1MSetIterator-members.html
102share/doc/xapian-core/apidoc/html/classXapian_1_1MSetIterator.html 98share/doc/xapian-core/apidoc/html/classXapian_1_1MSetIterator.html
103share/doc/xapian-core/apidoc/html/classXapian_1_1MSetIterator__coll__graph.png 99share/doc/xapian-core/apidoc/html/classXapian_1_1MSetIterator__coll__graph.png
104share/doc/xapian-core/apidoc/html/classXapian_1_1MatchDecider-members.html 100share/doc/xapian-core/apidoc/html/classXapian_1_1MatchDecider-members.html
105share/doc/xapian-core/apidoc/html/classXapian_1_1MatchDecider.html 101share/doc/xapian-core/apidoc/html/classXapian_1_1MatchDecider.html
106share/doc/xapian-core/apidoc/html/classXapian_1_1MatchDecider__inherit__graph.png 
107share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueSorter-members.html 102share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueSorter-members.html
108share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueSorter.html 103share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueSorter.html
109share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueSorter__coll__graph.png 104share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueSorter__coll__graph.png
110share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueSorter__inherit__graph.png 105share/doc/xapian-core/apidoc/html/classXapian_1_1MultiValueSorter__inherit__graph.png
111share/doc/xapian-core/apidoc/html/classXapian_1_1MultipleMatchDecider-members.html 
112share/doc/xapian-core/apidoc/html/classXapian_1_1MultipleMatchDecider.html 
113share/doc/xapian-core/apidoc/html/classXapian_1_1MultipleMatchDecider__coll__graph.png 
114share/doc/xapian-core/apidoc/html/classXapian_1_1MultipleMatchDecider__inherit__graph.png 
115share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor-members.html 106share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor-members.html
116share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor.html 107share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor.html
117share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor__coll__graph.png 108share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor__coll__graph.png
118share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor__inherit__graph.png 109share/doc/xapian-core/apidoc/html/classXapian_1_1NumberValueRangeProcessor__inherit__graph.png
119share/doc/xapian-core/apidoc/html/classXapian_1_1PositionIterator-members.html 110share/doc/xapian-core/apidoc/html/classXapian_1_1PositionIterator-members.html
120share/doc/xapian-core/apidoc/html/classXapian_1_1PositionIterator.html 111share/doc/xapian-core/apidoc/html/classXapian_1_1PositionIterator.html
121share/doc/xapian-core/apidoc/html/classXapian_1_1PostingIterator-members.html 112share/doc/xapian-core/apidoc/html/classXapian_1_1PostingIterator-members.html
122share/doc/xapian-core/apidoc/html/classXapian_1_1PostingIterator.html 113share/doc/xapian-core/apidoc/html/classXapian_1_1PostingIterator.html
123share/doc/xapian-core/apidoc/html/classXapian_1_1Query-members.html 114share/doc/xapian-core/apidoc/html/classXapian_1_1Query-members.html
124share/doc/xapian-core/apidoc/html/classXapian_1_1Query.html 115share/doc/xapian-core/apidoc/html/classXapian_1_1Query.html
125share/doc/xapian-core/apidoc/html/classXapian_1_1QueryParser-members.html 116share/doc/xapian-core/apidoc/html/classXapian_1_1QueryParser-members.html
126share/doc/xapian-core/apidoc/html/classXapian_1_1QueryParser.html 117share/doc/xapian-core/apidoc/html/classXapian_1_1QueryParser.html
127share/doc/xapian-core/apidoc/html/classXapian_1_1Query__coll__graph.png 118share/doc/xapian-core/apidoc/html/classXapian_1_1Query__coll__graph.png
@@ -129,52 +120,40 @@ share/doc/xapian-core/apidoc/html/classX @@ -129,52 +120,40 @@ share/doc/xapian-core/apidoc/html/classX
129share/doc/xapian-core/apidoc/html/classXapian_1_1RSet.html 120share/doc/xapian-core/apidoc/html/classXapian_1_1RSet.html
130share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper-members.html 121share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper-members.html
131share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper.html 122share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper.html
132share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper__coll__graph.png 123share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper__coll__graph.png
133share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper__inherit__graph.png 124share/doc/xapian-core/apidoc/html/classXapian_1_1SimpleStopper__inherit__graph.png
134share/doc/xapian-core/apidoc/html/classXapian_1_1Sorter-members.html 125share/doc/xapian-core/apidoc/html/classXapian_1_1Sorter-members.html
135share/doc/xapian-core/apidoc/html/classXapian_1_1Sorter.html 126share/doc/xapian-core/apidoc/html/classXapian_1_1Sorter.html
136share/doc/xapian-core/apidoc/html/classXapian_1_1Sorter__inherit__graph.png 127share/doc/xapian-core/apidoc/html/classXapian_1_1Sorter__inherit__graph.png
137share/doc/xapian-core/apidoc/html/classXapian_1_1Stem-members.html 128share/doc/xapian-core/apidoc/html/classXapian_1_1Stem-members.html
138share/doc/xapian-core/apidoc/html/classXapian_1_1Stem.html 129share/doc/xapian-core/apidoc/html/classXapian_1_1Stem.html
139share/doc/xapian-core/apidoc/html/classXapian_1_1Stopper-members.html 130share/doc/xapian-core/apidoc/html/classXapian_1_1Stopper-members.html
140share/doc/xapian-core/apidoc/html/classXapian_1_1Stopper.html 131share/doc/xapian-core/apidoc/html/classXapian_1_1Stopper.html
141share/doc/xapian-core/apidoc/html/classXapian_1_1Stopper__inherit__graph.png 132share/doc/xapian-core/apidoc/html/classXapian_1_1Stopper__inherit__graph.png
142share/doc/xapian-core/apidoc/html/classXapian_1_1StringListSerialiser-members.html 
143share/doc/xapian-core/apidoc/html/classXapian_1_1StringListSerialiser.html 
144share/doc/xapian-core/apidoc/html/classXapian_1_1StringListUnserialiser-members.html 
145share/doc/xapian-core/apidoc/html/classXapian_1_1StringListUnserialiser.html 
146share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor-members.html 133share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor-members.html
147share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor.html 134share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor.html
148share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor__coll__graph.png 135share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor__coll__graph.png
149share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor__inherit__graph.png 136share/doc/xapian-core/apidoc/html/classXapian_1_1StringValueRangeProcessor__inherit__graph.png
150share/doc/xapian-core/apidoc/html/classXapian_1_1TermCountMatchSpy-members.html 
151share/doc/xapian-core/apidoc/html/classXapian_1_1TermCountMatchSpy.html 
152share/doc/xapian-core/apidoc/html/classXapian_1_1TermCountMatchSpy__coll__graph.png 
153share/doc/xapian-core/apidoc/html/classXapian_1_1TermCountMatchSpy__inherit__graph.png 
154share/doc/xapian-core/apidoc/html/classXapian_1_1TermGenerator-members.html 137share/doc/xapian-core/apidoc/html/classXapian_1_1TermGenerator-members.html
155share/doc/xapian-core/apidoc/html/classXapian_1_1TermGenerator.html 138share/doc/xapian-core/apidoc/html/classXapian_1_1TermGenerator.html
156share/doc/xapian-core/apidoc/html/classXapian_1_1TermIterator-members.html 139share/doc/xapian-core/apidoc/html/classXapian_1_1TermIterator-members.html
157share/doc/xapian-core/apidoc/html/classXapian_1_1TermIterator.html 140share/doc/xapian-core/apidoc/html/classXapian_1_1TermIterator.html
158share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight-members.html 141share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight-members.html
159share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight.html 142share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight.html
160share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight__coll__graph.png 143share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight__coll__graph.png
161share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight__inherit__graph.png 144share/doc/xapian-core/apidoc/html/classXapian_1_1TradWeight__inherit__graph.png
162share/doc/xapian-core/apidoc/html/classXapian_1_1Utf8Iterator-members.html 145share/doc/xapian-core/apidoc/html/classXapian_1_1Utf8Iterator-members.html
163share/doc/xapian-core/apidoc/html/classXapian_1_1Utf8Iterator.html 146share/doc/xapian-core/apidoc/html/classXapian_1_1Utf8Iterator.html
164share/doc/xapian-core/apidoc/html/classXapian_1_1ValueCountMatchSpy-members.html 
165share/doc/xapian-core/apidoc/html/classXapian_1_1ValueCountMatchSpy.html 
166share/doc/xapian-core/apidoc/html/classXapian_1_1ValueCountMatchSpy__coll__graph.png 
167share/doc/xapian-core/apidoc/html/classXapian_1_1ValueCountMatchSpy__inherit__graph.png 
168share/doc/xapian-core/apidoc/html/classXapian_1_1ValueIterator-members.html 147share/doc/xapian-core/apidoc/html/classXapian_1_1ValueIterator-members.html
169share/doc/xapian-core/apidoc/html/classXapian_1_1ValueIterator.html 148share/doc/xapian-core/apidoc/html/classXapian_1_1ValueIterator.html
170share/doc/xapian-core/apidoc/html/classXapian_1_1ValueIterator__coll__graph.png 149share/doc/xapian-core/apidoc/html/classXapian_1_1ValueIterator__coll__graph.png
171share/doc/xapian-core/apidoc/html/classXapian_1_1Weight-members.html 150share/doc/xapian-core/apidoc/html/classXapian_1_1Weight-members.html
172share/doc/xapian-core/apidoc/html/classXapian_1_1Weight.html 151share/doc/xapian-core/apidoc/html/classXapian_1_1Weight.html
173share/doc/xapian-core/apidoc/html/classXapian_1_1Weight__inherit__graph.png 152share/doc/xapian-core/apidoc/html/classXapian_1_1Weight__inherit__graph.png
174share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase-members.html 153share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase-members.html
175share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase.html 154share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase.html
176share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase__coll__graph.png 155share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase__coll__graph.png
177share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase__inherit__graph.png 156share/doc/xapian-core/apidoc/html/classXapian_1_1WritableDatabase__inherit__graph.png
178share/doc/xapian-core/apidoc/html/classes.html 157share/doc/xapian-core/apidoc/html/classes.html
179share/doc/xapian-core/apidoc/html/database_8h-source.html 158share/doc/xapian-core/apidoc/html/database_8h-source.html
180share/doc/xapian-core/apidoc/html/database_8h.html 159share/doc/xapian-core/apidoc/html/database_8h.html
@@ -244,27 +223,26 @@ share/doc/xapian-core/apidoc/html/functi @@ -244,27 +223,26 @@ share/doc/xapian-core/apidoc/html/functi
244share/doc/xapian-core/apidoc/html/functions_func_0x6d.html 223share/doc/xapian-core/apidoc/html/functions_func_0x6d.html
245share/doc/xapian-core/apidoc/html/functions_func_0x6e.html 224share/doc/xapian-core/apidoc/html/functions_func_0x6e.html
246share/doc/xapian-core/apidoc/html/functions_func_0x6f.html 225share/doc/xapian-core/apidoc/html/functions_func_0x6f.html
247share/doc/xapian-core/apidoc/html/functions_func_0x70.html 226share/doc/xapian-core/apidoc/html/functions_func_0x70.html
248share/doc/xapian-core/apidoc/html/functions_func_0x71.html 227share/doc/xapian-core/apidoc/html/functions_func_0x71.html
249share/doc/xapian-core/apidoc/html/functions_func_0x72.html 228share/doc/xapian-core/apidoc/html/functions_func_0x72.html
250share/doc/xapian-core/apidoc/html/functions_func_0x73.html 229share/doc/xapian-core/apidoc/html/functions_func_0x73.html
251share/doc/xapian-core/apidoc/html/functions_func_0x74.html 230share/doc/xapian-core/apidoc/html/functions_func_0x74.html
252share/doc/xapian-core/apidoc/html/functions_func_0x75.html 231share/doc/xapian-core/apidoc/html/functions_func_0x75.html
253share/doc/xapian-core/apidoc/html/functions_func_0x76.html 232share/doc/xapian-core/apidoc/html/functions_func_0x76.html
254share/doc/xapian-core/apidoc/html/functions_func_0x77.html 233share/doc/xapian-core/apidoc/html/functions_func_0x77.html
255share/doc/xapian-core/apidoc/html/functions_func_0x78.html 234share/doc/xapian-core/apidoc/html/functions_func_0x78.html
256share/doc/xapian-core/apidoc/html/functions_func_0x7e.html 235share/doc/xapian-core/apidoc/html/functions_func_0x7e.html
257share/doc/xapian-core/apidoc/html/functions_rela.html 
258share/doc/xapian-core/apidoc/html/functions_type.html 236share/doc/xapian-core/apidoc/html/functions_type.html
259share/doc/xapian-core/apidoc/html/functions_vars.html 237share/doc/xapian-core/apidoc/html/functions_vars.html
260share/doc/xapian-core/apidoc/html/globals.html 238share/doc/xapian-core/apidoc/html/globals.html
261share/doc/xapian-core/apidoc/html/globals_func.html 239share/doc/xapian-core/apidoc/html/globals_func.html
262share/doc/xapian-core/apidoc/html/globals_type.html 240share/doc/xapian-core/apidoc/html/globals_type.html
263share/doc/xapian-core/apidoc/html/globals_vars.html 241share/doc/xapian-core/apidoc/html/globals_vars.html
264share/doc/xapian-core/apidoc/html/graph_legend.html 242share/doc/xapian-core/apidoc/html/graph_legend.html
265share/doc/xapian-core/apidoc/html/graph_legend.png 243share/doc/xapian-core/apidoc/html/graph_legend.png
266share/doc/xapian-core/apidoc/html/hierarchy.html 244share/doc/xapian-core/apidoc/html/hierarchy.html
267share/doc/xapian-core/apidoc/html/index.html 245share/doc/xapian-core/apidoc/html/index.html
268share/doc/xapian-core/apidoc/html/inherit__graph__0.png 246share/doc/xapian-core/apidoc/html/inherit__graph__0.png
269share/doc/xapian-core/apidoc/html/inherit__graph__1.png 247share/doc/xapian-core/apidoc/html/inherit__graph__1.png
270share/doc/xapian-core/apidoc/html/inherit__graph__10.png 248share/doc/xapian-core/apidoc/html/inherit__graph__10.png
@@ -272,60 +250,53 @@ share/doc/xapian-core/apidoc/html/inheri @@ -272,60 +250,53 @@ share/doc/xapian-core/apidoc/html/inheri
272share/doc/xapian-core/apidoc/html/inherit__graph__12.png 250share/doc/xapian-core/apidoc/html/inherit__graph__12.png
273share/doc/xapian-core/apidoc/html/inherit__graph__13.png 251share/doc/xapian-core/apidoc/html/inherit__graph__13.png
274share/doc/xapian-core/apidoc/html/inherit__graph__14.png 252share/doc/xapian-core/apidoc/html/inherit__graph__14.png
275share/doc/xapian-core/apidoc/html/inherit__graph__15.png 253share/doc/xapian-core/apidoc/html/inherit__graph__15.png
276share/doc/xapian-core/apidoc/html/inherit__graph__16.png 254share/doc/xapian-core/apidoc/html/inherit__graph__16.png
277share/doc/xapian-core/apidoc/html/inherit__graph__17.png 255share/doc/xapian-core/apidoc/html/inherit__graph__17.png
278share/doc/xapian-core/apidoc/html/inherit__graph__18.png 256share/doc/xapian-core/apidoc/html/inherit__graph__18.png
279share/doc/xapian-core/apidoc/html/inherit__graph__19.png 257share/doc/xapian-core/apidoc/html/inherit__graph__19.png
280share/doc/xapian-core/apidoc/html/inherit__graph__2.png 258share/doc/xapian-core/apidoc/html/inherit__graph__2.png
281share/doc/xapian-core/apidoc/html/inherit__graph__20.png 259share/doc/xapian-core/apidoc/html/inherit__graph__20.png
282share/doc/xapian-core/apidoc/html/inherit__graph__21.png 260share/doc/xapian-core/apidoc/html/inherit__graph__21.png
283share/doc/xapian-core/apidoc/html/inherit__graph__22.png 261share/doc/xapian-core/apidoc/html/inherit__graph__22.png
284share/doc/xapian-core/apidoc/html/inherit__graph__23.png 262share/doc/xapian-core/apidoc/html/inherit__graph__23.png
285share/doc/xapian-core/apidoc/html/inherit__graph__24.png 
286share/doc/xapian-core/apidoc/html/inherit__graph__25.png 
287share/doc/xapian-core/apidoc/html/inherit__graph__26.png 
288share/doc/xapian-core/apidoc/html/inherit__graph__3.png 263share/doc/xapian-core/apidoc/html/inherit__graph__3.png
289share/doc/xapian-core/apidoc/html/inherit__graph__4.png 264share/doc/xapian-core/apidoc/html/inherit__graph__4.png
290share/doc/xapian-core/apidoc/html/inherit__graph__5.png 265share/doc/xapian-core/apidoc/html/inherit__graph__5.png
291share/doc/xapian-core/apidoc/html/inherit__graph__6.png 266share/doc/xapian-core/apidoc/html/inherit__graph__6.png
292share/doc/xapian-core/apidoc/html/inherit__graph__7.png 267share/doc/xapian-core/apidoc/html/inherit__graph__7.png
293share/doc/xapian-core/apidoc/html/inherit__graph__8.png 268share/doc/xapian-core/apidoc/html/inherit__graph__8.png
294share/doc/xapian-core/apidoc/html/inherit__graph__9.png 269share/doc/xapian-core/apidoc/html/inherit__graph__9.png
295share/doc/xapian-core/apidoc/html/inherits.html 270share/doc/xapian-core/apidoc/html/inherits.html
296share/doc/xapian-core/apidoc/html/matchspy_8h-source.html 
297share/doc/xapian-core/apidoc/html/matchspy_8h.html 
298share/doc/xapian-core/apidoc/html/namespaceXapian.html 271share/doc/xapian-core/apidoc/html/namespaceXapian.html
299share/doc/xapian-core/apidoc/html/namespacemembers.html 272share/doc/xapian-core/apidoc/html/namespacemembers.html
300share/doc/xapian-core/apidoc/html/namespacemembers_func.html 273share/doc/xapian-core/apidoc/html/namespacemembers_func.html
301share/doc/xapian-core/apidoc/html/namespacemembers_type.html 274share/doc/xapian-core/apidoc/html/namespacemembers_type.html
302share/doc/xapian-core/apidoc/html/namespacemembers_vars.html 275share/doc/xapian-core/apidoc/html/namespacemembers_vars.html
303share/doc/xapian-core/apidoc/html/namespaces.html 276share/doc/xapian-core/apidoc/html/namespaces.html
304share/doc/xapian-core/apidoc/html/pages.html 277share/doc/xapian-core/apidoc/html/pages.html
305share/doc/xapian-core/apidoc/html/positioniterator_8h-source.html 278share/doc/xapian-core/apidoc/html/positioniterator_8h-source.html
306share/doc/xapian-core/apidoc/html/positioniterator_8h.html 279share/doc/xapian-core/apidoc/html/positioniterator_8h.html
307share/doc/xapian-core/apidoc/html/postingiterator_8h-source.html 280share/doc/xapian-core/apidoc/html/postingiterator_8h-source.html
308share/doc/xapian-core/apidoc/html/postingiterator_8h.html 281share/doc/xapian-core/apidoc/html/postingiterator_8h.html
309share/doc/xapian-core/apidoc/html/query_8h-source.html 282share/doc/xapian-core/apidoc/html/query_8h-source.html
310share/doc/xapian-core/apidoc/html/query_8h.html 283share/doc/xapian-core/apidoc/html/query_8h.html
311share/doc/xapian-core/apidoc/html/queryparser_8h-source.html 284share/doc/xapian-core/apidoc/html/queryparser_8h-source.html
312share/doc/xapian-core/apidoc/html/queryparser_8h.html 285share/doc/xapian-core/apidoc/html/queryparser_8h.html
313share/doc/xapian-core/apidoc/html/sorter_8h-source.html 286share/doc/xapian-core/apidoc/html/sorter_8h-source.html
314share/doc/xapian-core/apidoc/html/sorter_8h.html 287share/doc/xapian-core/apidoc/html/sorter_8h.html
315share/doc/xapian-core/apidoc/html/stem_8h-source.html 288share/doc/xapian-core/apidoc/html/stem_8h-source.html
316share/doc/xapian-core/apidoc/html/stem_8h.html 289share/doc/xapian-core/apidoc/html/stem_8h.html
317share/doc/xapian-core/apidoc/html/structXapian_1_1StringAndFrequency-members.html 
318share/doc/xapian-core/apidoc/html/structXapian_1_1StringAndFrequency.html 
319share/doc/xapian-core/apidoc/html/structXapian_1_1ValueRangeProcessor-members.html 290share/doc/xapian-core/apidoc/html/structXapian_1_1ValueRangeProcessor-members.html
320share/doc/xapian-core/apidoc/html/structXapian_1_1ValueRangeProcessor.html 291share/doc/xapian-core/apidoc/html/structXapian_1_1ValueRangeProcessor.html
321share/doc/xapian-core/apidoc/html/structXapian_1_1ValueRangeProcessor__inherit__graph.png 292share/doc/xapian-core/apidoc/html/structXapian_1_1ValueRangeProcessor__inherit__graph.png
322share/doc/xapian-core/apidoc/html/tab_b.gif 293share/doc/xapian-core/apidoc/html/tab_b.gif
323share/doc/xapian-core/apidoc/html/tab_l.gif 294share/doc/xapian-core/apidoc/html/tab_l.gif
324share/doc/xapian-core/apidoc/html/tab_r.gif 295share/doc/xapian-core/apidoc/html/tab_r.gif
325share/doc/xapian-core/apidoc/html/tabs.css 296share/doc/xapian-core/apidoc/html/tabs.css
326share/doc/xapian-core/apidoc/html/termgenerator_8h-source.html 297share/doc/xapian-core/apidoc/html/termgenerator_8h-source.html
327share/doc/xapian-core/apidoc/html/termgenerator_8h.html 298share/doc/xapian-core/apidoc/html/termgenerator_8h.html
328share/doc/xapian-core/apidoc/html/termiterator_8h-source.html 299share/doc/xapian-core/apidoc/html/termiterator_8h-source.html
329share/doc/xapian-core/apidoc/html/termiterator_8h.html 300share/doc/xapian-core/apidoc/html/termiterator_8h.html
330share/doc/xapian-core/apidoc/html/types_8h-source.html 301share/doc/xapian-core/apidoc/html/types_8h-source.html
331share/doc/xapian-core/apidoc/html/types_8h.html 302share/doc/xapian-core/apidoc/html/types_8h.html

cvs diff -r1.2 -r1.3 pkgsrc/textproc/xapian/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/xapian/distinfo 2009/01/07 22:39:38 1.2
+++ pkgsrc/textproc/xapian/distinfo 2009/04/20 22:25:12 1.3
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.2 2009/01/07 22:39:38 wiz Exp $ 1$NetBSD: distinfo,v 1.3 2009/04/20 22:25:12 schmonz Exp $
2 2
3SHA1 (xapian-core-1.0.10.tar.gz) = bd87e4bb2a8097918f0f6a5de6389a1c53c76992 3SHA1 (xapian-core-1.0.12.tar.gz) = 963011408a77897d73da3f28e7aaabe2525e016f
4RMD160 (xapian-core-1.0.10.tar.gz) = 05e3380eb0c6a6b206edb1a7085daf9c885e2277 4RMD160 (xapian-core-1.0.12.tar.gz) = 7d343805f477bdc040373b7257aab7164625d744
5Size (xapian-core-1.0.10.tar.gz) = 3088931 bytes 5Size (xapian-core-1.0.12.tar.gz) = 2991522 bytes