pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/strigi Update to strigi-0.6.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6e22a890ef4c
branches:  trunk
changeset: 553661:6e22a890ef4c
user:      markd <markd%pkgsrc.org@localhost>
date:      Tue Jan 27 10:55:04 2009 +0000

description:
Update to strigi-0.6.3

Changes:
0.6.3
 - Move Strigi::DirLister in archivereader.h to ArchiveReader::DirLister.
   Two class with this name were present in the code. The one in
   archivereader.h was not used in any code outside of Strigi, so we are
   changing it. Note that this changes means that one should not use
   Strigi 0.6.2.
 - Change type of EntryInfo.mtime from 'unsigned' to time_t.
 - The spec of SDF files was found and used to implement a more precise
   syntax check for the header of SDF files.
 - Fix memory corruption bug in ArchiveReader.
 - Change type of ontology entry 'exposureTime' to string. In theory
   something like duration would make sense but in practice xsd:string is
   the used one.
 - Add a default rule to find mail box directories with pattern
   '.*.directory'. Since these directory names start with a dot, they are
   normally not found.
 - Add '$HOME/.kde4' to the directories that are indexed by default.
 - Simplify matching of file paths in the rules for including or excluding
   directories from the index. The code is now more readable and easier to
   maintain.
 - Fix a big performance problem:  Whenever a directory mtime changed, all
   files inside the directory were re-indexed.
 - Fix bug where a gz archive that contains a file that is identical to
   the original archive is indexed over and over. The depth of nested files
   that are indexed is now limited to 127.

diffstat:

 sysutils/strigi/Makefile |   4 ++--
 sysutils/strigi/PLIST    |  20 ++++++++++----------
 sysutils/strigi/distinfo |   8 ++++----
 3 files changed, 16 insertions(+), 16 deletions(-)

diffs (83 lines):

diff -r eeb28271d64b -r 6e22a890ef4c sysutils/strigi/Makefile
--- a/sysutils/strigi/Makefile  Tue Jan 27 10:47:19 2009 +0000
+++ b/sysutils/strigi/Makefile  Tue Jan 27 10:55:04 2009 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2009/01/09 22:22:04 markd Exp $
+# $NetBSD: Makefile,v 1.3 2009/01/27 10:55:04 markd Exp $
 
-DISTNAME=      strigi-0.6.2
+DISTNAME=      strigi-0.6.3
 CATEGORIES=    sysutils
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=strigi/}
 EXTRACT_SUFX=  .tar.bz2
diff -r eeb28271d64b -r 6e22a890ef4c sysutils/strigi/PLIST
--- a/sysutils/strigi/PLIST     Tue Jan 27 10:47:19 2009 +0000
+++ b/sysutils/strigi/PLIST     Tue Jan 27 10:55:04 2009 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2009/01/09 22:22:04 markd Exp $
+@comment $NetBSD: PLIST,v 1.3 2009/01/27 10:55:04 markd Exp $
 bin/deepfind
 bin/deepgrep
 bin/luceneindexer
@@ -56,19 +56,19 @@
 include/strigi/variant.h
 lib/libsearchclient.so
 lib/libsearchclient.so.0
-lib/libsearchclient.so.0.6.2
+lib/libsearchclient.so.${PKGVERSION}
 lib/libstreamanalyzer.so
 lib/libstreamanalyzer.so.0
-lib/libstreamanalyzer.so.0.6.2
+lib/libstreamanalyzer.so.${PKGVERSION}
 lib/libstreams.so
 lib/libstreams.so.0
-lib/libstreams.so.0.6.2
+lib/libstreams.so.${PKGVERSION}
 lib/libstrigihtmlgui.so
 lib/libstrigihtmlgui.so.0
-lib/libstrigihtmlgui.so.0.6.2
+lib/libstrigihtmlgui.so.${PKGVERSION}
 lib/libstrigiqtdbusclient.so
 lib/libstrigiqtdbusclient.so.0
-lib/libstrigiqtdbusclient.so.0.6.2
+lib/libstrigiqtdbusclient.so.${PKGVERSION}
 lib/pkgconfig/libstreamanalyzer.pc
 lib/pkgconfig/libstreams.pc
 lib/strigi/StrigiConfig.cmake
@@ -76,18 +76,18 @@
 lib/strigi/strigila_cpp.so
 lib/strigi/strigila_deb.so
 lib/strigi/strigila_namespaceharvester.so
+lib/strigi/strigila_txt.so
 lib/strigi/strigila_xpm.so
 lib/strigi/strigita_au.so
-lib/strigi/strigita_gif.so
-lib/strigi/strigita_pcx.so
-lib/strigi/strigita_xbm.so
-lib/strigi/strigila_txt.so
 lib/strigi/strigita_avi.so
 lib/strigi/strigita_dds.so
+lib/strigi/strigita_gif.so
 lib/strigi/strigita_ico.so
+lib/strigi/strigita_pcx.so
 lib/strigi/strigita_rgb.so
 lib/strigi/strigita_sid.so
 lib/strigi/strigita_wav.so
+lib/strigi/strigita_xbm.so
 share/dbus-1/services/org.freedesktop.xesam.searcher.service
 share/dbus-1/services/vandenoever.strigi.service
 share/strigi/fieldproperties/strigi.rdfs
diff -r eeb28271d64b -r 6e22a890ef4c sysutils/strigi/distinfo
--- a/sysutils/strigi/distinfo  Tue Jan 27 10:47:19 2009 +0000
+++ b/sysutils/strigi/distinfo  Tue Jan 27 10:55:04 2009 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2009/01/09 22:22:04 markd Exp $
+$NetBSD: distinfo,v 1.3 2009/01/27 10:55:05 markd Exp $
 
-SHA1 (strigi-0.6.2.tar.bz2) = 6363a3fbb360ba194bd785b07d155103e68b2cbb
-RMD160 (strigi-0.6.2.tar.bz2) = 95aa8e69d2f2b7dced9da3890609620402ba4687
-Size (strigi-0.6.2.tar.bz2) = 880297 bytes
+SHA1 (strigi-0.6.3.tar.bz2) = 216bd3f3f9f9b3ef715703db54c94ca3677c4e6e
+RMD160 (strigi-0.6.3.tar.bz2) = c368ac4c362859c1c830ffaab025fecd12a71660
+Size (strigi-0.6.3.tar.bz2) = 881044 bytes
 SHA1 (patch-aa) = 96bf66b656731db79f0a52e90e294afef010b252



Home | Main Index | Thread Index | Old Index