From 922eaededc0aa4bb051046c906a4321750dbb22a Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Fri, 27 Feb 2015 01:23:48 +0100 Subject: gnu: mu: Update to 0.9.11. * gnu/packages/mail.scm (mu): Update to 0.9.11. Update source URI. Add autoconf, automake, and libtool to native-inputs. Add autoreconf phase. --- gnu/packages/mail.scm | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) (limited to 'gnu/packages/mail.scm') diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index dc33c8cbd3..ca25c58f68 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 -- cgit v1.2.3 From 17dd4329eb5892ce8a4ffab77f59bc1ca64e3f0a Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Sat, 28 Feb 2015 14:28:00 +0100 Subject: gnu: mail: Add copyright line. * gnu/packages/mail.scm (mu): Add forgotten copyright line. --- gnu/packages/mail.scm | 1 + 1 file changed, 1 insertion(+) (limited to 'gnu/packages/mail.scm') diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index ca25c58f68..a3ea778e12 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2014 Sou Bunnbu ;;; Copyright © 2014 Julien Lepiller ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer +;;; Copyright © 2015 Paul van der Walt ;;; ;;; This file is part of GNU Guix. ;;; -- cgit v1.2.3