From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: [PATCH] gnu: mutt: Upgrade to 1.5.23 Date: Wed, 02 Apr 2014 04:21:07 -0400 Message-ID: <87ioqsjg5o.fsf@yeeloong.lan> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36965) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WVGRE-0000Cg-WF for guix-devel@gnu.org; Wed, 02 Apr 2014 04:22:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WVGRA-00007n-0i for guix-devel@gnu.org; Wed, 02 Apr 2014 04:22:24 -0400 Received: from world.peace.net ([96.39.62.75]:42660) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WVGR9-0008T3-SS for guix-devel@gnu.org; Wed, 02 Apr 2014 04:22:19 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain This upgrade includes an important security fix (see DSA-2874-1), and adds a new download URL as ftp.mutt.org is currently offline. Mark --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-mutt-Upgrade-to-1.5.23.patch Content-Description: [PATCH] gnu: mutt: Upgrade to 1.5.23 >From 4160a1b1d307ef07f66fc3e3cfee858294e2cc21 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Wed, 2 Apr 2014 04:16:11 -0400 Subject: [PATCH] gnu: mutt: Upgrade to 1.5.23. * gnu/packages/mail.scm (mutt): Upgrade to 1.5.23. Add bitbucket source URL and try it first. --- gnu/packages/mail.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 703762e..eb9591f 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -136,14 +136,18 @@ aliasing facilities to work just as they would on normal mail.") (define-public mutt (package (name "mutt") - (version "1.5.21") + (version "1.5.23") (source (origin (method url-fetch) - (uri (string-append "ftp://ftp.mutt.org/mutt/devel/mutt-" - version ".tar.gz")) + (uri (list ;; Temporarily put bitbucket first, because + ;; ftp.mutt.org has been down for a while. + (string-append "https://bitbucket.org/mutt/mutt/downloads/mutt-" + version ".tar.gz") + (string-append "ftp://ftp.mutt.org/mutt/devel/mutt-" + version ".tar.gz"))) (sha256 (base32 - "1864cwz240gh0zy56fb47qqzwyf6ghg01037rb4p2kqgimpg6h91")))) + "0dzx4qk50pjfsb6cs5jahng96a52k12f7pm0sc78iqdrawg71w1s")))) (build-system gnu-build-system) (inputs `(("cyrus-sasl" ,cyrus-sasl) -- 1.8.4 --=-=-=--