From: Thomas De Schampheleire Date: Fri, 20 Dec 2019 20:27:28 +0000 (+0100) Subject: package/jq: bump to git version a97638713ad3 (still 1.6-based) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b640c6d4cff5b6fd8480aeebc630443b6ca09b2a;p=buildroot.git package/jq: bump to git version a97638713ad3 (still 1.6-based) jq 1.6 has a severe performance regression compared to 1.5. The problem is reported [1] and fixed [2] upstream, but there are different commits and later subsequent fixes on top of them that make it cumbersome to patch specifically. Instead, bump to a recent git version. [1] https://github.com/stedolan/jq/issues/1826 [2] https://github.com/stedolan/jq/pull/1834 Signed-off-by: Thomas De Schampheleire Signed-off-by: Thomas Petazzoni --- diff --git a/package/jq/jq.hash b/package/jq/jq.hash index 449619b024..2cddda32c6 100644 --- a/package/jq/jq.hash +++ b/package/jq/jq.hash @@ -1,3 +1,3 @@ # Locally calculated -sha256 5de8c8e29aaa3fb9cc6b47bb27299f271354ebb72514e3accadc7d38b5bbaa72 jq-1.6.tar.gz +sha256 3002cf80d871728562989b4a47d90a7301fe049a4e1d69836b99108f198dac06 jq-a97638713ad30653d424f136018098c4b0e5c71b.tar.gz sha256 111136aebcbfa68b6b0084e582b30e981da76adcff84eab6f9be32a1f38c5bf1 COPYING diff --git a/package/jq/jq.mk b/package/jq/jq.mk index bf96f0cecb..3d22306537 100644 --- a/package/jq/jq.mk +++ b/package/jq/jq.mk @@ -4,12 +4,15 @@ # ################################################################################ -JQ_VERSION = 1.6 -JQ_SITE = https://github.com/stedolan/jq/releases/download/jq-$(JQ_VERSION) +JQ_VERSION = a97638713ad30653d424f136018098c4b0e5c71b +JQ_SITE = $(call github,stedolan,jq,$(JQ_VERSION)) JQ_LICENSE = MIT (code), CC-BY-3.0 (documentation) JQ_LICENSE_FILES = COPYING JQ_INSTALL_STAGING = YES +# currently using git version directly +JQ_AUTORECONF = YES + # uses c99 specific features # _GNU_SOURCE added to fix gcc6+ host compilation # (https://github.com/stedolan/jq/issues/1598)