From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49753) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d1cHu-0003X2-5V for guix-patches@gnu.org; Fri, 21 Apr 2017 13:24:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d1cHq-0001rW-PL for guix-patches@gnu.org; Fri, 21 Apr 2017 13:24:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34629) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d1cHq-0001rQ-Lb for guix-patches@gnu.org; Fri, 21 Apr 2017 13:24:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d1cHq-0007Ug-Ds for guix-patches@gnu.org; Fri, 21 Apr 2017 13:24:02 -0400 Subject: bug#26592: neomutt: Update to 20170421 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49594) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d1cGt-00034n-Dt for guix-patches@gnu.org; Fri, 21 Apr 2017 13:23:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d1cGq-0001iy-8j for guix-patches@gnu.org; Fri, 21 Apr 2017 13:23:03 -0400 Received: from fragranza.investici.org ([178.175.144.26]:38410) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d1cGp-0001gD-SL for guix-patches@gnu.org; Fri, 21 Apr 2017 13:23:00 -0400 Received: from [178.175.144.26] (fragranza [178.175.144.26]) (Authenticated sender: niasterisk@grrlz.net) by localhost (Postfix) with ESMTPSA id 019682C0112 for ; Fri, 21 Apr 2017 17:22:56 +0000 (UTC) Date: Fri, 21 Apr 2017 17:22:48 +0000 From: ng0 Message-ID: <20170421172248.wdmjofa2lsmmggzt@abyayala> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="squs5vmxtyzeng4f" Content-Disposition: inline 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: 26592@debbugs.gnu.org --squs5vmxtyzeng4f Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Appended patch updates neomutt to 20170421 released on this date. --squs5vmxtyzeng4f Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-neomutt-Update-to-20170421.patch" Content-Transfer-Encoding: quoted-printable =46rom 290f4dfd0003c3f8727c26e4d0102b90c9c54d9b Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Fri, 21 Apr 2017 15:23:38 +0000 Subject: [PATCH] gnu: neomutt: Update to 20170421. * gnu/packages/mail.scm (neomutt): Update to 20170421. (native-inputs): Add 'gettext-minimal'. (description): Clarify the state of neomutt as it is now a microfork of mutt. --- gnu/packages/mail.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 59dfaea85..7931fc005 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -15,7 +15,7 @@ ;;; Copyright =C2=A9 2016 Lukas Gradl ;;; Copyright =C2=A9 2016 Alex Kost ;;; Copyright =C2=A9 2016 Troy Sankey -;;; Copyright =C2=A9 2016, 2017 ng0 +;;; Copyright =C2=A9 2016, 2017 ng0 ;;; Copyright =C2=A9 2016 Cl=C3=A9ment Lassieur ;;; Copyright =C2=A9 2016, 2017 Arun Isaac ;;; Copyright =C2=A9 2016 John Darrington @@ -59,6 +59,7 @@ #:use-module (gnu packages emacs) #:use-module (gnu packages enchant) #:use-module (gnu packages ghostscript) + #:use-module (gnu packages gettext) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) #:use-module (gnu packages gnupg) @@ -264,7 +265,7 @@ operating systems.") (package (inherit mutt) (name "neomutt") - (version "20170306") + (version "20170421") (source (origin (method url-fetch) @@ -273,7 +274,7 @@ operating systems.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0qwcbjm9j1hgzmybw15w53pvfbqcdf47d4sw21s6r2yaj8kx1hag")))) + "09f1abad0vdn08x80hadjccjpnzcbn5fjpj749gb819biyqkl0y2")))) (inputs `(("cyrus-sasl" ,cyrus-sasl) ("gdbm" ,gdbm) @@ -292,6 +293,7 @@ operating systems.") (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) + ("gettext-minimal" ,gettext-minimal) ("pkg-config" ,pkg-config))) (arguments `(#:configure-flags @@ -338,8 +340,7 @@ operating systems.") (synopsis "Command-line mail reader based on Mutt") (description "NeoMutt is a command-line mail reader which is based on mutt. -It adds a large amount of features to mutt, and they all find their way -into mutt, so it is not a fork but a large set of feature patches."))) +It adds a large amount of new and improved features to mutt."))) =20 (define-public gmime (package --=20 2.12.2 --squs5vmxtyzeng4f--