Files
meta-openembedded/meta-gnome/recipes-gnome/tracker/tracker_2.3.4.bb
Andreas Müller 5bdbca80fd tracker: upgrade 2.3.1 -> 2.3.4
NEW in 2.3.4 - 2020-03-10

=========================
  * Brown paper bag release, fix NULL check.

NEW in 2.3.3 - 2020-03-09
=========================
  * Fix race condition during tracker-store shutdown maybe leading to
    warnings and missed writeback events.
  * Made fts:offsets stronger against corrupt FTS tables

Translations: ja

NEW in 2.3.2 - 2020-02-18
=========================

  * Location info for photos is now inserted into the DB. It didn't
    work before as we failed to process SPARQL "blank nodes" correctly.
  * Fix for oversensitive FTS5 index corruption detection

Translations: ms

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-06 08:29:50 -07:00

51 lines
1.5 KiB
BlitzBasic

SUMMARY = "Tracker is a file search engine"
LICENSE = "GPLv2 & LGPLv2.1"
LIC_FILES_CHKSUM = " \
file://COPYING.GPL;md5=ee31012bf90e7b8c108c69f197f3e3a4 \
file://COPYING.LGPL;md5=2d5025d4aa3495befef8f17206a5b0a1 \
"
DEPENDS = " \
libxml2-native \
dbus-native \
glib-2.0 \
sqlite3 \
libarchive \
dbus \
icu \
json-glib \
libsoup-2.4 \
libstemmer \
"
GNOMEBASEBUILDCLASS = "meson"
inherit gnomebase gsettings gobject-introspection vala gtk-doc manpages bash-completion features_check
SRC_URI[archive.md5sum] = "9937cf4812ca85078907324c7cdf7dd8"
SRC_URI[archive.sha256sum] = "577952244ab977c78b0b88e2f63c4197eaba16e4d66bff692b7f58993e06516d"
# gobject-introspection is mandatory and cannot be configured
REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
UNKNOWN_CONFIGURE_WHITELIST_append = " introspection"
PACKAGECONFIG ??= "fts"
PACKAGECONFIG[networkmanager] = "-Dnetwork_manager=enabled,-Dnetwork_manager=disabled,networkmanger"
# full text search requires sqlite3 build with PACKAGECONFIG[fts5] set
PACKAGECONFIG[fts] = "-Dfts=true,-Dfts=false"
# set required cross property sqlite3_has_fts5
do_write_config[vardeps] += "PACKAGECONFIG"
do_write_config_append() {
echo "[properties]" > ${WORKDIR}/meson-tracker.cross
echo "sqlite3_has_fts5 = '${@bb.utils.contains('PACKAGECONFIG', 'fts', 'true', 'false', d)}'" >> ${WORKDIR}/meson-tracker.cross
}
EXTRA_OEMESON = "--cross-file ${WORKDIR}/meson-tracker.cross"
FILES_${PN} += " \
${datadir}/dbus-1 \
${libdir}/tracker-2.0 \
${systemd_user_unitdir} \
"