From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:47752) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hDFIh-0000tP-Kx for guix-patches@gnu.org; Sun, 07 Apr 2019 17:26:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hDFIg-0001KT-GW for guix-patches@gnu.org; Sun, 07 Apr 2019 17:26:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:35242) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hDFIg-0001KF-9S for guix-patches@gnu.org; Sun, 07 Apr 2019 17:26:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hDFIf-00009H-SQ for guix-patches@gnu.org; Sun, 07 Apr 2019 17:26:01 -0400 Subject: [bug#35185] [PATCH] gnu: mu: Update to 1.2. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:47679) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hDFI5-0000nA-Ju for guix-patches@gnu.org; Sun, 07 Apr 2019 17:25:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hDFI4-0000zI-3p for guix-patches@gnu.org; Sun, 07 Apr 2019 17:25:25 -0400 Received: from mout.gmx.net ([212.227.15.19]:38363) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hDFI3-0000wI-F8 for guix-patches@gnu.org; Sun, 07 Apr 2019 17:25:24 -0400 From: Pierre Langlois Date: Sun, 07 Apr 2019 22:25:18 +0100 Message-ID: <878swl7bk1.fsf@gmx.com> 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: 35185@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello Guix! Here's an update for mu! I've noticed we've moved away from using Github's generated tarballs and using git-fetch instead. However, it looks like the tarball for mu is provided by the developer so we should be fine. Is that right? See "Assets" from https://github.com/djcb/mu/releases/tag/1.2 . Thanks, Pierre --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-mu-Update-to-1.2.patch Content-Transfer-Encoding: quoted-printable >From ba14d33b390c39da0f41067c4d6333808e5e584e Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Sun, 7 Apr 2019 22:16:00 +0100 Subject: [PATCH] gnu: mu: Update to 1.2. * gnu/packages/mail.scm (mu): Update to 1.2. [inputs]: Use gmime 3. --- gnu/packages/mail.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index a2971a5e67..5ff5163fe1 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -24,7 +24,7 @@ ;;; Copyright =C2=A9 2017 Kyle Meyer ;;; Copyright =C2=A9 2017, 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2017, 2018 Rene Saavedra -;;; Copyright =C2=A9 2018 Pierre Langlois +;;; Copyright =C2=A9 2018, 2019 Pierre Langlois ;;; Copyright =C2=A9 2018 Alex Vong ;;; Copyright =C2=A9 2018 G=C3=A1bor Boskovits ;;; Copyright =C2=A9 2018, 2019 Ricardo Wurmus @@ -675,15 +675,15 @@ security functionality including PGP, S/MIME, SSH, an= d SSL.") (define-public mu (package (name "mu") - (version "1.0") + (version "1.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/djcb/mu/releases/" - "download/v" version "/mu-" - version ".tar.xz")) + "download/" version "/mu-" version + ".0.tar.xz")) (sha256 (base32 - "04x5azl19gszw2h7argq666gf9xs4hy9q7w9cbqxvy08n56xqsln")))) + "0fh5bxvhjqv1p9z783lym8y1k3p4jcc3wg6wf7zl8s6w8krcfd7n")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) @@ -695,7 +695,7 @@ security functionality including PGP, S/MIME, SSH, and = SSL.") `(("xapian" ,xapian) ("guile" ,guile-2.2) ("glib" ,glib) - ("gmime" ,gmime-2.6))) + ("gmime" ,gmime))) (arguments `(#:modules ((guix build gnu-build-system) (guix build utils) --=20 2.21.0 --=-=-=--