nano: Update to 2.5.3
Message ID | 1458847748-13229-1-git-send-email-matthias.fischer@ipfire.org |
---|---|
State | Accepted |
Commit | dcea7ef891e037c916d57bb33b34ea4f12ce7782 |
Headers |
Return-Path: <development-bounces@lists.ipfire.org> Received: from mail01.ipfire.org (hedwig.ipfire.org [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id BADFC60DAD for <patchwork@ipfire.org>; Thu, 24 Mar 2016 20:29:17 +0100 (CET) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id D6235CC7; Thu, 24 Mar 2016 20:29:16 +0100 (CET) Received: from Devel.localdomain (p57905FBF.dip0.t-ipconnect.de [87.144.95.191]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id F2D33259 for <development@lists.ipfire.org>; Thu, 24 Mar 2016 20:29:13 +0100 (CET) From: Matthias Fischer <matthias.fischer@ipfire.org> To: development@lists.ipfire.org Subject: [PATCH] nano: Update to 2.5.3 Date: Thu, 24 Mar 2016 20:29:08 +0100 Message-Id: <1458847748-13229-1-git-send-email-matthias.fischer@ipfire.org> X-Mailer: git-send-email 2.7.4 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: IPFire development talk <development.lists.ipfire.org> List-Unsubscribe: <http://lists.ipfire.org/mailman/options/development>, <mailto:development-request@lists.ipfire.org?subject=unsubscribe> List-Archive: <http://lists.ipfire.org/pipermail/development/> List-Post: <mailto:development@lists.ipfire.org> List-Help: <mailto:development-request@lists.ipfire.org?subject=help> List-Subscribe: <http://lists.ipfire.org/mailman/listinfo/development>, <mailto:development-request@lists.ipfire.org?subject=subscribe> Errors-To: development-bounces@lists.ipfire.org Sender: "Development" <development-bounces@lists.ipfire.org> |
Message
Matthias Fischer
March 25, 2016, 6:29 a.m. UTC
Contains several bugfixes and improvements, for details see:
http://www.nano-editor.org/dist/v2.5/ChangeLog
Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
---
lfs/nano | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
Comments
Merged. Thanks. On Thu, 2016-03-24 at 20:29 +0100, Matthias Fischer wrote: > Contains several bugfixes and improvements, for details see: > http://www.nano-editor.org/dist/v2.5/ChangeLog > > Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org> > --- > lfs/nano | 16 +++++++++++----- > 1 file changed, 11 insertions(+), 5 deletions(-) > > diff --git a/lfs/nano b/lfs/nano > index 0d92c6b..70991d2 100644 > --- a/lfs/nano > +++ b/lfs/nano > @@ -24,7 +24,7 @@ > > include Config > > -VER = 2.5.1 > +VER = 2.5.3 > > THISAPP = nano-$(VER) > DL_FILE = $(THISAPP).tar.gz > @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) > DIR_APP = $(DIR_SRC)/$(THISAPP) > TARGET = $(DIR_INFO)/$(THISAPP) > PROG = nano > -PAK_VER = 8 > +PAK_VER = 9 > > DEPS = "" > > @@ -44,7 +44,7 @@ objects = $(DL_FILE) > > $(DL_FILE) = $(DL_FROM)/$(DL_FILE) > > -$(DL_FILE)_MD5 = f25c7da9813ae5f1df7e5dd1072de4ce > +$(DL_FILE)_MD5 = a04d77611422ab4b6a7b489650c7a793 > > install : $(TARGET) > > @@ -77,8 +77,14 @@ $(subst %,%_MD5,$(objects)) : > $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) > @$(PREBUILD) > @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) > - cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc/nano \ > - --enable-color --enable-multibuffer --enable-nanorc --disable-nls > + cd $(DIR_APP) && ./configure \ > + --prefix=/usr \ > + --sysconfdir=/etc/nano \ > + --enable-color \ > + --enable-multibuffer \ > + --enable-nanorc \ > + --disable-nls > + > cd $(DIR_APP) && make $(MAKETUNING) > cd $(DIR_APP) && make install > cd $(DIR_APP) && install -v -m644 -D doc/nanorc.sample > /etc/nano/nanorc.sample