mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] nano: version bump 2.9.2 -> 8.0
@ 2024-07-16 14:28 Andreas Helmcke
  2024-08-02  7:55 ` Michael Olbrich
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Helmcke @ 2024-07-16 14:28 UTC (permalink / raw)
  To: ptxdist

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 <ahelmcke@ela-soft.com>
---
 rules/nano.in   | 12 ++++++++++--
 rules/nano.make | 16 ++++++++--------
 2 files changed, 18 insertions(+), 10 deletions(-)

diff --git a/rules/nano.in b/rules/nano.in
index d3f4e06f4..74aacf854 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 bf113d2f0..2e3b8bff7 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
+	--enable-year2038 \
+	--without-included-regex
 
 # ----------------------------------------------------------------------------
 # Target-Install
-- 
2.43.0




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

* Re: [ptxdist] [PATCH] nano: version bump 2.9.2 -> 8.0
  2024-07-16 14:28 [ptxdist] [PATCH] nano: version bump 2.9.2 -> 8.0 Andreas Helmcke
@ 2024-08-02  7:55 ` Michael Olbrich
  2024-08-12 13:58   ` [ptxdist] [PATCH v2] " Andreas Helmcke
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Olbrich @ 2024-08-02  7:55 UTC (permalink / raw)
  To: Andreas Helmcke; +Cc: ptxdist

On Tue, Jul 16, 2024 at 04:28:47PM +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 <ahelmcke@ela-soft.com>
> ---
>  rules/nano.in   | 12 ++++++++++--
>  rules/nano.make | 16 ++++++++--------
>  2 files changed, 18 insertions(+), 10 deletions(-)
> 
> diff --git a/rules/nano.in b/rules/nano.in
> index d3f4e06f4..74aacf854 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 bf113d2f0..2e3b8bff7 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
> +	--enable-year2038 \

Conditional.

Michael

> +	--without-included-regex
>  
>  # ----------------------------------------------------------------------------
>  # Target-Install
> -- 
> 2.43.0
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



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

* [ptxdist] [PATCH v2] nano: version bump 2.9.2 -> 8.0
  2024-08-02  7:55 ` Michael Olbrich
@ 2024-08-12 13:58   ` Andreas Helmcke
  2024-09-12 12:11     ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Helmcke @ 2024-08-12 13:58 UTC (permalink / raw)
  To: ptxdist; +Cc: Michael Olbrich

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 <ahelmcke@ela-soft.com>
---
 v2: Make option for the year 2038 dependent on PTXDIST_Y2038

 rules/nano.in   | 12 ++++++++++--
 rules/nano.make | 16 ++++++++--------
 2 files changed, 18 insertions(+), 10 deletions(-)

diff --git a/rules/nano.in b/rules/nano.in
index d3f4e06f4..74aacf854 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 bf113d2f0..1bce7dbd1 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
-- 
2.43.0




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

* Re: [ptxdist] [APPLIED] nano: version bump 2.9.2 -> 8.0
  2024-08-12 13:58   ` [ptxdist] [PATCH v2] " Andreas Helmcke
@ 2024-09-12 12:11     ` Michael Olbrich
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2024-09-12 12:11 UTC (permalink / raw)
  To: ptxdist; +Cc: Andreas Helmcke

Thanks, applied as 69a13bb48a93b5b59f8670156e9fce33cacdb46f.

Michael

[sent from post-receive hook]

On Thu, 12 Sep 2024 14:11:44 +0200, Andreas Helmcke <ahelmcke@ela-soft.com> 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 <ahelmcke@ela-soft.com>
> Message-Id: <20240812135808.1097973-2-ahelmcke@ela-soft.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> 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



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

end of thread, other threads:[~2024-09-12 12:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-16 14:28 [ptxdist] [PATCH] nano: version bump 2.9.2 -> 8.0 Andreas Helmcke
2024-08-02  7:55 ` Michael Olbrich
2024-08-12 13:58   ` [ptxdist] [PATCH v2] " Andreas Helmcke
2024-09-12 12:11     ` [ptxdist] [APPLIED] " Michael Olbrich

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