From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: Re: [PATCH] bump mu/mu4e to version 0.9.11 Date: Fri, 27 Feb 2015 01:26:38 +0100 Message-ID: <87vbionqrl.fsf@denknerd.org> References: <87wq34nu5j.fsf@denknerd.org> <87twy86x53.fsf@netris.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38817) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YR8lQ-0006qw-DV for guix-devel@gnu.org; Thu, 26 Feb 2015 19:26:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YR8lN-0008IK-7r for guix-devel@gnu.org; Thu, 26 Feb 2015 19:26:44 -0500 Received: from mx02.posteo.de ([89.146.194.165]:53995) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YR8lN-0008I9-1X for guix-devel@gnu.org; Thu, 26 Feb 2015 19:26:41 -0500 In-reply-to: <87twy86x53.fsf@netris.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Mark H Weaver Cc: Guix-devel --=-=-= Content-Type: text/plain Hi Mark, > Looks good to me, modulo a few minor nits. Thanks for the feedback! I've tried again, see attachment. Cheers, p. --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-mu-Update-to-0.9.11.patch >From 579637f64f075c25028479a259ae860fe276efa6 Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Fri, 27 Feb 2015 01:23:48 +0100 Subject: [PATCH] gnu: mu: Update to 0.9.11. * gnu/packages/mail.scm (mu): Update to 0.9.11. --- gnu/packages/mail.scm | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index dc33c8c..ca25c58 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -304,18 +304,22 @@ repository and Maildir/IMAP as LOCAL repository.") (define-public mu (package (name "mu") - (version "0.9.9.5") + (version "0.9.11") (source (origin (method url-fetch) - (uri (string-append "https://mu0.googlecode.com/files/mu-" + (uri (string-append "https://github.com/djcb/mu/archive/v" version ".tar.gz")) + (file-name (string-append "mu-" version ".tar.gz")) (sha256 (base32 - "1hwkliyb8fjrz5sw9fcisssig0jkdxzhccw0ld0l9a10q1l9mqhp")))) + "01n1lzq4pfsm5pn932p948d1z55yqc7kkm1ifjxjchb3k8lr66fh")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) ("glib" ,glib "bin") ; for gtester + ("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) ("texinfo" ,texinfo))) ;; TODO: Add webkit and gtk to build the mug GUI. (inputs @@ -326,14 +330,18 @@ repository and Maildir/IMAP as LOCAL repository.") ("gmime" ,gmime) ("tzdata" ,tzdata))) ;for mu/test/test-mu-query.c (arguments - '(#:phases (alist-cons-before - 'check 'check-tz-setup - (lambda* (#:key inputs #:allow-other-keys) - ;; For mu/test/test-mu-query.c - (setenv "TZDIR" - (string-append (assoc-ref inputs "tzdata") - "/share/zoneinfo"))) - %standard-phases))) + '(#:phases (alist-cons-after + 'unpack 'autoreconf + (lambda _ + (zero? (system* "autoreconf" "-vi"))) + (alist-cons-before + 'check 'check-tz-setup + (lambda* (#:key inputs #:allow-other-keys) + ;; For mu/test/test-mu-query.c + (setenv "TZDIR" + (string-append (assoc-ref inputs "tzdata") + "/share/zoneinfo"))) + %standard-phases)))) (home-page "http://www.djcbsoftware.nl/code/mu/") (synopsis "Quickly find emails") (description -- 2.3.1 --=-=-=--