pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/sysutils/baloo5 baloo5: update to 5.61.0
details: https://anonhg.NetBSD.org/pkgsrc/rev/cf360d7597a8
branches: trunk
changeset: 338582:cf360d7597a8
user: markd <markd%pkgsrc.org@localhost>
date: Tue Aug 27 19:55:58 2019 +0000
description:
baloo5: update to 5.61.0
5.61.0
Link against KIOCore instead of KIOWidgets in kioslaves
[IndexCleaner] ignore non-existent entries inside config
5.60.0
[QueryTest] Test if independent phrases are really independent
[TermGenerator] Insert an empty position between independent terms
[QueryTest] Restructure tests to allow easier extension
[TermGenerator] Leave single term phrases out of the PositionDB
[TermGenerator] Do Term truncation prior to UTF-8 conversion
[PostingIterator] Move positions() method to VectorPositionInfoIterator
[TermGenerator] Use UTF-8 ByteArray for termList
[WriteTransactionTest] Clear mixup of QString and QByteArray
[experimental/BalooDB] Fix trivial 0 / nullptr warning
[PositionDbTest] Fix trivial memleak in test
[PendingFileQueueTest] Verify create + delete do not emit extra events
[PendingFileQueueTest] Verify delete + create actually works
[PendingFileQueue] Avoid delete + create / create + delete race
[PendingFileQueueTest] Use synthetic timer events to speedup test
[XAttrIndexer] Update DocumentTime when XAttrs are updated
[PendingFileQueueTest] Shorten timeouts, verify tracking time
[PendingFileQueue] Use more accurate calculation of remaining time
[ModifiedFileIndexer] Use correct mimetype for folders, delay until needed
[NewFileIndexer] Omit symlinks from the index
[ModifiedFileIndexer] Avoid shadowing XAttr changes by content changes
[NewFileIndexer] Use correct mimetype for folders, check excludeFolders
[UnindexedFileIndexer] Pick up comment, tags and rating changes
[UnindexedFileIndexer] Skip filetime checks for new files
[DocumentUrlDB] Avoid manipulation of the whole tree on trivial rename
[DocumentUrlDB] Catch invalid URLs early
[DocumentUrlDB] Remove unused 'rename' method
[balooctl] Streamline indexer control commands
[Transaction] Replace template for functor with std::function
[FirstRunIndexer] Use correct mimetype for folders
Move invariant IndexingLevel out of the loop
[BasicIndexingJob] Skip lookup of baloo document type for directories
[FileIndexScheduler] Ensure indexer is not run in suspended state
[PowerStateMonitor] Be conservative when determining power state
[FileIndexScheduler] Stop the indexer when quit() is called via DBus
Avoid container detach in a few places
Do not try to append to QLatin1String
Disable valgrind detection when compiling with MSVC
[FilteredDirIterator] Combine all suffixes into one large RegExp
[FilteredDirIterator] Avoid RegExp overhead for exact matches
[UnindexedFileIterator] Delay mimetype determination until it is needed
[UnindexedFileIndexer] Do not try to add nonexistant file to index
Detect valgrind, avoid database removal when using valgrind
[UnindexedFileIndexer] Loop optimizations (avoid detach, invariants)
Delay running UnindexedFileIndexer and IndexCleaner
[FileIndexScheduler] Add new state for Idle on battery
[FileIndexScheduler] Postpone housekeeping tasks while on battery
[FileIndexScheduler] Avoid emitting state changes multiple times
[balooctl] Clarify and extend status output
5.59.0
Don't try to index SQL database dumps
Exclude .gcode and virtual machine files from indexing consideration
5.58.0
[baloo_file] Wait for extractor process to start
[balooctl] Add command to show files failed to index (bug 406116)
Add QML to source code types
[balooctl] Capture the constant totalsize in the lambda
[balooctl] Switch multiline output to new helper
[balooctl] Use new helper in json output
[balooctl] Use new helper for simple format output
[balooctl] Factor out file index status collection from output
Keep empty Json metadata docs out of DocumentData DB
[balooshow] Allow referencing files by URL from hardlink
[balooshow] Suppress warning when URL refers to unindexed file
[MTimeDB] Allow timestamp newer than the newest document in range match
[MTimeDB] Use exact match when exact match is requested
[balooctl] Cleanup handling of different positional arguments
[balooctl] Extend options help text, improve error checking
[balooctl] Use more understandable names for size in status output
[balooctl] clear command: Remove bogus check for documentData, cleanup
[kio_search] Fix warning, add UDSEntry for "." in listDir
Use hex notation for DocumentOperation flag enum
Calculate total DB size correctly
Postpone term parsing until needed, do not set both term and searchstring
Don't add default valued date filters to json
Use compact Json format when converting query URLs
[balooshow] Do not print a bogus warning for a non-indexed file
diffstat:
sysutils/baloo5/Makefile | 7 ++-----
sysutils/baloo5/PLIST | 8 ++++++--
sysutils/baloo5/distinfo | 10 +++++-----
3 files changed, 13 insertions(+), 12 deletions(-)
diffs (78 lines):
diff -r af624e4dd664 -r cf360d7597a8 sysutils/baloo5/Makefile
--- a/sysutils/baloo5/Makefile Tue Aug 27 19:53:56 2019 +0000
+++ b/sysutils/baloo5/Makefile Tue Aug 27 19:55:58 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.28 2019/04/25 21:05:22 markd Exp $
+# $NetBSD: Makefile,v 1.29 2019/08/27 19:55:58 markd Exp $
DISTNAME= baloo-${KF5VER}
PKGNAME= baloo5-${KF5VER}
@@ -20,12 +20,9 @@
SUBST_STAGE.xdg= pre-configure
SUBST_MESSAGE.xdg= Install via examples dir.
SUBST_FILES.xdg= CMakeLists.txt src/file/CMakeLists.txt
-SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:'
-SUBST_SED.xdg+= -e 's:{AUTOSTART_INSTALL_DIR}:{KDE_INSTALL_AUTOSTARTEXDIR}:'
+SUBST_SED.xdg= -e 's:{AUTOSTART_INSTALL_DIR}:{KDE_INSTALL_AUTOSTARTEXDIR}:'
MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg/autostart
-CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/baloo.categories \
- ${PKG_SYSCONFDIR}/xdg/baloo.categories
CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/autostart/baloo_file.desktop \
${PKG_SYSCONFDIR}/xdg/autostart/baloo_file.desktop
diff -r af624e4dd664 -r cf360d7597a8 sysutils/baloo5/PLIST
--- a/sysutils/baloo5/PLIST Tue Aug 27 19:53:56 2019 +0000
+++ b/sysutils/baloo5/PLIST Tue Aug 27 19:55:58 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2019/04/25 21:05:22 markd Exp $
+@comment $NetBSD: PLIST,v 1.7 2019/08/27 19:55:58 markd Exp $
bin/baloo_file
bin/baloo_file_extractor
bin/balooctl
@@ -45,7 +45,6 @@
share/dbus-1/interfaces/org.kde.baloo.main.xml
share/dbus-1/interfaces/org.kde.baloo.scheduler.xml
share/examples/kde-xdg/autostart/baloo_file.desktop
-share/examples/kde-xdg/baloo.categories
share/icons/hicolor/128x128/apps/baloo.png
share/kservices5/baloosearch.protocol
share/kservices5/tags.protocol
@@ -276,6 +275,7 @@
share/locale/ja/LC_MESSAGES/kio5_tags.mo
share/locale/ja/LC_MESSAGES/kio5_timeline.mo
share/locale/ko/LC_MESSAGES/baloo_file5.mo
+share/locale/ko/LC_MESSAGES/baloo_file_extractor5.mo
share/locale/ko/LC_MESSAGES/balooctl5.mo
share/locale/ko/LC_MESSAGES/baloodb5.mo
share/locale/ko/LC_MESSAGES/balooengine5.mo
@@ -288,6 +288,9 @@
share/locale/lt/LC_MESSAGES/baloo_file5.mo
share/locale/lt/LC_MESSAGES/baloo_file_extractor5.mo
share/locale/lt/LC_MESSAGES/balooctl5.mo
+share/locale/lt/LC_MESSAGES/baloodb5.mo
+share/locale/lt/LC_MESSAGES/balooengine5.mo
+share/locale/lt/LC_MESSAGES/baloomonitorplugin.mo
share/locale/lt/LC_MESSAGES/baloosearch5.mo
share/locale/lt/LC_MESSAGES/balooshow5.mo
share/locale/lt/LC_MESSAGES/kio5_baloosearch.mo
@@ -497,3 +500,4 @@
share/locale/zh_TW/LC_MESSAGES/kio5_baloosearch.mo
share/locale/zh_TW/LC_MESSAGES/kio5_tags.mo
share/locale/zh_TW/LC_MESSAGES/kio5_timeline.mo
+share/qlogging-categories5/baloo.categories
diff -r af624e4dd664 -r cf360d7597a8 sysutils/baloo5/distinfo
--- a/sysutils/baloo5/distinfo Tue Aug 27 19:53:56 2019 +0000
+++ b/sysutils/baloo5/distinfo Tue Aug 27 19:55:58 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.6 2019/04/25 21:05:22 markd Exp $
+$NetBSD: distinfo,v 1.7 2019/08/27 19:55:58 markd Exp $
-SHA1 (baloo-5.57.0.tar.xz) = fe5a23782567a16ca2fbabb7419e6fe1b66d8899
-RMD160 (baloo-5.57.0.tar.xz) = 19ef8190ff8c1f84942f57291ed877453c324151
-SHA512 (baloo-5.57.0.tar.xz) = c9471c22159ee3cd8aff721718b53edb7691358e50e5c23c33a47873b48d65e19bab44a5dc583c3dec18293f068fa9c50735775b6ab014d107aeaf10b73a0393
-Size (baloo-5.57.0.tar.xz) = 239808 bytes
+SHA1 (baloo-5.61.0.tar.xz) = 57aa80df3b02273247c74c085840ca8596eeff43
+RMD160 (baloo-5.61.0.tar.xz) = 68ba212f926c88207f5cec50e772fa8fb885387c
+SHA512 (baloo-5.61.0.tar.xz) = 036807ab27bd8173ea39ff89a62a38577b624300766d0e8ce6195a5187aa911eaa14f36532478f44c60366b2078b8a439bda6f5109752166ee47bfc57ee87f18
+Size (baloo-5.61.0.tar.xz) = 270040 bytes
Home |
Main Index |
Thread Index |
Old Index