GNU bug report logs -
#67354
[PATCH gnome-team 1/2] gnu: grilo: Update to 0.3.16.
Previous Next
Reported by: Vivien Kraus <vivien <at> planete-kraus.eu>
Date: Tue, 21 Nov 2023 22:49:02 UTC
Severity: normal
Tags: patch
Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 67354 in the body.
You can then email your comments to 67354 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#67354
; Package
guix-patches
.
(Tue, 21 Nov 2023 22:49:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Vivien Kraus <vivien <at> planete-kraus.eu>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 21 Nov 2023 22:49:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/gnome.scm (grilo): Update to 0.3.16.
[native-inputs]: Add python.
[home-page]: Update.
Change-Id: Iaf391b1246e74b58536a0470ea68bd53fefe2f93
---
gnu/packages/gnome.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index ab485cffb1..9cef622869 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -6511,7 +6511,7 @@ (define-public gnome-klotski
(define-public grilo
(package
(name "grilo")
- (version "0.3.15")
+ (version "0.3.16")
(source
(origin
(method url-fetch)
@@ -6519,7 +6519,7 @@ (define-public grilo
(version-major+minor version) "/"
"grilo-" version ".tar.xz"))
(sha256
- (base32 "0bbvaxw2das8826663z23y0acbdmcvggwdh64ws9jrk56vvsqlpk"))))
+ (base32 "15mxffs7f7ndzimpvpq4lj48km5p6i9gyqxa4ggq1qpcqpl80ic8"))))
(build-system meson-build-system)
(arguments
(list #:phases #~(modify-phases %standard-phases
@@ -6534,6 +6534,7 @@ (define-public grilo
pkg-config
gobject-introspection
gtk-doc/stable
+ python
vala))
(inputs
(list cyrus-sasl
@@ -6548,7 +6549,7 @@ (define-public grilo
(variable "GRL_PLUGIN_PATH")
(files (list (string-append "lib/grilo-"
(version-major+minor version)))))))
- (home-page "https://wiki.gnome.org/action/show/Projects/Grilo")
+ (home-page "https://wiki.gnome.org/Projects/Grilo")
(synopsis "Framework for discovering and browsing media")
(description
"Grilo is a framework focused on making media discovery and browsing easy
base-commit: 1cc3b7e80f60a2a5a6a1400ed0b025efeae7a523
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67354
; Package
guix-patches
.
(Tue, 21 Nov 2023 22:50:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 67354 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/gnome.scm (grilo-plugins): Update to 0.3.16.
[arguments]: Convert to a list of G-Expressions.
[home-page]: Update.
Change-Id: I20876f9b594f8d33f2c85e313656791fb3b6812b
---
gnu/packages/gnome.scm | 33 +++++++++++++++++----------------
1 file changed, 17 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 9cef622869..eb2df3c44a 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -6559,7 +6559,7 @@ (define-public grilo
(define-public grilo-plugins
(package
(name "grilo-plugins")
- (version "0.3.15")
+ (version "0.3.16")
(source
(origin
(method url-fetch)
@@ -6567,7 +6567,7 @@ (define-public grilo-plugins
(version-major+minor version) "/"
name "-" version ".tar.xz"))
(sha256
- (base32 "0cxbxg7i9qd1pyfjj7c15x9lawvaw5608jk2apcrac7rakcw6645"))))
+ (base32 "1jydhk822sigyda3mswn59j9s01dy81f553382i8nsvcb2z4svzy"))))
(build-system meson-build-system)
(native-inputs
(list gettext-minimal
@@ -6593,20 +6593,21 @@ (define-public grilo-plugins
tracker
tracker-miners))
(arguments
- `(#:glib-or-gtk? #t
- ;;Disable lua-factory as it needs missing dependencies
- #:configure-flags '("-Denable-lua-factory=no")
- #:phases
- (modify-phases %standard-phases
- (add-before 'configure 'set-shell
- (lambda _
- (setenv "SHELL" (which "bash"))))
- ;; Disable the tracker test that requires the UPower daemon.
- (add-before 'configure 'fix-tests
- (lambda* (#:key inputs #:allow-other-keys)
- (substitute* "tests/tracker3/meson.build"
- (("'test_tracker3'.*") "")))))))
- (home-page "https://live.gnome.org/Grilo")
+ (list
+ #:glib-or-gtk? #t
+ ;;Disable lua-factory as it needs missing dependencies
+ #:configure-flags #~'("-Denable-lua-factory=no")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'configure 'set-shell
+ (lambda _
+ (setenv "SHELL" (which "bash"))))
+ ;; Disable the tracker test that requires the UPower daemon.
+ (add-before 'configure 'fix-tests
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "tests/tracker3/meson.build"
+ (("'test_tracker3'.*") "")))))))
+ (home-page "https://wiki.gnome.org/Projects/Grilo")
(synopsis "Plugins for the Grilo media discovery library")
(description
"Grilo is a framework focused on making media discovery and browsing easy
--
2.41.0
bug closed, send any further explanations to
67354 <at> debbugs.gnu.org and Vivien Kraus <vivien <at> planete-kraus.eu>
Request was from
Liliana Marie Prikler <liliana.prikler <at> gmail.com>
to
control <at> debbugs.gnu.org
.
(Tue, 02 Jan 2024 21:26:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 31 Jan 2024 12:24:10 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 99 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.