all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: David Thompson <dthompson2@worcester.edu>
To: 宋文武 <iyzsong@gmail.com>, guix-devel@gnu.org
Subject: Re: [PATCH 03/15] gnu: xfconf: Update to 4.12.0.
Date: Sun, 01 Mar 2015 07:49:11 -0500	[thread overview]
Message-ID: <877fv07uig.fsf@fsf.org> (raw)
In-Reply-To: <1425189446-6455-3-git-send-email-iyzsong@gmail.com>

宋文武 <iyzsong@gmail.com> writes:

> * gnu/packages/xfce.scm (xfconf): Update to 4.12.0.
>   [arguments]: Add #:phases.  Remove #:parallel-tests? argument.
> ---
>  gnu/packages/xfce.scm | 17 ++++++++++++++---
>  1 file changed, 14 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
> index 3679eb0..0e45ee4 100644
> --- a/gnu/packages/xfce.scm
> +++ b/gnu/packages/xfce.scm
> @@ -89,7 +89,7 @@ Xfce Desktop Environment.")
>  (define-public xfconf
>    (package
>      (name "xfconf")
> -    (version "4.10.0")
> +    (version "4.12.0")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append "http://archive.xfce.org/xfce/"
> @@ -97,9 +97,20 @@ Xfce Desktop Environment.")
>                                    "/src/" name "-" version ".tar.bz2"))
>                (sha256
>                 (base32
> -                "0xh520z0qh0ib0ijgnyrgii9h5d4pc53n6mx1chhyzfc86j1jlhp"))))
> +                "0mmi0g30aln3x98y5p507g17pipq0dj0bwypshan8cq5hkmfl44r"))))
>      (build-system gnu-build-system)
> -    (arguments '(#:parallel-tests? #f)) ; parallel tests failed
> +    (arguments
> +     '(#:phases
> +       ;; Swap check and install phases.
> +       (alist-cons-after
> +        'install 'check
> +        (lambda _
> +          (setenv "HOME" (getenv "TMPDIR")) ; xfconfd requires a writable HOME
> +          ;; Run test-suite under a dbus session.
> +          (setenv "XDG_DATA_DIRS" ; for finding org.xfce.Xfconf.service
> +                  (string-append %output "/share"))
> +          (zero? (system* "dbus-launch" "make" "check")))
> +        (alist-delete 'check %standard-phases))))

So, tests need to be run *after* installation?  Weird...

>      (native-inputs
>       `(("pkg-config" ,pkg-config)
>         ("intltool" ,intltool)))
> -- 
> 2.1.2
>
>

LGTM!

-- 
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate

  reply	other threads:[~2015-03-01 12:49 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-01  5:57 [PATCH 01/15] gnu: gtk-xfce-engine: Update to 2.10.0 宋文武
2015-03-01  5:57 ` [PATCH 02/15] gnu: libxfce4util: Update to 4.12.1 宋文武
2015-03-01 12:47   ` David Thompson
2015-03-01  5:57 ` [PATCH 03/15] gnu: xfconf: Update to 4.12.0 宋文武
2015-03-01 12:49   ` David Thompson [this message]
2015-03-02  5:59   ` Mark H Weaver
2015-03-01  5:57 ` [PATCH 04/15] gnu: libxfce4ui: " 宋文武
2015-03-01 12:49   ` David Thompson
2015-03-01  5:57 ` [PATCH 05/15] gnu: exo: Update to 0.10.3 宋文武
2015-03-01 12:50   ` David Thompson
2015-03-01  5:57 ` [PATCH 06/15] gnu: garcon: Update to 0.4.0 宋文武
2015-03-01 12:50   ` David Thompson
2015-03-01  5:57 ` [PATCH 07/15] gnu: tumbler: Update to 0.1.31 宋文武
2015-03-01 12:52   ` David Thompson
2015-03-01  5:57 ` [PATCH 08/15] gnu: xfce4-panel: Update to 4.12.0 宋文武
2015-03-01 12:52   ` David Thompson
2015-03-01  5:57 ` [PATCH 09/15] gnu: xfce4-appfinder: " 宋文武
2015-03-01 12:53   ` David Thompson
2015-03-01  5:57 ` [PATCH 10/15] gnu: xfce4-session: " 宋文武
2015-03-01 12:53   ` David Thompson
2015-03-01  5:57 ` [PATCH 11/15] gnu: xfce4-settings: " 宋文武
2015-03-01 12:54   ` David Thompson
2015-03-01  5:57 ` [PATCH 12/15] gnu: thunar: Update to 1.6.6 宋文武
2015-03-01 12:54   ` David Thompson
2015-03-01  5:57 ` [PATCH 13/15] gnu: thunar-volman: Update to 0.8.1 宋文武
2015-03-01 12:54   ` David Thompson
2015-03-01  5:57 ` [PATCH 14/15] gnu: xfwm4: Update to 4.12.0 宋文武
2015-03-01 12:55   ` David Thompson
2015-03-01  5:57 ` [PATCH 15/15] gnu: xfdesktop: " 宋文武
2015-03-01 12:56   ` David Thompson
2015-03-01 10:09 ` [PATCH 01/15] gnu: gtk-xfce-engine: Update to 2.10.0 Andreas Enge
2015-03-01 10:30   ` 宋文武
2015-03-02  9:14     ` Andreas Enge
2015-03-01 10:50   ` 宋文武
2015-03-02  6:06   ` Mark H Weaver
2015-03-02  8:46     ` Andreas Enge
2015-03-05 19:32       ` Mark H Weaver
2015-03-01 12:47 ` David Thompson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=877fv07uig.fsf@fsf.org \
    --to=dthompson2@worcester.edu \
    --cc=guix-devel@gnu.org \
    --cc=iyzsong@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.