From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 12 Sep 2024 14:14:40 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1soiif-003mpr-0E for lore@lore.pengutronix.de; Thu, 12 Sep 2024 14:14:40 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1soiie-0005M1-2d; Thu, 12 Sep 2024 14:14:40 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1soifp-0001Zx-2t; Thu, 12 Sep 2024 14:11:45 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1soifo-007NQw-Lp; Thu, 12 Sep 2024 14:11:44 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1soifo-00BGiq-22; Thu, 12 Sep 2024 14:11:44 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 12 Sep 2024 14:11:44 +0200 Message-Id: <20240912121144.2685881-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240812135808.1097973-2-ahelmcke@ela-soft.com> References: <20240812135808.1097973-2-ahelmcke@ela-soft.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] nano: version bump 2.9.2 -> 8.0 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Andreas Helmcke Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 69a13bb48a93b5b59f8670156e9fce33cacdb46f. Michael [sent from post-receive hook] On Thu, 12 Sep 2024 14:11:44 +0200, Andreas Helmcke wrote: > Since it is a huge step lots of changes and fixes. > > link: https://www.nano-editor.org/news.php > > Added an option to enable built-in help texts. > > Signed-off-by: Andreas Helmcke > Message-Id: <20240812135808.1097973-2-ahelmcke@ela-soft.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/nano.in b/rules/nano.in > index d3f4e06f411b..74aacf854e15 100644 > --- a/rules/nano.in > +++ b/rules/nano.in > @@ -1,11 +1,19 @@ > ## SECTION=editors > -config NANO > +menuconfig NANO > tristate > select NCURSES > - prompt "nano" > + prompt "nano " > help > nano is a small, free and friendly editor which aims > to replace Pico. Rather than just copying Pico's look > and feel, nano also implements some missing (or disabled > by default) features in Pico, such as "search and > replace" and "go to line number" > + > +if NANO > + > +config NANO_HELPTEXT > + bool > + prompt "enable built-in help texts" > + > +endif > diff --git a/rules/nano.make b/rules/nano.make > index bf113d2f0870..1bce7dbd18c8 100644 > --- a/rules/nano.make > +++ b/rules/nano.make > @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_NANO) += nano > # > # Paths and names > # > -NANO_VERSION := 2.9.2 > -NANO_MD5 := 40ac792d28641969ce0be0a4a37df6a0 > +NANO_VERSION := 8.0 > +NANO_MD5 := e8561ba24e7495b766b1d815cd024e77 > NANO := nano-$(NANO_VERSION) > NANO_SUFFIX := tar.gz > NANO_URL := https://www.nano-editor.org/dist/v$(basename $(NANO_VERSION))/$(NANO).$(NANO_SUFFIX) > @@ -38,19 +38,21 @@ NANO_CONF_ENV := \ > # > NANO_CONF_TOOL := autoconf > NANO_CONF_OPT := \ > + --$(call ptx/endis,PTXCONF_NANO_HELPTEXT)-help \ > $(CROSS_AUTOCONF_USR) \ > $(GLOBAL_LARGE_FILE_OPTION) \ > --enable-threads=posix \ > - --disable-rpath \ > --disable-nls \ > + --disable-rpath \ > --disable-browser \ > --enable-color \ > --enable-comment \ > --disable-extra \ > - --disable-help \ > + --disable-formatter \ > --enable-histories \ > --enable-justify \ > --disable-libmagic \ > + --disable-linter \ > --enable-linenumbers \ > --disable-mouse \ > --enable-multibuffer \ > @@ -60,14 +62,12 @@ NANO_CONF_OPT := \ > --enable-tabcomp \ > --disable-wordcomp \ > --enable-wrapping \ > - --disable-wrapping-as-root \ > --disable-debug \ > --disable-tiny \ > --disable-utf8 \ > --disable-altrcname \ > - --without-included-regex \ > - --without-slang \ > - --with-wordbounds > + --$(call ptx/endis, PTXDIST_Y2038)-year2038 \ > + --without-included-regex > > # ---------------------------------------------------------------------------- > # Target-Install