[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] gnu: mutt: Upgrade to 1.5.23
From: |
Mark H Weaver |
Subject: |
[PATCH] gnu: mutt: Upgrade to 1.5.23 |
Date: |
Wed, 02 Apr 2014 04:21:07 -0400 |
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
>From 4160a1b1d307ef07f66fc3e3cfee858294e2cc21 Mon Sep 17 00:00:00 2001
From: Mark H Weaver <address@hidden>
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
- [PATCH] gnu: mutt: Upgrade to 1.5.23,
Mark H Weaver <=