pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc/xapian Update to 1.4.18. From the changelog:
details: https://anonhg.NetBSD.org/pkgsrc/rev/23178a5bfbe2
branches: trunk
changeset: 444945:23178a5bfbe2
user: schmonz <schmonz%pkgsrc.org@localhost>
date: Thu Jan 14 18:17:09 2021 +0000
description:
Update to 1.4.18. From the changelog:
API:
* QueryParser::FLAG_ACCUMULATE: New flag. Previously the unstem and stoplist
data was always reset by a call to QueryParser::parse_query(), which makes
sense if you use the same QueryParser object to parse a series of independent
queries. If you're using the same QueryParser object to parse several fields
on the same query form, you may want to have the unstem and stoplist data
combined for all of them, in which case you can use this flag to prevent this
data from being reset.
* QueryParser::unstem_begin(): Eliminate unnecessary copying of the data.
* Fix typo in Swedish stopword list, syncing change made to Snowball by Daniel
Gómez Villanueva.
* Remove some French stop words with other meanings, syncing change made to
Snowball by PhilippeOuellet.
testsuite:
* Run testcase testlock4 using backend chert, not just using glass
* Skip testcase testlock4 on platforms that don't allow us to implement
Database::locked() (which notably include GNU Hurd and Microsoft Windows).
documentation:
* List DB_NO_TERMLIST in the WritableDatabase constructor API documentation
where we already list the other DB_* constants.
portability:
* Eliminate single use of std::mem_fun() which was deprecated in C++11 and
removed in C++17. Reported by Mateusz Pusz in #806.
* Add missing includes for std::numeric_limits<>. Reported by stac47 in #805.
* Work around mingw.org header issue. MSVC seems to implicitly include
<winerror.h> but mingw.org's headers don't, leading to ERROR_PIPE_CONNECTED
not being defined. Fixes https://github.com/xapian/xapian/pull/318, reported
by Alex Sandro.
* Suppress MSVC warnings about possible loss of data. The values involved are
the number of set bits in a value of integer type, so these warnings are
bogus.
* Include <sys/types.h> for size_t and off_t, which is the appropriate header,
and needed with Android's bionic libc. Patch from Matthieu Gautier.
* Use a temporary file for the Doxygen configuration to work around Doxygen
1.8.19 bug which truncates a config file read from stdin to 4096 bytes
(https://github.com/doxygen/doxygen/issues/7975).
diffstat:
textproc/xapian/Makefile.common | 4 ++--
textproc/xapian/PLIST | 3 +--
textproc/xapian/buildlink3.mk | 6 +++---
textproc/xapian/distinfo | 10 +++++-----
4 files changed, 11 insertions(+), 12 deletions(-)
diffs (72 lines):
diff -r b45924ae9d0b -r 23178a5bfbe2 textproc/xapian/Makefile.common
--- a/textproc/xapian/Makefile.common Thu Jan 14 17:46:48 2021 +0000
+++ b/textproc/xapian/Makefile.common Thu Jan 14 18:17:09 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.13 2020/08/21 20:43:06 schmonz Exp $
+# $NetBSD: Makefile.common,v 1.14 2021/01/14 18:17:09 schmonz Exp $
# used by textproc/csharp-xapian/Makefile
# used by textproc/lua-xapian/Makefile
# used by textproc/p5-Xapian/Makefile
@@ -9,7 +9,7 @@
# used by textproc/xapian/Makefile
# used by textproc/xapian-omega/Makefile
-VERSION= 1.4.17
+VERSION= 1.4.18
CATEGORIES= textproc
MASTER_SITES= http://oligarchy.co.uk/xapian/${VERSION}/
EXTRACT_SUFX= .tar.xz
diff -r b45924ae9d0b -r 23178a5bfbe2 textproc/xapian/PLIST
--- a/textproc/xapian/PLIST Thu Jan 14 17:46:48 2021 +0000
+++ b/textproc/xapian/PLIST Thu Jan 14 18:17:09 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.18 2020/06/10 17:54:29 schmonz Exp $
+@comment $NetBSD: PLIST,v 1.19 2021/01/14 18:17:09 schmonz Exp $
bin/copydatabase
bin/quest
bin/simpleexpand
@@ -349,7 +349,6 @@
share/doc/xapian-core/apidoc/html/doc.png
share/doc/xapian-core/apidoc/html/document_8h.html
share/doc/xapian-core/apidoc/html/doxygen.css
-share/doc/xapian-core/apidoc/html/doxygen.png
share/doc/xapian-core/apidoc/html/dynsections.js
share/doc/xapian-core/apidoc/html/enquire_8h.html
share/doc/xapian-core/apidoc/html/error_8h.html
diff -r b45924ae9d0b -r 23178a5bfbe2 textproc/xapian/buildlink3.mk
--- a/textproc/xapian/buildlink3.mk Thu Jan 14 17:46:48 2021 +0000
+++ b/textproc/xapian/buildlink3.mk Thu Jan 14 18:17:09 2021 +0000
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.7 2016/11/07 13:46:45 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.8 2021/01/14 18:17:09 schmonz Exp $
BUILDLINK_TREE+= xapian
.if !defined(XAPIAN_BUILDLINK3_MK)
XAPIAN_BUILDLINK3_MK:=
-BUILDLINK_API_DEPENDS.xapian+= xapian>=1.0.7
-BUILDLINK_ABI_DEPENDS.xapian+= xapian>=1.4.1
+BUILDLINK_API_DEPENDS.xapian+= xapian>=1.4.18
+BUILDLINK_ABI_DEPENDS.xapian+= xapian>=1.4.18
BUILDLINK_PKGSRCDIR.xapian?= ../../textproc/xapian
.include "../../devel/libuuid/buildlink3.mk"
diff -r b45924ae9d0b -r 23178a5bfbe2 textproc/xapian/distinfo
--- a/textproc/xapian/distinfo Thu Jan 14 17:46:48 2021 +0000
+++ b/textproc/xapian/distinfo Thu Jan 14 18:17:09 2021 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.41 2020/08/21 20:43:06 schmonz Exp $
+$NetBSD: distinfo,v 1.42 2021/01/14 18:17:09 schmonz Exp $
-SHA1 (xapian-core-1.4.17.tar.xz) = 019179afdfdba9d2bfdb0711dc52b15bbc0d96f5
-RMD160 (xapian-core-1.4.17.tar.xz) = 6f40fed418405d11782d81f84536ca257fd8cc1f
-SHA512 (xapian-core-1.4.17.tar.xz) = 3eaf45d31eb9318e292fa052b32b1d9e1035651bdd3c366a0134f4b39d03d987083c19426a3d4b10f60078190fc3388f05b332cba958263bab1abf236c7a3ca7
-Size (xapian-core-1.4.17.tar.xz) = 2997700 bytes
+SHA1 (xapian-core-1.4.18.tar.xz) = 4f57e130672d6173ce8f83b71a08497d929a57df
+RMD160 (xapian-core-1.4.18.tar.xz) = d3948297e31f3a622827c275ea3b05a6d8e6151e
+SHA512 (xapian-core-1.4.18.tar.xz) = ba6240054c0d2f92b9f1059aa934cdf35388ee7c7e05f4ef6f9856bdaed8ad821095a348ed9a892afdf18c3c0ad20e163028ad0ed3a9934bd69b861e814678ef
+Size (xapian-core-1.4.18.tar.xz) = 2984508 bytes
SHA1 (patch-common_errno__to__string.cc) = 222b640aa1cdacb6f9ada78671ef414b4ca11e26
SHA1 (patch-common_safesyssocket.h) = 032d441853914d510bc285bb682a98c4ee264d52
SHA1 (patch-xapian-config.in) = 470d1de7f04b8b8817abbcf56b5b71a36948de97
Home |
Main Index |
Thread Index |
Old Index