From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39676) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7jtN-0007iw-Lk for guix-patches@gnu.org; Mon, 08 May 2017 10:44:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7jtK-0006qz-CR for guix-patches@gnu.org; Mon, 08 May 2017 10:44:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36309) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d7jtK-0006qp-7U for guix-patches@gnu.org; Mon, 08 May 2017 10:44:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d7jtJ-0006aE-Uq for guix-patches@gnu.org; Mon, 08 May 2017 10:44:01 -0400 Subject: bug#26828: Update libetpan to 1.8 (CVE-2017-8825) Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39561) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7jsq-0007gX-6c for guix-patches@gnu.org; Mon, 08 May 2017 10:43:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7jsm-0006V7-VE for guix-patches@gnu.org; Mon, 08 May 2017 10:43:32 -0400 Received: from dau94-h03-89-91-205-84.dsl.sta.abo.bbox.fr ([89.91.205.84]:59744 helo=skaro.lepiller.eu) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d7jsm-0006Sp-He for guix-patches@gnu.org; Mon, 08 May 2017 10:43:28 -0400 Received: from localhost (localhost [127.0.0.1]) by skaro.lepiller.eu (Postfix) with ESMTP id 0677981DD1 for ; Mon, 8 May 2017 16:43:24 +0200 (CEST) Received: from skaro.lepiller.eu ([127.0.0.1]) by localhost (lepiller.eu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kEVBHmmNYiY4 for ; Mon, 8 May 2017 16:43:18 +0200 (CEST) Received: from localhost (89-93-157-164.hfc.dyn.abo.bbox.fr [89.93.157.164]) by skaro.lepiller.eu (Postfix) with ESMTPSA id 53EF380F1E for ; Mon, 8 May 2017 16:43:18 +0200 (CEST) Date: Mon, 8 May 2017 16:43:13 +0200 From: Julien Lepiller Message-ID: <20170508164302.41bfd137@lepiller.eu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/wBLDYXEnWEkIN.ukuDpYOED" 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: 26828@debbugs.gnu.org --MP_/wBLDYXEnWEkIN.ukuDpYOED Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, here is a patch to update libetpan to version 1.8. This update also fixes CVE-2017-8825. Should it be mentionned in the commit log? --MP_/wBLDYXEnWEkIN.ukuDpYOED Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-libetpan-Update-to-1.8.patch >From a14e603dcfcba7164741dd5948a310515405c37e Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Mon, 8 May 2017 16:37:53 +0200 Subject: [PATCH] gnu: libetpan: Update to 1.8. * gnu/packages/mail.scm (libetpan): Update to 1.8. [license]: Change to bsd-3. --- gnu/packages/mail.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 014c77d91..39d394140 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -837,14 +837,14 @@ useful features.") (define-public libetpan (package (name "libetpan") - (version "1.7.2") + (version "1.8") (source (origin (method url-fetch) (uri (string-append "https://github.com/dinhviethoa/" name "/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "081ixgj3skglq9i7v0jb835lmfx21zi4i5b7997igwr0lj174y9j")))) + (base32 "1sxnaglp5hb0z78sgnfzva4x8m4flqhicvm1dz0krkxdmfsafrsf")))) (build-system gnu-build-system) (native-inputs `(("autoconf" ,(autoconf-wrapper)) ("automake" ,automake) @@ -875,7 +875,7 @@ useful features.") framework for different kinds of mail access: IMAP, SMTP, POP and NNTP. It provides an API for C language. It's the low-level API used by MailCore and MailCore 2.") - (license (non-copyleft "file://COPYING")))) + (license bsd-3))) (define-public compface (package -- 2.12.2 --MP_/wBLDYXEnWEkIN.ukuDpYOED--