From 5c212b1a13162dd78e7e8df3ded9e5f1b297a443 Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Tue, 16 Apr 2019 18:19:00 +0300 Subject: [PATCH] nano: update to 4.1 * update nano to 4.1 * implement Makefile style changes proposed in #8483 Release notes at https://nano-editor.org/news.php 2019.04.15 - GNU nano 4.1 * By default, a newline character is again automatically added at the end of a buffer, to produce valid POSIX text files by default, but also to get back the easy adding of text at the bottom. * The now unneeded option --finalnewline (-f) has been removed. * Syntax files are read in alphabetical order when globbing, so that the precedence of syntaxes becomes predictable. * In the C syntax, preprocessor directives are highlighted differently. * M-S now toggles soft wrapping, and M-N toggles line numbers. * The jumpy-scrolling toggle has been removed. * The legacy keystrokes ^W^Y and ^W^V are recognized again. * Executing an external command is disallowed when in view mode. * Problems with resizing during external or speller commands were fixed. Tested with ipq806x R7800 Signed-off-by: Hannu Nyman --- utils/nano/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/utils/nano/Makefile b/utils/nano/Makefile index 181419b090..ccf3a9dfd7 100644 --- a/utils/nano/Makefile +++ b/utils/nano/Makefile @@ -8,14 +8,16 @@ include $(TOPDIR)/rules.mk PKG_NAME:=nano -PKG_VERSION:=4.0 +PKG_VERSION:=4.1 PKG_RELEASE:=1 -PKG_LICENSE:=GPL-3.0+ -PKG_LICENSE_FILES:=COPYING PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@GNU/nano -PKG_HASH:=1e2fcfea35784624a7d86785768b772d58bb3995d1aec9176a27a113b1e9bac3 +PKG_HASH:=86bde596a038d6fde619b49d785c0ebf0b3eaa7001a39dbe9316bd5392d221d0 + +PKG_LICENSE:=GPL-3.0+ +PKG_LICENSE_FILES:=COPYING +PKG_MAINTAINER:=Jonathan Bennett , Hannu Nyman PKG_INSTALL:=1 PKG_BUILD_PARALLEL:=1 @@ -27,9 +29,7 @@ define Package/nano SECTION:=utils CATEGORY:=Utilities TITLE:=An enhanced clone of the Pico text editor - URL:=http://www.nano-editor.org/ - MAINTAINER:=Jonathan Bennett , \ - Hannu Nyman + URL:=https://www.nano-editor.org/ DEPENDS:=+libncurses endef -- 2.30.2