From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:32774) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jQ6Vb-0001ID-7A for guix-patches@gnu.org; Sun, 19 Apr 2020 05:45:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jQ6Va-000757-KR for guix-patches@gnu.org; Sun, 19 Apr 2020 05:45:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60753) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jQ6Va-00074w-6m for guix-patches@gnu.org; Sun, 19 Apr 2020 05:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jQ6Va-0006wN-5K for guix-patches@gnu.org; Sun, 19 Apr 2020 05:45:02 -0400 Subject: [bug#40711] [PATCH] gnu: mu: Update 1.4. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:60880) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jQ6V2-0001HT-VR for guix-patches@gnu.org; Sun, 19 Apr 2020 05:44:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jQ6V2-0006YZ-7S for guix-patches@gnu.org; Sun, 19 Apr 2020 05:44:28 -0400 Received: from mout.gmx.net ([212.227.17.20]:47049) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jQ6V1-0006Ud-GS for guix-patches@gnu.org; Sun, 19 Apr 2020 05:44:27 -0400 Received: from e119807-lin ([93.22.174.232]) by mail.gmx.com (mrgmx105 [212.227.17.174]) with ESMTPSA (Nemesis) id 1M9Wyy-1jKaBP2Xm0-005Vyv for ; Sun, 19 Apr 2020 11:44:23 +0200 From: Pierre Langlois Date: Sun, 19 Apr 2020 11:44:22 +0200 Message-ID: <87tv1fzu6h.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: 40711@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello Guix! A new mu was just released! If you're using it, make sure to read the NEWS, some manual intervention is required to upgrade the database: https://github.com/djcb/mu/blob/master/NEWS.org#14-released-as-of-april-18-2020 Thanks, Pierre --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-mu-Update-1.4.patch Content-Transfer-Encoding: quoted-printable =46rom 87d99246e91cd9a0c197dfed21ff75a6e87ce72b Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Sat, 18 Apr 2020 16:19:39 +0200 Subject: [PATCH] gnu: mu: Update 1.4. * gnu/packages/mail.scm (mu): Update to 1.4. [arguments]: Remove 'fix-date-tests phase. Add 'patch-bin-sh-in-tests phas= e. =2D-- gnu/packages/mail.scm | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 365989f609..c5333b206b 100644 =2D-- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -715,7 +715,7 @@ security functionality including PGP, S/MIME, SSH, and= SSL.") (define-public mu (package (name "mu") - (version "1.2.0") + (version "1.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/djcb/mu/releases/" @@ -723,7 +723,7 @@ security functionality including PGP, S/MIME, SSH, and= SSL.") "mu-" version ".tar.xz")) (sha256 (base32 - "0fh5bxvhjqv1p9z783lym8y1k3p4jcc3wg6wf7zl8s6w8krcfd7n")))= ) + "1ay68rhlngnp2zm6wdmzgr1fsal3spz61swcxlaz5y215qvgjfpy")))= ) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) @@ -758,13 +758,14 @@ security functionality including PGP, S/MIME, SSH, a= nd SSL.") "guile/mu/Makefile.in") (("share/guile/site/2.0/") "share/guile/site/2.2/")) #t)) - (add-after 'patch-configure 'fix-date-tests - ;; Loosen test tolerances to prevent failures caused by daylig= ht - ;; saving time (DST). See: https://github.com/djcb/mu/issues/= 1214. + (add-after 'unpack 'patch-bin-sh-in-tests (lambda _ - (substitute* "lib/parser/test-utils.cc" - (("\\* 60 \\* 60, 1 },") - "* 60 * 60, 3600 + 1 },")) + (substitute* '("guile/tests/test-mu-guile.c" + "mu/test-mu-cmd.c" + "mu/test-mu-cmd-cfind.c" + "mu/test-mu-query.c" + "mu/test-mu-threads.c") + (("/bin/sh") (which "sh"))) #t)) (add-before 'install 'fix-ffi (lambda* (#:key outputs #:allow-other-keys) =2D- 2.26.1 --=-=-=--