* [ptxdist] [PATCH 0/2] jq: version bump and preparation for it
@ 2026-06-22 9:12 Alexander Dahl via ptxdist
2026-06-22 9:12 ` [ptxdist] [PATCH 1/2] jq: Use global largefile option Alexander Dahl via ptxdist
2026-06-22 9:12 ` [ptxdist] [PATCH 2/2] jq: version bump 1.8.1 -> 1.8.2 Alexander Dahl via ptxdist
0 siblings, 2 replies; 5+ messages in thread
From: Alexander Dahl via ptxdist @ 2026-06-22 9:12 UTC (permalink / raw)
To: ptxdist; +Cc: Alexander Dahl
Hello,
when upgrading jq to new 1.8.2 release, I noticed build fails on armv5te
target, probably because of that y2038 fix. So this is a small series
with a preparation patch before the version bump.
Greets
Alex
Alexander Dahl (2):
jq: Use global largefile option
jq: version bump 1.8.1 -> 1.8.2
rules/jq.make | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
base-commit: 3d185e7c01807e7a2f58a89fe811ed572d267099
--
2.47.3
^ permalink raw reply [flat|nested] 5+ messages in thread
* [ptxdist] [PATCH 1/2] jq: Use global largefile option
2026-06-22 9:12 [ptxdist] [PATCH 0/2] jq: version bump and preparation for it Alexander Dahl via ptxdist
@ 2026-06-22 9:12 ` Alexander Dahl via ptxdist
2026-06-25 19:23 ` [ptxdist] [APPLIED] " Michael Olbrich
2026-06-22 9:12 ` [ptxdist] [PATCH 2/2] jq: version bump 1.8.1 -> 1.8.2 Alexander Dahl via ptxdist
1 sibling, 1 reply; 5+ messages in thread
From: Alexander Dahl via ptxdist @ 2026-06-22 9:12 UTC (permalink / raw)
To: ptxdist; +Cc: Alexander Dahl
With --disable-largefile build will fail on 32-bit armv5te after version
bump to 1.8.2. This is related to a recent y2038 fix for 32bit systems.
Link: https://github.com/jqlang/jq/pull/3407
Fixes: 583aba9ac10a ("jq: Version bump, 1.6 -> 1.7")
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
rules/jq.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/jq.make b/rules/jq.make
index 7f6f6ebd6..e7677052f 100644
--- a/rules/jq.make
+++ b/rules/jq.make
@@ -34,7 +34,7 @@ JQ_LICENSE_FILES := file://COPYING;md5=cf7fcb0a1def4a7ad62c028f7d0dca47
JQ_CONF_TOOL := autoconf
JQ_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
- --disable-largefile \
+ $(GLOBAL_LARGE_FILE_OPTION) \
--disable-valgrind \
--disable-asan \
--disable-ubsan \
--
2.47.3
^ permalink raw reply [flat|nested] 5+ messages in thread
* [ptxdist] [PATCH 2/2] jq: version bump 1.8.1 -> 1.8.2
2026-06-22 9:12 [ptxdist] [PATCH 0/2] jq: version bump and preparation for it Alexander Dahl via ptxdist
2026-06-22 9:12 ` [ptxdist] [PATCH 1/2] jq: Use global largefile option Alexander Dahl via ptxdist
@ 2026-06-22 9:12 ` Alexander Dahl via ptxdist
2026-06-25 19:23 ` [ptxdist] [APPLIED] " Michael Olbrich
1 sibling, 1 reply; 5+ messages in thread
From: Alexander Dahl via ptxdist @ 2026-06-22 9:12 UTC (permalink / raw)
To: ptxdist; +Cc: Alexander Dahl
Quote from the release page: "This is a patch release with security fixes
and bug fixes since 1.8.1, along with new builds for Windows arm64 and
Docker arm/v7."
Link: https://github.com/jqlang/jq/releases/tag/jq-1.8.2
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
rules/jq.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/jq.make b/rules/jq.make
index e7677052f..5cadc03a9 100644
--- a/rules/jq.make
+++ b/rules/jq.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_JQ) += jq
#
# Paths and names
#
-JQ_VERSION := 1.8.1
-JQ_SHA256 := 2be64e7129cecb11d5906290eba10af694fb9e3e7f9fc208a311dc33ca837eb0
+JQ_VERSION := 1.8.2
+JQ_SHA256 := 71b8d6e8f5fe81f6c6d0d110e3892251f6ce76ed095abd315e26e6e1193af3af
JQ := jq-$(JQ_VERSION)
JQ_SUFFIX := tar.gz
JQ_URL := https://github.com/jqlang/jq/releases/download/$(JQ)/$(JQ).$(JQ_SUFFIX)
--
2.47.3
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [APPLIED] jq: Use global largefile option
2026-06-22 9:12 ` [ptxdist] [PATCH 1/2] jq: Use global largefile option Alexander Dahl via ptxdist
@ 2026-06-25 19:23 ` Michael Olbrich
0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2026-06-25 19:23 UTC (permalink / raw)
To: ptxdist; +Cc: Alexander Dahl
Thanks, applied as 4c311e9004c0f6ce2fc740319643b34ab4fb57f8.
Michael
[sent from post-receive hook]
On Thu, 25 Jun 2026 21:23:38 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> With --disable-largefile build will fail on 32-bit armv5te after version
> bump to 1.8.2. This is related to a recent y2038 fix for 32bit systems.
>
> Link: https://github.com/jqlang/jq/pull/3407
> Fixes: 583aba9ac10a ("jq: Version bump, 1.6 -> 1.7")
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20260622091213.1383976-2-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/jq.make b/rules/jq.make
> index 7f6f6ebd67b4..e7677052f4e6 100644
> --- a/rules/jq.make
> +++ b/rules/jq.make
> @@ -34,7 +34,7 @@ JQ_LICENSE_FILES := file://COPYING;md5=cf7fcb0a1def4a7ad62c028f7d0dca47
> JQ_CONF_TOOL := autoconf
> JQ_CONF_OPT := \
> $(CROSS_AUTOCONF_USR) \
> - --disable-largefile \
> + $(GLOBAL_LARGE_FILE_OPTION) \
> --disable-valgrind \
> --disable-asan \
> --disable-ubsan \
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [APPLIED] jq: version bump 1.8.1 -> 1.8.2
2026-06-22 9:12 ` [ptxdist] [PATCH 2/2] jq: version bump 1.8.1 -> 1.8.2 Alexander Dahl via ptxdist
@ 2026-06-25 19:23 ` Michael Olbrich
0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2026-06-25 19:23 UTC (permalink / raw)
To: ptxdist; +Cc: Alexander Dahl
Thanks, applied as 3319fa3fc15b59a7ad1f9718c2403cd9b088a7a8.
Michael
[sent from post-receive hook]
On Thu, 25 Jun 2026 21:23:38 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> Quote from the release page: "This is a patch release with security fixes
> and bug fixes since 1.8.1, along with new builds for Windows arm64 and
> Docker arm/v7."
>
> Link: https://github.com/jqlang/jq/releases/tag/jq-1.8.2
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20260622091213.1383976-3-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/jq.make b/rules/jq.make
> index e7677052f4e6..5cadc03a954d 100644
> --- a/rules/jq.make
> +++ b/rules/jq.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_JQ) += jq
> #
> # Paths and names
> #
> -JQ_VERSION := 1.8.1
> -JQ_SHA256 := 2be64e7129cecb11d5906290eba10af694fb9e3e7f9fc208a311dc33ca837eb0
> +JQ_VERSION := 1.8.2
> +JQ_SHA256 := 71b8d6e8f5fe81f6c6d0d110e3892251f6ce76ed095abd315e26e6e1193af3af
> JQ := jq-$(JQ_VERSION)
> JQ_SUFFIX := tar.gz
> JQ_URL := https://github.com/jqlang/jq/releases/download/$(JQ)/$(JQ).$(JQ_SUFFIX)
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-06-25 19:24 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-22 9:12 [ptxdist] [PATCH 0/2] jq: version bump and preparation for it Alexander Dahl via ptxdist
2026-06-22 9:12 ` [ptxdist] [PATCH 1/2] jq: Use global largefile option Alexander Dahl via ptxdist
2026-06-25 19:23 ` [ptxdist] [APPLIED] " Michael Olbrich
2026-06-22 9:12 ` [ptxdist] [PATCH 2/2] jq: version bump 1.8.1 -> 1.8.2 Alexander Dahl via ptxdist
2026-06-25 19:23 ` [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