mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-31 01:10:08 +00:00
605a1c6afd
Changelog:
==========
* Fixes to VAPI file
* Fixes to IRI escaping checks in TrackerResource
* Move fts: prefix definition to base ontology
* Improve memory usage of already executed TrackerBatch objects
for GC languages
* Replace deprecated egrep tool usage in bash completion script
* Fixes for memory leaks and invalid memory access
* Fix endpoint-side cancellation of client-side D-Bus cancelled
queries
Translations: ab, bg, hr, sk, tr
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit db39f8875f)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
54 lines
1.5 KiB
BlitzBasic
54 lines
1.5 KiB
BlitzBasic
SUMMARY = "Tracker is a file search engine"
|
|
LICENSE = "GPL-2.0-only & LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://COPYING.GPL;md5=ee31012bf90e7b8c108c69f197f3e3a4 \
|
|
file://COPYING.LGPL;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
|
"
|
|
|
|
DEPENDS = " \
|
|
dbus-native \
|
|
python3-pygobject-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 python3native
|
|
|
|
SRC_URI[archive.sha256sum] = "ea9d41a9fb9c2b42ad80fc2c82327b5c713d594c969b09e1a49be63fb74f4fae"
|
|
|
|
# gobject-introspection is mandatory and cannot be configured
|
|
REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
|
|
GIR_MESON_OPTION = ""
|
|
|
|
# text search is not an option anymore and requires sqlite3 build with
|
|
# PACKAGECONFIG[fts5] set (default)
|
|
|
|
# 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 = 'true'" >> ${WORKDIR}/meson-tracker.cross
|
|
}
|
|
|
|
EXTRA_OEMESON = " \
|
|
--cross-file ${WORKDIR}/meson-tracker.cross \
|
|
-Dman=false \
|
|
-Dsystemd_user_services=${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)} \
|
|
-Dsystemd_user_services_dir=${systemd_user_unitdir} \
|
|
"
|
|
|
|
FILES:${PN} += " \
|
|
${datadir}/dbus-1 \
|
|
${datadir}/tracker3 \
|
|
${libdir}/tracker-3.0 \
|
|
${systemd_user_unitdir} \
|
|
"
|