* [ptxdist] [PATCH] less: version bump 590 -> 661
@ 2024-07-16 14:16 Andreas Helmcke
2024-08-02 7:53 ` Michael Olbrich
0 siblings, 1 reply; 6+ messages in thread
From: Andreas Helmcke @ 2024-07-16 14:16 UTC (permalink / raw)
To: ptxdist
Various bug fixes and improvements.
Copyright only changed year.
link: https://greenwoodsoftware.com/less/news.661.html
link: https://greenwoodsoftware.com/less/news.643.html
link: https://greenwoodsoftware.com/less/news.633.html
link: https://greenwoodsoftware.com/less/news.608.html
link: https://greenwoodsoftware.com/less/news.590.html
remark: do not use option --with-secure since less won't build with secure mode enabled
even worse, even using --without-secure will set secure mode
Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
---
rules/less.make | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/rules/less.make b/rules/less.make
index dbbf05b16..f454c0a6e 100644
--- a/rules/less.make
+++ b/rules/less.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LESS) += less
#
# Paths and names
#
-LESS_VERSION := 590
-LESS_MD5 := f029087448357812fba450091a1172ab
+LESS_VERSION := 661
+LESS_MD5 := 44f54b6313c5d71fa1ac224d8d84766a
LESS := less-$(LESS_VERSION)
LESS_SUFFIX := tar.gz
LESS_URL := https://greenwoodsoftware.com/less/$(LESS).$(LESS_SUFFIX)
@@ -47,7 +47,9 @@ LESS_CONF_ENV := \
LESS_CONF_TOOL := autoconf
LESS_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
- $(GLOBAL_LARGE_FILE_OPTION)
+ $(GLOBAL_LARGE_FILE_OPTION) \
+ --enable-year2038
+
# ----------------------------------------------------------------------------
# Target-Install
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [PATCH] less: version bump 590 -> 661
2024-07-16 14:16 [ptxdist] [PATCH] less: version bump 590 -> 661 Andreas Helmcke
@ 2024-08-02 7:53 ` Michael Olbrich
2024-08-12 13:54 ` [ptxdist] [PATCH v2] " Andreas Helmcke
0 siblings, 1 reply; 6+ messages in thread
From: Michael Olbrich @ 2024-08-02 7:53 UTC (permalink / raw)
To: Andreas Helmcke; +Cc: ptxdist
On Tue, Jul 16, 2024 at 04:16:09PM +0200, Andreas Helmcke wrote:
> Various bug fixes and improvements.
> Copyright only changed year.
>
> link: https://greenwoodsoftware.com/less/news.661.html
> link: https://greenwoodsoftware.com/less/news.643.html
> link: https://greenwoodsoftware.com/less/news.633.html
> link: https://greenwoodsoftware.com/less/news.608.html
> link: https://greenwoodsoftware.com/less/news.590.html
>
> remark: do not use option --with-secure since less won't build with secure mode enabled
> even worse, even using --without-secure will set secure mode
>
> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
> ---
> rules/less.make | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/rules/less.make b/rules/less.make
> index dbbf05b16..f454c0a6e 100644
> --- a/rules/less.make
> +++ b/rules/less.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LESS) += less
> #
> # Paths and names
> #
> -LESS_VERSION := 590
> -LESS_MD5 := f029087448357812fba450091a1172ab
> +LESS_VERSION := 661
> +LESS_MD5 := 44f54b6313c5d71fa1ac224d8d84766a
> LESS := less-$(LESS_VERSION)
> LESS_SUFFIX := tar.gz
> LESS_URL := https://greenwoodsoftware.com/less/$(LESS).$(LESS_SUFFIX)
> @@ -47,7 +47,9 @@ LESS_CONF_ENV := \
> LESS_CONF_TOOL := autoconf
> LESS_CONF_OPT := \
> $(CROSS_AUTOCONF_USR) \
> - $(GLOBAL_LARGE_FILE_OPTION)
> + $(GLOBAL_LARGE_FILE_OPTION) \
> + --enable-year2038
Conditional, see my mail for grep.
Michael
> +
>
> # ----------------------------------------------------------------------------
> # 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] 6+ messages in thread
* [ptxdist] [PATCH v2] less: version bump 590 -> 661
2024-08-02 7:53 ` Michael Olbrich
@ 2024-08-12 13:54 ` Andreas Helmcke
2024-09-06 17:21 ` Michael Olbrich
0 siblings, 1 reply; 6+ messages in thread
From: Andreas Helmcke @ 2024-08-12 13:54 UTC (permalink / raw)
To: ptxdist; +Cc: Michael Olbrich
Various bug fixes and improvements.
Copyright only changed year.
link: https://greenwoodsoftware.com/less/news.661.html
link: https://greenwoodsoftware.com/less/news.643.html
link: https://greenwoodsoftware.com/less/news.633.html
link: https://greenwoodsoftware.com/less/news.608.html
link: https://greenwoodsoftware.com/less/news.590.html
remark: do not use option --with-secure since less won't build with secure mode enabled
even worse, even using --without-secure will set secure mode
Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
---
v2: Make option for the year 2038 dependent on PTXDIST_Y2038
rules/less.make | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/rules/less.make b/rules/less.make
index dbbf05b16..9757227da 100644
--- a/rules/less.make
+++ b/rules/less.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LESS) += less
#
# Paths and names
#
-LESS_VERSION := 590
-LESS_MD5 := f029087448357812fba450091a1172ab
+LESS_VERSION := 661
+LESS_MD5 := 44f54b6313c5d71fa1ac224d8d84766a
LESS := less-$(LESS_VERSION)
LESS_SUFFIX := tar.gz
LESS_URL := https://greenwoodsoftware.com/less/$(LESS).$(LESS_SUFFIX)
@@ -47,7 +47,9 @@ LESS_CONF_ENV := \
LESS_CONF_TOOL := autoconf
LESS_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
- $(GLOBAL_LARGE_FILE_OPTION)
+ $(GLOBAL_LARGE_FILE_OPTION) \
+ --$(call ptx/endis, PTXDIST_Y2038)-year2038 \
+
# ----------------------------------------------------------------------------
# Target-Install
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [PATCH v2] less: version bump 590 -> 661
2024-08-12 13:54 ` [ptxdist] [PATCH v2] " Andreas Helmcke
@ 2024-09-06 17:21 ` Michael Olbrich
2024-09-09 8:51 ` [ptxdist] [PATCH v3] " Andreas Helmcke
0 siblings, 1 reply; 6+ messages in thread
From: Michael Olbrich @ 2024-09-06 17:21 UTC (permalink / raw)
To: Andreas Helmcke; +Cc: ptxdist
On Mon, Aug 12, 2024 at 03:54:41PM +0200, Andreas Helmcke wrote:
> Various bug fixes and improvements.
> Copyright only changed year.
>
> link: https://greenwoodsoftware.com/less/news.661.html
> link: https://greenwoodsoftware.com/less/news.643.html
> link: https://greenwoodsoftware.com/less/news.633.html
> link: https://greenwoodsoftware.com/less/news.608.html
> link: https://greenwoodsoftware.com/less/news.590.html
>
> remark: do not use option --with-secure since less won't build with secure mode enabled
> even worse, even using --without-secure will set secure mode
The hash for the license file change. Please make the appropriate changes
and add a comment about what changed to the commit message.
Michael
> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
> ---
> v2: Make option for the year 2038 dependent on PTXDIST_Y2038
>
> rules/less.make | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/rules/less.make b/rules/less.make
> index dbbf05b16..9757227da 100644
> --- a/rules/less.make
> +++ b/rules/less.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LESS) += less
> #
> # Paths and names
> #
> -LESS_VERSION := 590
> -LESS_MD5 := f029087448357812fba450091a1172ab
> +LESS_VERSION := 661
> +LESS_MD5 := 44f54b6313c5d71fa1ac224d8d84766a
> LESS := less-$(LESS_VERSION)
> LESS_SUFFIX := tar.gz
> LESS_URL := https://greenwoodsoftware.com/less/$(LESS).$(LESS_SUFFIX)
> @@ -47,7 +47,9 @@ LESS_CONF_ENV := \
> LESS_CONF_TOOL := autoconf
> LESS_CONF_OPT := \
> $(CROSS_AUTOCONF_USR) \
> - $(GLOBAL_LARGE_FILE_OPTION)
> + $(GLOBAL_LARGE_FILE_OPTION) \
> + --$(call ptx/endis, PTXDIST_Y2038)-year2038 \
> +
>
> # ----------------------------------------------------------------------------
> # 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] 6+ messages in thread
* [ptxdist] [PATCH v3] less: version bump 590 -> 661
2024-09-06 17:21 ` Michael Olbrich
@ 2024-09-09 8:51 ` Andreas Helmcke
2024-09-12 12:12 ` [ptxdist] [APPLIED] " Michael Olbrich
0 siblings, 1 reply; 6+ messages in thread
From: Andreas Helmcke @ 2024-09-09 8:51 UTC (permalink / raw)
To: ptxdist
Various bug fixes and improvements.
Copyright only changed year.
link: https://greenwoodsoftware.com/less/news.661.html
link: https://greenwoodsoftware.com/less/news.643.html
link: https://greenwoodsoftware.com/less/news.633.html
link: https://greenwoodsoftware.com/less/news.608.html
link: https://greenwoodsoftware.com/less/news.590.html
remark: do not use option --with-secure since less won't build with secure mode enabled
even worse, even using --without-secure will set secure mode
Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
---
V3: fixed license files hashes
v2: Make option for the year 2038 dependent on PTXDIST_Y2038
rules/less.make | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/rules/less.make b/rules/less.make
index dbbf05b16..d4a112b55 100644
--- a/rules/less.make
+++ b/rules/less.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LESS) += less
#
# Paths and names
#
-LESS_VERSION := 590
-LESS_MD5 := f029087448357812fba450091a1172ab
+LESS_VERSION := 661
+LESS_MD5 := 44f54b6313c5d71fa1ac224d8d84766a
LESS := less-$(LESS_VERSION)
LESS_SUFFIX := tar.gz
LESS_URL := https://greenwoodsoftware.com/less/$(LESS).$(LESS_SUFFIX)
@@ -24,8 +24,8 @@ LESS_DIR := $(BUILDDIR)/$(LESS)
LESS_LICENSE := GPL-3.0-or-later OR BSD-2-Clause
LESS_LICENSE_FILES := \
file://README;startline=4;endline=13;md5=be18c1acf45c653f511cb4fd205021d4 \
- file://LICENSE;md5=ba01d0cab7f62f7f2204c7780ff6a87d \
- file://COPYING;md5=d32239bcb673463ab874e80d47fae504
+ file://LICENSE;md5=ea7ea443692720f3015859945c0fb65d \
+ file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464
# ----------------------------------------------------------------------------
# Prepare
@@ -47,7 +47,9 @@ LESS_CONF_ENV := \
LESS_CONF_TOOL := autoconf
LESS_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
- $(GLOBAL_LARGE_FILE_OPTION)
+ $(GLOBAL_LARGE_FILE_OPTION) \
+ --$(call ptx/endis, PTXDIST_Y2038)-year2038 \
+
# ----------------------------------------------------------------------------
# Target-Install
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [APPLIED] less: version bump 590 -> 661
2024-09-09 8:51 ` [ptxdist] [PATCH v3] " Andreas Helmcke
@ 2024-09-12 12:12 ` Michael Olbrich
0 siblings, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2024-09-12 12:12 UTC (permalink / raw)
To: ptxdist; +Cc: Andreas Helmcke
Thanks, applied as e16999af94770b6d8040ab3146a0d91a05c98b47.
Michael
[sent from post-receive hook]
On Thu, 12 Sep 2024 14:12:22 +0200, Andreas Helmcke <ahelmcke@ela-soft.com> wrote:
> Various bug fixes and improvements.
> Copyright only changed year.
>
> link: https://greenwoodsoftware.com/less/news.661.html
> link: https://greenwoodsoftware.com/less/news.643.html
> link: https://greenwoodsoftware.com/less/news.633.html
> link: https://greenwoodsoftware.com/less/news.608.html
> link: https://greenwoodsoftware.com/less/news.590.html
>
> remark: do not use option --with-secure since less won't build with secure mode enabled
> even worse, even using --without-secure will set secure mode
>
> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
> Message-Id: <20240909085117.27988-2-ahelmcke@ela-soft.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/less.make b/rules/less.make
> index dbbf05b16fd2..d4a112b55a04 100644
> --- a/rules/less.make
> +++ b/rules/less.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LESS) += less
> #
> # Paths and names
> #
> -LESS_VERSION := 590
> -LESS_MD5 := f029087448357812fba450091a1172ab
> +LESS_VERSION := 661
> +LESS_MD5 := 44f54b6313c5d71fa1ac224d8d84766a
> LESS := less-$(LESS_VERSION)
> LESS_SUFFIX := tar.gz
> LESS_URL := https://greenwoodsoftware.com/less/$(LESS).$(LESS_SUFFIX)
> @@ -24,8 +24,8 @@ LESS_DIR := $(BUILDDIR)/$(LESS)
> LESS_LICENSE := GPL-3.0-or-later OR BSD-2-Clause
> LESS_LICENSE_FILES := \
> file://README;startline=4;endline=13;md5=be18c1acf45c653f511cb4fd205021d4 \
> - file://LICENSE;md5=ba01d0cab7f62f7f2204c7780ff6a87d \
> - file://COPYING;md5=d32239bcb673463ab874e80d47fae504
> + file://LICENSE;md5=ea7ea443692720f3015859945c0fb65d \
> + file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464
>
> # ----------------------------------------------------------------------------
> # Prepare
> @@ -47,7 +47,9 @@ LESS_CONF_ENV := \
> LESS_CONF_TOOL := autoconf
> LESS_CONF_OPT := \
> $(CROSS_AUTOCONF_USR) \
> - $(GLOBAL_LARGE_FILE_OPTION)
> + $(GLOBAL_LARGE_FILE_OPTION) \
> + --$(call ptx/endis, PTXDIST_Y2038)-year2038 \
> +
>
> # ----------------------------------------------------------------------------
> # Target-Install
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-09-12 12:22 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-16 14:16 [ptxdist] [PATCH] less: version bump 590 -> 661 Andreas Helmcke
2024-08-02 7:53 ` Michael Olbrich
2024-08-12 13:54 ` [ptxdist] [PATCH v2] " Andreas Helmcke
2024-09-06 17:21 ` Michael Olbrich
2024-09-09 8:51 ` [ptxdist] [PATCH v3] " Andreas Helmcke
2024-09-12 12:12 ` [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