mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
NEW in 2.3.3 - 2020-03-09
=========================
* The secure sandbox for tracker-extract now permits clock_nanosleep() calls,
fixing crashes on some systems.
* Miners now set nice/scheduler priorities in a way that placates glib. The
sched_setscheduler syscall is as a side effect also allowed by the
tracker-extract sandbox.
Translations: ja
NEW in 2.3.2 - 2020-02-18
=========================
* Blocked parsing of image/x-dds image files, which were previously
being passed to GStreamer and triggering system lockups for some people
* Fixed incorrect MIME type for .raw images, which were previously
being passed to GStreamer and triggering system lockups for some people
* Improved how the MP3 extractor calculates durations of variable bitrate
MP3s, which fixes incorrect durations being shown in GNOME Music.
* Fixed a bug in the GStreamer writeback module.
* Fix race condition that might leave tracker-miner-fs paused after a
writeback operation.
Translations: ms
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
69 lines
2.2 KiB
BlitzBasic
69 lines
2.2 KiB
BlitzBasic
SUMMARY = "Tracker miners and metadata extractors"
|
|
LICENSE = "GPLv2 & LGPLv2.1"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://COPYING.GPL;md5=ee31012bf90e7b8c108c69f197f3e3a4 \
|
|
file://COPYING.LGPL;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
|
"
|
|
|
|
DEPENDS = " \
|
|
intltool-native \
|
|
tracker \
|
|
zlib \
|
|
"
|
|
|
|
GNOMEBASEBUILDCLASS = "meson"
|
|
|
|
inherit gnomebase gsettings gobject-introspection vala gtk-doc manpages bash-completion features_check
|
|
|
|
SRC_URI[archive.md5sum] = "a317bc50c5e63dd0746a48af478fb92b"
|
|
SRC_URI[archive.sha256sum] = "7472aa28d7862620d3ca2bbec3b103df547d7319c12e95a7f7aa9f9f6dee4b19"
|
|
SRC_URI += "file://0001-meson.build-Just-warn-if-we-build-without-libseccomp.patch"
|
|
|
|
# gobject-introspection is mandatory and cannot be configured
|
|
REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
|
|
UNKNOWN_CONFIGURE_WHITELIST_append = " introspection"
|
|
|
|
PACKAGECONFIG ??= " \
|
|
ffmpeg \
|
|
flac \
|
|
gexiv2 \
|
|
gstreamer \
|
|
icu \
|
|
libexif \
|
|
libgsf \
|
|
jpeg \
|
|
png \
|
|
tiff \
|
|
xml \
|
|
pdf \
|
|
"
|
|
|
|
PACKAGECONFIG[ffmpeg] = ",,ffmpeg"
|
|
PACKAGECONFIG[flac] = "-Dflac=enabled,-Dflac=disabled,flac"
|
|
PACKAGECONFIG[gexiv2] = ",,gexiv2"
|
|
PACKAGECONFIG[gstreamer] = ",,gstreamer1.0 gstreamer1.0-plugins-base"
|
|
PACKAGECONFIG[gupnp] = ",,gupnp-dlna"
|
|
PACKAGECONFIG[icu] = ",,icu"
|
|
PACKAGECONFIG[libexif] = "-Dexif=enabled,-Dexif=disabled,libexif"
|
|
PACKAGECONFIG[libgsf] = "-Dgsf=enabled,-Dgsf=disabled,libgsf"
|
|
PACKAGECONFIG[jpeg] = "-Djpeg=enabled,-Djpeg=disabled,jpeg"
|
|
PACKAGECONFIG[png] = "-Dpng=enabled,-Dpng=disabled,libpng"
|
|
PACKAGECONFIG[tiff] = "-Dtiff=enabled,-Dtiff=disabled,tiff"
|
|
PACKAGECONFIG[xml] = "-Dxml=enabled,-Dxml=disabled,libxml2"
|
|
PACKAGECONFIG[vorbis] = "-Dvorbis=enabled,-Dvorbis=disabled,libvorbis"
|
|
PACKAGECONFIG[pdf] = "-Dpdf=enabled,-Dpdf=disabled,poppler"
|
|
PACKAGECONFIG[upower] = ",,upower"
|
|
|
|
# For security reasons it is strongly recommended to set add meta-security in
|
|
# your layers and 'libseccomp' to PACKAGECONFIG".
|
|
PACKAGECONFIG[libseccomp] = ",,libseccomp"
|
|
# not yet in meta-gnome
|
|
PACKAGECONFIG[rss] = "-Dminer_rss=true,-Dminer_rss=false,libgrss"
|
|
|
|
FILES_${PN} += " \
|
|
${datadir}/dbus-1 \
|
|
${datadir}/tracker \
|
|
${libdir}/tracker-miners-2.0 \
|
|
${systemd_user_unitdir} \
|
|
"
|