* [Buildroot] [PATCH 1/2] package/libqrencode: update Config.in homepage url
@ 2025-04-25 19:24 Julien Olivain
2025-04-25 19:24 ` [Buildroot] [PATCH 2/2] package/libqrencode: fix the _SITE package download url Julien Olivain
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Julien Olivain @ 2025-04-25 19:24 UTC (permalink / raw)
To: buildroot; +Cc: Phil Eichinger, Julien Olivain
The old home page url [1] redirects to https, and points to the
japanese version of the site.
The commit updates this url to the https english version of the
site [2].
[1] http://fukuchi.org/works/qrencode/index.html
[2] https://fukuchi.org/en/works/qrencode/
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
package/libqrencode/Config.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/libqrencode/Config.in b/package/libqrencode/Config.in
index b86662621e..7c3d9e4df6 100644
--- a/package/libqrencode/Config.in
+++ b/package/libqrencode/Config.in
@@ -7,7 +7,7 @@ config BR2_PACKAGE_LIBQRENCODE
QR Code is up to 7000 digits or 4000 characters, and is
highly robust.
- http://fukuchi.org/works/qrencode/index.html
+ https://fukuchi.org/en/works/qrencode/
if BR2_PACKAGE_LIBQRENCODE
--
2.49.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] package/libqrencode: fix the _SITE package download url
2025-04-25 19:24 [Buildroot] [PATCH 1/2] package/libqrencode: update Config.in homepage url Julien Olivain
@ 2025-04-25 19:24 ` Julien Olivain
2025-05-17 11:15 ` [Buildroot] [PATCH 1/2] package/libqrencode: update Config.in homepage url Thomas Petazzoni via buildroot
2025-05-18 14:46 ` Arnout Vandecappelle via buildroot
2 siblings, 0 replies; 4+ messages in thread
From: Julien Olivain @ 2025-04-25 19:24 UTC (permalink / raw)
To: buildroot; +Cc: Phil Eichinger, Julien Olivain
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 <ju.o@free.fr>
---
Patch tested in:
https://gitlab.com/jolivain/buildroot/-/jobs/9834933196
---
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'
--
2.49.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/libqrencode: update Config.in homepage url
2025-04-25 19:24 [Buildroot] [PATCH 1/2] package/libqrencode: update Config.in homepage url Julien Olivain
2025-04-25 19:24 ` [Buildroot] [PATCH 2/2] package/libqrencode: fix the _SITE package download url Julien Olivain
@ 2025-05-17 11:15 ` Thomas Petazzoni via buildroot
2025-05-18 14:46 ` Arnout Vandecappelle via buildroot
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2025-05-17 11:15 UTC (permalink / raw)
To: Julien Olivain; +Cc: buildroot, Phil Eichinger
On Fri, 25 Apr 2025 21:24:57 +0200
Julien Olivain <ju.o@free.fr> wrote:
> The old home page url [1] redirects to https, and points to the
> japanese version of the site.
>
> The commit updates this url to the https english version of the
> site [2].
>
> [1] http://fukuchi.org/works/qrencode/index.html
> [2] https://fukuchi.org/en/works/qrencode/
>
> Signed-off-by: Julien Olivain <ju.o@free.fr>
> ---
> package/libqrencode/Config.in | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Series applied, thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/libqrencode: update Config.in homepage url
2025-04-25 19:24 [Buildroot] [PATCH 1/2] package/libqrencode: update Config.in homepage url Julien Olivain
2025-04-25 19:24 ` [Buildroot] [PATCH 2/2] package/libqrencode: fix the _SITE package download url Julien Olivain
2025-05-17 11:15 ` [Buildroot] [PATCH 1/2] package/libqrencode: update Config.in homepage url Thomas Petazzoni via buildroot
@ 2025-05-18 14:46 ` Arnout Vandecappelle via buildroot
2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2025-05-18 14:46 UTC (permalink / raw)
To: Julien Olivain, buildroot; +Cc: Phil Eichinger
On 25/04/2025 21:24, Julien Olivain wrote:
> The old home page url [1] redirects to https, and points to the
> japanese version of the site.
>
> The commit updates this url to the https english version of the
> site [2].
>
> [1] http://fukuchi.org/works/qrencode/index.html
> [2] https://fukuchi.org/en/works/qrencode/
>
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Applied both to 2025.02.x, thanks.
Regards,
Arnout
> ---
> package/libqrencode/Config.in | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/libqrencode/Config.in b/package/libqrencode/Config.in
> index b86662621e..7c3d9e4df6 100644
> --- a/package/libqrencode/Config.in
> +++ b/package/libqrencode/Config.in
> @@ -7,7 +7,7 @@ config BR2_PACKAGE_LIBQRENCODE
> QR Code is up to 7000 digits or 4000 characters, and is
> highly robust.
>
> - http://fukuchi.org/works/qrencode/index.html
> + https://fukuchi.org/en/works/qrencode/
>
> if BR2_PACKAGE_LIBQRENCODE
>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-05-18 14:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-25 19:24 [Buildroot] [PATCH 1/2] package/libqrencode: update Config.in homepage url Julien Olivain
2025-04-25 19:24 ` [Buildroot] [PATCH 2/2] package/libqrencode: fix the _SITE package download url Julien Olivain
2025-05-17 11:15 ` [Buildroot] [PATCH 1/2] package/libqrencode: update Config.in homepage url Thomas Petazzoni via buildroot
2025-05-18 14:46 ` Arnout Vandecappelle via buildroot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.