gnu: tracker-miners: Use new style inputs.
* gnu/packages/gnome.scm (tracker-miners) [native-inputs]: Use new style inputs. [inputs]: Likewise.
This commit is contained in:
parent
c13a258575
commit
73d7247aac
1 changed files with 42 additions and 42 deletions
|
@ -8908,7 +8908,7 @@ endpoint and it understands SPARQL.")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:glib-or-gtk? #t
|
`(#:glib-or-gtk? #t
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list "-Dminer_rss=false" ; libgrss is required.
|
(list "-Dminer_rss=false" ; libgrss is required.
|
||||||
;; Ensure the RUNPATH contains all installed library locations.
|
;; Ensure the RUNPATH contains all installed library locations.
|
||||||
(string-append "-Dc_link_args=-Wl,-rpath="
|
(string-append "-Dc_link_args=-Wl,-rpath="
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
|
@ -8940,10 +8940,10 @@ endpoint and it understands SPARQL.")
|
||||||
"foreach example_name: []"))
|
"foreach example_name: []"))
|
||||||
;; Disable this test that is failing randomly:
|
;; Disable this test that is failing randomly:
|
||||||
;; https://gitlab.gnome.org/GNOME/tracker-miners/-/issues/170.
|
;; https://gitlab.gnome.org/GNOME/tracker-miners/-/issues/170.
|
||||||
(substitute* "tests/libtracker-miner/meson.build"
|
(substitute* "tests/libtracker-miner/meson.build"
|
||||||
(("'miner-fs'.*")
|
(("'miner-fs'.*")
|
||||||
""))))
|
""))))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
;; Some tests expect to write to $HOME.
|
;; Some tests expect to write to $HOME.
|
||||||
|
@ -8956,46 +8956,46 @@ endpoint and it understands SPARQL.")
|
||||||
;; /-/issues/226).
|
;; /-/issues/226).
|
||||||
"--no-suite" "slow")))))))
|
"--no-suite" "slow")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("dbus" ,dbus)
|
(list dbus
|
||||||
("intltool" ,intltool)
|
intltool
|
||||||
("glib:bin" ,glib "bin")
|
`(,glib "bin")
|
||||||
("docbook-xsl" ,docbook-xsl)
|
docbook-xsl
|
||||||
("docbook-xml-4.5" ,docbook-xml)
|
docbook-xml
|
||||||
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
gsettings-desktop-schemas
|
||||||
("asciidoc" ,asciidoc)
|
asciidoc
|
||||||
("xsltproc" ,libxslt)
|
libxslt
|
||||||
("gobject-introspection" ,gobject-introspection)
|
gobject-introspection
|
||||||
("pkg-config" ,pkg-config)
|
pkg-config
|
||||||
("python-pygobject" ,python-pygobject)))
|
python-pygobject))
|
||||||
(inputs
|
(inputs
|
||||||
`(("exempi" ,exempi)
|
(list exempi
|
||||||
("ffmpeg" ,ffmpeg)
|
ffmpeg
|
||||||
("flac" ,flac)
|
flac
|
||||||
("giflib" ,giflib)
|
giflib
|
||||||
("glib" ,glib)
|
glib
|
||||||
("gstreamer" ,gstreamer)
|
gstreamer
|
||||||
("icu4c" ,icu4c)
|
icu4c
|
||||||
("json-glib" ,json-glib)
|
json-glib
|
||||||
("libcue" ,libcue)
|
libcue
|
||||||
("libexif" ,libexif)
|
libexif
|
||||||
("libgsf" ,libgsf)
|
libgsf
|
||||||
("libgxps" ,libgxps)
|
libgxps
|
||||||
("libiptcdata" ,libiptcdata)
|
libiptcdata
|
||||||
("libjpeg" ,libjpeg-turbo)
|
libjpeg-turbo
|
||||||
("libosinfo" ,libosinfo)
|
libosinfo
|
||||||
("libpng" ,libpng)
|
libpng
|
||||||
("libseccomp" ,libseccomp)
|
libseccomp
|
||||||
("libsoup" ,libsoup)
|
libsoup
|
||||||
("libtiff" ,libtiff)
|
libtiff
|
||||||
("libvorbis" ,libvorbis)
|
libvorbis
|
||||||
("libxml2" ,libxml2)
|
libxml2
|
||||||
("poppler" ,poppler)
|
poppler
|
||||||
("shared-mime-info" ,shared-mime-info)
|
shared-mime-info
|
||||||
("taglib" ,taglib)
|
taglib
|
||||||
("totem-pl-parser" ,totem-pl-parser)
|
totem-pl-parser
|
||||||
("tracker" ,tracker)
|
tracker
|
||||||
("upower" ,upower)
|
upower
|
||||||
("zlib" ,zlib)))
|
zlib))
|
||||||
(synopsis "Metadata database, indexer and search tool")
|
(synopsis "Metadata database, indexer and search tool")
|
||||||
(home-page "https://wiki.gnome.org/Projects/Tracker")
|
(home-page "https://wiki.gnome.org/Projects/Tracker")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue