From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56700) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ejihV-0001Cs-VX for guix-patches@gnu.org; Thu, 08 Feb 2018 04:41:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ejihS-0000ym-SY for guix-patches@gnu.org; Thu, 08 Feb 2018 04:41:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54074) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ejihS-0000ya-OR for guix-patches@gnu.org; Thu, 08 Feb 2018 04:41:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ejihS-0001gK-FS for guix-patches@gnu.org; Thu, 08 Feb 2018 04:41:02 -0500 Subject: [bug#30388] [PATCH] gnu: mu: Update to 1.0. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56516) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ejigp-0000hF-3q for guix-patches@gnu.org; Thu, 08 Feb 2018 04:40:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ejigm-0000il-12 for guix-patches@gnu.org; Thu, 08 Feb 2018 04:40:23 -0500 Received: from mout.gmx.net ([212.227.17.21]:61733) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ejigl-0000hu-N1 for guix-patches@gnu.org; Thu, 08 Feb 2018 04:40:19 -0500 Received: from labiere ([80.229.147.137]) by mail.gmx.com (mrgmx103 [212.227.17.174]) with ESMTPSA (Nemesis) id 0Lk81O-1fHOY70rBC-00cDL3 for ; Thu, 08 Feb 2018 10:40:17 +0100 From: Pierre Langlois Date: Thu, 08 Feb 2018 09:40:16 +0000 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30388@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix! Here's a small patch to update the mu mail client/indexer. Thanks, Pierre --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-mu-Update-to-1.0.patch Content-Transfer-Encoding: quoted-printable >From b8343260998623af3e964c3b5a4fb394b4b185d2 Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Sat, 9 Dec 2017 13:05:34 +0000 Subject: [PATCH] gnu: mu: Update to 1.0. * gnu/packages/mail.scm (mu): Update to 1.0. --- gnu/packages/mail.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index fcb347238..22c85745d 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -24,6 +24,7 @@ ;;; Copyright =C2=A9 2017 Kyle Meyer ;;; Copyright =C2=A9 2017, 2018 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2017 Rene Saavedra +;;; Copyright =C2=A9 2018 Pierre Langlois ;;; ;;; This file is part of GNU Guix. ;;; @@ -532,15 +533,15 @@ security functionality including PGP, S/MIME, SSH, an= d SSL.") (define-public mu (package (name "mu") - (version "0.9.18") + (version "1.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/djcb/mu/releases/" - "download/" version "/mu-" - version ".tar.gz")) + "download/v" version "/mu-" + version ".tar.xz")) (sha256 (base32 - "02g82zvxfgn17wzy846bfxj0izjj7yklhwdnhwxy1y2kin4fqnb5")))) + "04x5azl19gszw2h7argq666gf9xs4hy9q7w9cbqxvy08n56xqsln")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) --=20 2.16.1 --=-=-=--