public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] nano: Update to 2.5.3
@ 2016-03-24 19:29 Matthias Fischer
  2016-03-29 12:16 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Matthias Fischer @ 2016-03-24 19:29 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1600 bytes --]

Contains several bugfixes and improvements, for details see:
http://www.nano-editor.org/dist/v2.5/ChangeLog

Signed-off-by: Matthias Fischer <matthias.fischer(a)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
-- 
2.7.4


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] nano: Update to 2.5.3
  2016-03-24 19:29 [PATCH] nano: Update to 2.5.3 Matthias Fischer
@ 2016-03-29 12:16 ` Michael Tremer
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2016-03-29 12:16 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1809 bytes --]

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(a)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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-03-29 12:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-24 19:29 [PATCH] nano: Update to 2.5.3 Matthias Fischer
2016-03-29 12:16 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox