[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/182: gnu: gnome-desktop: Update to 3.32.2.
From: |
guix-commits |
Subject: |
11/182: gnu: gnome-desktop: Update to 3.32.2. |
Date: |
Fri, 15 Nov 2019 00:01:22 -0500 (EST) |
kkebreau pushed a commit to branch wip-gnome-updates
in repository guix.
commit 70d76677be492dca3bf76c9eea86a0fdc982c007
Author: Kei Kebreau <address@hidden>
Date: Fri Jul 19 16:43:49 2019 -0400
gnu: gnome-desktop: Update to 3.32.2.
* gnu/packages/gnome.scm (gnome-desktop): Update to 3.32.2.
[build-system]: Use meson-build-system.
[arguments]: Add 'pre-check' phase.
[native-inputs]: Add glib:bin, glibc-locales and xorg-server-for-tests.
[inputs]: Move iso-codes, libseccomp, libx11 and xkeyboard-config...
[propagated-inputs]: ...here.
---
gnu/packages/gnome.scm | 36 ++++++++++++++++++++++++------------
1 file changed, 24 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index a0a4677..040d238 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -471,7 +471,7 @@ commonly used macros.")
(define-public gnome-desktop
(package
(name "gnome-desktop")
- (version "3.30.2")
+ (version "3.32.2")
(source
(origin
(method url-fetch)
@@ -480,8 +480,8 @@ commonly used macros.")
name "-" version ".tar.xz"))
(sha256
(base32
- "0k6iccfj9naw42dl2mgljfvk12dmvg06plg86qd81nksrf9ycxal"))))
- (build-system gnu-build-system)
+ "0bidx4626x7k2myv6f64qv4fzmxv8v475wibiz19kj8hjfr737q9"))))
+ (build-system meson-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
@@ -491,27 +491,39 @@ commonly used macros.")
(substitute* "libgnome-desktop/gnome-languages.c"
(("\"locale\"")
(string-append "\"" libc "/bin/locale\"")))
- #t))))))
+ #t)))
+ (add-before 'check 'pre-check
+ (lambda* (#:key inputs #:allow-other-keys)
+ ;; Tests require a running X server and locales.
+ (system "Xvfb :1 &")
+ (setenv "DISPLAY" ":1")
+ (setenv "GUIX_LOCPATH"
+ (string-append (assoc-ref inputs "glibc-locales")
+ "/lib/locale"))
+ #t)))))
(native-inputs
- `(("gobject-introspection" ,gobject-introspection)
+ `(("glib:bin" ,glib "bin") ; for gdbus-codegen
+ ("glibc-locales" ,glibc-locales) ; for tests
+ ("gobject-introspection" ,gobject-introspection)
("itstool" ,itstool)
("intltool" ,intltool)
("pkg-config" ,pkg-config)
- ("xmllint" ,libxml2)))
+ ("xmllint" ,libxml2)
+ ("xorg-server" ,xorg-server-for-tests)))
(propagated-inputs
;; Required by gnome-desktop-3.0.pc.
`(("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
- ("gtk+" ,gtk+)))
- (inputs
- `(("gdk-pixbuf" ,gdk-pixbuf)
- ("glib" ,glib)
+ ("gtk+" ,gtk+)
("iso-codes" ,iso-codes)
("libseccomp" ,libseccomp)
("libx11" ,libx11)
+ ("xkeyboard-config" ,xkeyboard-config)))
+ (inputs
+ `(("gdk-pixbuf" ,gdk-pixbuf)
+ ("glib" ,glib)
("libxext" ,libxext)
("libxkbfile" ,libxkbfile)
- ("libxrandr" ,libxrandr)
- ("xkeyboard-config" ,xkeyboard-config)))
+ ("libxrandr" ,libxrandr)))
(home-page "https://www.gnome.org/")
(synopsis
"Libgnome-desktop, gnome-about, and desktop-wide documents")
- branch wip-gnome-updates created (now a781cb5), guix-commits, 2019/11/15
- 01/182: gnu: adwaita-icon-theme: Update to 3.32.0., guix-commits, 2019/11/15
- 03/182: gnu: eog: Update to 3.32.2., guix-commits, 2019/11/15
- 04/182: gnu: epiphany: Update to 3.32.3., guix-commits, 2019/11/15
- 08/182: gnu: gnome-bluetooth: Update to 3.32.1., guix-commits, 2019/11/15
- 02/182: gnu: baobab: Update to 3.32.0., guix-commits, 2019/11/15
- 05/182: gnu: file-roller: Update to 3.32.1., guix-commits, 2019/11/15
- 07/182: gnu: gnome-backgrounds: Update to 3.32.0., guix-commits, 2019/11/15
- 06/182: gnu: gedit: Update to 3.32.2., guix-commits, 2019/11/15
- 11/182: gnu: gnome-desktop: Update to 3.32.2.,
guix-commits <=
- 10/182: gnu: gnome-icon-theme: Update home page., guix-commits, 2019/11/15
- 13/182: gnu: gnome-settings-daemon: Update to 3.32.1., guix-commits, 2019/11/15
- 16/182: gnu: grilo: Update to 0.3.9., guix-commits, 2019/11/15
- 14/182: gnu: Add python-dbusmock., guix-commits, 2019/11/15
- 17/182: gnu: tracker: Update to 2.2.2., guix-commits, 2019/11/15
- 09/182: gnu: gsettings-desktop-schemas: Update to 3.32.0., guix-commits, 2019/11/15
- 12/182: gnu: gnome-online-accounts: Update to 3.32.0., guix-commits, 2019/11/15
- 19/182: gnu: python2-pylint: Update to 1.9.5., guix-commits, 2019/11/15
- 22/182: gnu: evolution: Update to 3.32.4., guix-commits, 2019/11/15
- 25/182: gnu: gnome-tweaks: Update to 3.32.0., guix-commits, 2019/11/15