From fcdfc1256dba46373694919e7d8d2fba48f33936 Mon Sep 17 00:00:00 2001 From: Julien Olivain Date: Fri, 25 Apr 2025 21:24:58 +0200 Subject: [PATCH] package/libqrencode: fix the _SITE package download url The qrencode release archive is no longer distributed at [1]. This url now shows a HTTP/404 not found error. The qrencode homepage [2] states: "You can download the source packages at Releases[3] page at GitHub." This commit updates the package download url to use github. The github archive is not the same as the old release archive: it does not contain the autotools configure script. For this reason, the hash archive is updated and "_AUTORECONF = YES" is also added. This commit also fixes the zbar runtime test [4] which is using libqrencode to generate a qrcode to test zbar. Fixes: [4] [1] http://fukuchi.org/works/qrencode/qrencode-4.1.1.tar.gz [2] https://fukuchi.org/en/works/qrencode/ [3] https://github.com/fukuchi/libqrencode/releases [4] https://gitlab.com/buildroot.org/buildroot/-/jobs/9774022888 Signed-off-by: Julien Olivain Signed-off-by: Thomas Petazzoni (cherry picked from commit 763971cfe3235ede53c6455aa26eb671c51809cb) Signed-off-by: Thomas Perale --- package/libqrencode/libqrencode.hash | 4 ++-- package/libqrencode/libqrencode.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/libqrencode/libqrencode.hash b/package/libqrencode/libqrencode.hash index ffcc537379..4586159420 100644 --- a/package/libqrencode/libqrencode.hash +++ b/package/libqrencode/libqrencode.hash @@ -1,5 +1,5 @@ -# From http://fukuchi.org/works/qrencode/qrencode-4.1.1.tar.gz.sha -sha512 209bb656ae3f391b03c7b3ceb03e34f7320b0105babf48b619e7a299528b8828449e0e7696f0b5db0d99170a81709d0518e34835229a748701e7df784e58a9ce qrencode-4.1.1.tar.gz +# Locally computed: +sha256 5385bc1b8c2f20f3b91d258bf8ccc8cf62023935df2d2676b5b67049f31a049c libqrencode-4.1.1.tar.gz # Hash for license file: sha256 a9bdde5616ecdd1e980b44f360600ee8783b1f99b8cc83a2beb163a0a390e861 COPYING diff --git a/package/libqrencode/libqrencode.mk b/package/libqrencode/libqrencode.mk index 0062a96a39..8698d88611 100644 --- a/package/libqrencode/libqrencode.mk +++ b/package/libqrencode/libqrencode.mk @@ -5,12 +5,12 @@ ################################################################################ LIBQRENCODE_VERSION = 4.1.1 -LIBQRENCODE_SOURCE = qrencode-$(LIBQRENCODE_VERSION).tar.gz -LIBQRENCODE_SITE = http://fukuchi.org/works/qrencode +LIBQRENCODE_SITE = $(call github,fukuchi,libqrencode,v$(LIBQRENCODE_VERSION)) LIBQRENCODE_DEPENDENCIES = host-pkgconf LIBQRENCODE_INSTALL_STAGING = YES LIBQRENCODE_LICENSE = LGPL-2.1+ LIBQRENCODE_LICENSE_FILES = COPYING +LIBQRENCODE_AUTORECONF = YES ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y) LIBQRENCODE_CONF_ENV += LIBS='-pthread'