diff options
author | Ludovic Courtès <[email protected]> | 2017-03-09 16:35:41 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2017-03-09 16:35:41 +0100 |
commit | e90e0fad1b3ba79d81f02424e143ee6f4f736e8b (patch) | |
tree | 2c26190fd9114199b0ef79303e18a61100cab4af /gnu/packages/enlightenment.scm | |
parent | 8ea0700d231a8819fc7e8332e9685f0ce15c174e (diff) | |
parent | 9ec2a4d3fec44f08a55df9f5f3d1a04b83e7fcf6 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/enlightenment.scm')
-rw-r--r-- | gnu/packages/enlightenment.scm | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index a34578afe7..b9a55333df 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -197,7 +197,7 @@ Libraries with some extra bells and whistles.") (define-public enlightenment (package (name "enlightenment") - (version "0.21.5") + (version "0.21.6") (source (origin (method url-fetch) (uri @@ -205,7 +205,7 @@ Libraries with some extra bells and whistles.") name "/" name "-" version ".tar.xz")) (sha256 (base32 - "1fslq70z4s6v9ipahnk8s5fgqnqq4njv4rlqv951r1bh1xk5lx7h")))) + "0gan3c8jbvhcmvb2fpbprr3m6db0afg1dnrb87nbqb399nsi81zd")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--enable-mount-eeze"))) @@ -253,7 +253,17 @@ embedded systems.") (lambda _ (setenv "CFLAGS" (string-append "-I" (assoc-ref %build-inputs "python-dbus") - "/include/dbus-1.0"))))))) + "/include/dbus-1.0")) + #t)) + (add-before 'check 'set-environment + (lambda _ + ;; Some tests require write access to HOME. + (setenv "HOME" "/tmp") + #t))) + ;; FIXME: Some tests require a running D-Bus server or a network + ;; connection and should be disabled. Other test failures looks + ;; legitimate. Disabled for now, needs work! + #:tests? #f)) (native-inputs `(("pkg-config" ,pkg-config) ("python-cython" ,python-cython))) |