[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
21/21: gnu: guile-gi: Update to 0.2.1.
From: |
guix-commits |
Subject: |
21/21: gnu: guile-gi: Update to 0.2.1. |
Date: |
Mon, 25 Nov 2019 08:05:52 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit b5d4d5b9bcf267fddd02fcc14b88eac0bebf979f
Author: Ricardo Wurmus <address@hidden>
Date: Mon Nov 25 00:11:05 2019 +0100
gnu: guile-gi: Update to 0.2.1.
* gnu/packages/guile-xyz.scm (guile-gi): Update to 0.2.1.
[arguments]: Add phase to start Xorg server for tests.
[native-inputs]: Add xorg-server.
---
gnu/packages/guile-xyz.scm | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 245eb9c..e2eee47 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -2255,22 +2255,32 @@ list of components. This module takes care of that for
you.")
(define-public guile-gi
(package
(name "guile-gi")
- (version "0.2.0")
+ (version "0.2.1")
(source (origin
(method url-fetch)
(uri (string-append "http://lonelycactus.com/tarball/guile_gi-"
version ".tar.gz"))
(sha256
(base32
- "1n4pbrmbrjkrx826a4m31ag5c35rgkj1sirqh4qalk7gg67cfb41"))))
+ "1ah5bmkzplsmkrk7v9vlxlqch7i91qv4cq2d2nar9xshbpcrj484"))))
(build-system gnu-build-system)
(arguments
- `(#:configure-flags '("--with-gnu-filesystem-hierarchy")))
+ `(#:configure-flags '("--with-gnu-filesystem-hierarchy")
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'start-xorg-server
+ (lambda* (#:key inputs #:allow-other-keys)
+ ;; The init_check test requires a running X server.
+ (system (format #f "~a/bin/Xvfb :1 &"
+ (assoc-ref inputs "xorg-server")))
+ (setenv "DISPLAY" ":1")
+ #t)))))
(native-inputs
`(("gettext" ,gnu-gettext)
("glib:bin" ,glib "bin") ; for glib-compile-resources
("libtool" ,libtool)
- ("pkg-config" ,pkg-config)))
+ ("pkg-config" ,pkg-config)
+ ("xorg-server" ,xorg-server)))
(propagated-inputs
`(("glib" ,glib)
("gobject-introspection" ,gobject-introspection)
- branch master updated (aca2bf5 -> b5d4d5b), guix-commits, 2019/11/25
- 04/21: gnu: r-digest: Update to 0.6.23., guix-commits, 2019/11/25
- 06/21: gnu: r-rcppeigen: Update to 0.3.3.7.0., guix-commits, 2019/11/25
- 15/21: gnu: r-sjplot: Update to 2.8.0., guix-commits, 2019/11/25
- 13/21: gnu: r-parameters: Update to 0.3.0., guix-commits, 2019/11/25
- 19/21: gnu: r-bookdown: Update to 0.16., guix-commits, 2019/11/25
- 21/21: gnu: guile-gi: Update to 0.2.1.,
guix-commits <=
- 01/21: gnu: r-scales: Move to (gnu packages cran)., guix-commits, 2019/11/25
- 16/21: gnu: r-tidytree: Update to 0.3.0., guix-commits, 2019/11/25
- 02/21: gnu: r-scales: Update to 1.1.0., guix-commits, 2019/11/25
- 05/21: gnu: r-rlang: Update to 0.4.2., guix-commits, 2019/11/25
- 03/21: gnu: r-pheatmap: Move to (gnu packages cran)., guix-commits, 2019/11/25
- 12/21: gnu: r-abn: Update to 2.2., guix-commits, 2019/11/25
- 08/21: gnu: r-insight: Update to 0.7.0., guix-commits, 2019/11/25
- 07/21: gnu: Add r-effectsize., guix-commits, 2019/11/25
- 14/21: gnu: r-tidyverse: Update to 1.3.0., guix-commits, 2019/11/25
- 17/21: gnu: r-rnifti: Update to 1.0.0., guix-commits, 2019/11/25