mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] jq: Version bump, 1.6 -> 1.7
@ 2023-10-18 15:41 Andreas Helmcke
  2023-10-21  8:44 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Andreas Helmcke @ 2023-10-18 15:41 UTC (permalink / raw)
  To: ptxdist; +Cc: Andreas Helmcke

* massive speed improvement (1.6 was extremely slow compared to 1.5)
* a lot more bugfixes
* many enhancements

* Change in license: ICU license used by C library "decNumber" added

Link: https://github.com/jqlang/jq/releases/tag/jq-1.7
Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
---
 rules/jq.make | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/rules/jq.make b/rules/jq.make
index 6db0cc9cb..d873663c9 100644
--- a/rules/jq.make
+++ b/rules/jq.make
@@ -14,15 +14,15 @@ PACKAGES-$(PTXCONF_JQ) += jq
 #
 # Paths and names
 #
-JQ_VERSION	:= 1.6
-JQ_MD5		:= e68fbd6a992e36f1ac48c99bbf825d6b
+JQ_VERSION	:= 1.7
+JQ_MD5		:= 4662fd45f0b5622382fc85c1249739d5
 JQ		:= jq-$(JQ_VERSION)
 JQ_SUFFIX	:= tar.gz
 JQ_URL		:= https://github.com/stedolan/jq/releases/download/$(JQ)/$(JQ).$(JQ_SUFFIX)
 JQ_SOURCE	:= $(SRCDIR)/$(JQ).$(JQ_SUFFIX)
 JQ_DIR		:= $(BUILDDIR)/$(JQ)
-JQ_LICENSE	:= MIT AND CC-BY-3.0
-JQ_LICENSE_FILES := file://COPYING;md5=15d03e360fa7399f76d5a4359fc72cbf
+JQ_LICENSE	:= MIT AND CC-BY-3.0 AND ICU
+JQ_LICENSE_FILES := file://COPYING;md5=488f4e0b04c0456337fb70d1ac1758ba
 
 # ----------------------------------------------------------------------------
 # Prepare
@@ -34,14 +34,15 @@ JQ_LICENSE_FILES := file://COPYING;md5=15d03e360fa7399f76d5a4359fc72cbf
 JQ_CONF_TOOL	:= autoconf
 JQ_CONF_OPT	:= \
 	$(CROSS_AUTOCONF_USR) \
-	--disable-maintainer-mode \
+	--disable-largefile \
 	--disable-valgrind \
+	--disable-asan \
+	--disable-ubsan \
 	--disable-gcov \
 	--disable-docs \
 	--disable-error-injection \
 	--disable-all-static \
-	--enable-pthread-tls \
-	--without-oniguruma
+	--disable-decnum
 
 # ----------------------------------------------------------------------------
 # Target-Install
@@ -57,6 +58,7 @@ $(STATEDIR)/jq.targetinstall:
 	@$(call install_fixup, jq,DESCRIPTION,missing)
 
 	@$(call install_lib, jq, 0, 0, 0644, libjq)
+	@$(call install_lib, jq, 0, 0, 0644, libonig)
 	@$(call install_copy, jq, 0, 0, 0755, -, /usr/bin/jq)
 
 	@$(call install_finish, jq)
-- 
2.39.2




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

* Re: [ptxdist] [APPLIED] jq: Version bump, 1.6 -> 1.7
  2023-10-18 15:41 [ptxdist] [PATCH] jq: Version bump, 1.6 -> 1.7 Andreas Helmcke
@ 2023-10-21  8:44 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2023-10-21  8:44 UTC (permalink / raw)
  To: ptxdist; +Cc: Andreas Helmcke

Thanks, applied as 583aba9ac10aa593ace03b66bfd43f7323e23c76.

Michael

[sent from post-receive hook]

On Sat, 21 Oct 2023 10:44:06 +0200, Andreas Helmcke <ahelmcke@ela-soft.com> wrote:
> * massive speed improvement (1.6 was extremely slow compared to 1.5)
> * a lot more bugfixes
> * many enhancements
> 
> * Change in license: ICU license used by C library "decNumber" added
> 
> Link: https://github.com/jqlang/jq/releases/tag/jq-1.7
> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
> Message-Id: <20231018154139.194662-1-ahelmcke@ela-soft.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/jq.make b/rules/jq.make
> index 6db0cc9cbf7c..d873663c9b4d 100644
> --- a/rules/jq.make
> +++ b/rules/jq.make
> @@ -14,15 +14,15 @@ PACKAGES-$(PTXCONF_JQ) += jq
>  #
>  # Paths and names
>  #
> -JQ_VERSION	:= 1.6
> -JQ_MD5		:= e68fbd6a992e36f1ac48c99bbf825d6b
> +JQ_VERSION	:= 1.7
> +JQ_MD5		:= 4662fd45f0b5622382fc85c1249739d5
>  JQ		:= jq-$(JQ_VERSION)
>  JQ_SUFFIX	:= tar.gz
>  JQ_URL		:= https://github.com/stedolan/jq/releases/download/$(JQ)/$(JQ).$(JQ_SUFFIX)
>  JQ_SOURCE	:= $(SRCDIR)/$(JQ).$(JQ_SUFFIX)
>  JQ_DIR		:= $(BUILDDIR)/$(JQ)
> -JQ_LICENSE	:= MIT AND CC-BY-3.0
> -JQ_LICENSE_FILES := file://COPYING;md5=15d03e360fa7399f76d5a4359fc72cbf
> +JQ_LICENSE	:= MIT AND CC-BY-3.0 AND ICU
> +JQ_LICENSE_FILES := file://COPYING;md5=488f4e0b04c0456337fb70d1ac1758ba
>  
>  # ----------------------------------------------------------------------------
>  # Prepare
> @@ -34,14 +34,15 @@ JQ_LICENSE_FILES := file://COPYING;md5=15d03e360fa7399f76d5a4359fc72cbf
>  JQ_CONF_TOOL	:= autoconf
>  JQ_CONF_OPT	:= \
>  	$(CROSS_AUTOCONF_USR) \
> -	--disable-maintainer-mode \
> +	--disable-largefile \
>  	--disable-valgrind \
> +	--disable-asan \
> +	--disable-ubsan \
>  	--disable-gcov \
>  	--disable-docs \
>  	--disable-error-injection \
>  	--disable-all-static \
> -	--enable-pthread-tls \
> -	--without-oniguruma
> +	--disable-decnum
>  
>  # ----------------------------------------------------------------------------
>  # Target-Install
> @@ -57,6 +58,7 @@ $(STATEDIR)/jq.targetinstall:
>  	@$(call install_fixup, jq,DESCRIPTION,missing)
>  
>  	@$(call install_lib, jq, 0, 0, 0644, libjq)
> +	@$(call install_lib, jq, 0, 0, 0644, libonig)
>  	@$(call install_copy, jq, 0, 0, 0755, -, /usr/bin/jq)
>  
>  	@$(call install_finish, jq)



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

end of thread, other threads:[~2023-10-21  8:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-18 15:41 [ptxdist] [PATCH] jq: Version bump, 1.6 -> 1.7 Andreas Helmcke
2023-10-21  8:44 ` [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