Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/mariadb: really use system fmt
@ 2024-04-08 20:20 Fabrice Fontaine
  2024-05-09 21:19 ` Thomas Petazzoni via buildroot
  2024-06-07 20:23 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-04-08 20:20 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Commit 821f9dee8112dc02fe58d60273d0dfdabbc46d1f wrongly used WITH_FMT
instead of WITH_LIBFMT resulting in the following build failure:

[  0%] Creating directories for 'libfmt'
[  0%] Performing download step (download, verify and extract) for 'libfmt'
make[3]: Leaving directory '/home/buildroot/autobuild/run/instance-0/output-1/build/mariadb-10.11.6'
make[3]: Leaving directory '/home/buildroot/autobuild/run/instance-0/output-1/build/mariadb-10.11.6'
-- Downloading...
   dst='/home/buildroot/autobuild/run/instance-0/output-1/build/mariadb-10.11.6/extra/libfmt/src/8.0.1.zip'
   timeout='none'
   inactivity timeout='none'
-- Using src='https://github.com/fmtlib/fmt/archive/refs/tags/8.0.1.zip'
CMake Error at libfmt-stamp/download-libfmt.cmake:170 (message):
  Each download failed!

    error: downloading 'https://github.com/fmtlib/fmt/archive/refs/tags/8.0.1.zip' failed
          status_code: 1
          status_string: "Unsupported protocol"
          log:
          --- LOG BEGIN ---
          Protocol "https" not supported or disabled in libcurl

  Closing connection

          --- LOG END ---

Fixes: 821f9dee8112dc02fe58d60273d0dfdabbc46d1f
 - http://autobuild.buildroot.org/results/fbe3bc347a83a810ffbbbff93a45994963712bee

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/mariadb/mariadb.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/mariadb/mariadb.mk b/package/mariadb/mariadb.mk
index 8641437d4d..1dcf6568da 100644
--- a/package/mariadb/mariadb.mk
+++ b/package/mariadb/mariadb.mk
@@ -26,7 +26,7 @@ MARIADB_DEPENDENCIES = \
 	libxml2
 
 MARIADB_CONF_OPTS += \
-	-DWITH_FMT=system \
+	-DWITH_LIBFMT=system \
 	-DWITH_PCRE=system
 
 # use bundled GPL-2.0+ licensed readline as package/readline is GPL-3.0+
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/mariadb: really use system fmt
  2024-04-08 20:20 [Buildroot] [PATCH 1/1] package/mariadb: really use system fmt Fabrice Fontaine
@ 2024-05-09 21:19 ` Thomas Petazzoni via buildroot
  2024-06-07 20:23 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-05-09 21:19 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

On Mon,  8 Apr 2024 22:20:30 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Commit 821f9dee8112dc02fe58d60273d0dfdabbc46d1f wrongly used WITH_FMT
> instead of WITH_LIBFMT resulting in the following build failure:
> 
> [  0%] Creating directories for 'libfmt'
> [  0%] Performing download step (download, verify and extract) for 'libfmt'
> make[3]: Leaving directory '/home/buildroot/autobuild/run/instance-0/output-1/build/mariadb-10.11.6'
> make[3]: Leaving directory '/home/buildroot/autobuild/run/instance-0/output-1/build/mariadb-10.11.6'
> -- Downloading...
>    dst='/home/buildroot/autobuild/run/instance-0/output-1/build/mariadb-10.11.6/extra/libfmt/src/8.0.1.zip'
>    timeout='none'
>    inactivity timeout='none'
> -- Using src='https://github.com/fmtlib/fmt/archive/refs/tags/8.0.1.zip'
> CMake Error at libfmt-stamp/download-libfmt.cmake:170 (message):
>   Each download failed!
> 
>     error: downloading 'https://github.com/fmtlib/fmt/archive/refs/tags/8.0.1.zip' failed
>           status_code: 1
>           status_string: "Unsupported protocol"
>           log:
>           --- LOG BEGIN ---
>           Protocol "https" not supported or disabled in libcurl
> 
>   Closing connection
> 
>           --- LOG END ---
> 
> Fixes: 821f9dee8112dc02fe58d60273d0dfdabbc46d1f
>  - http://autobuild.buildroot.org/results/fbe3bc347a83a810ffbbbff93a45994963712bee
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/mariadb/mariadb.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, 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] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/mariadb: really use system fmt
  2024-04-08 20:20 [Buildroot] [PATCH 1/1] package/mariadb: really use system fmt Fabrice Fontaine
  2024-05-09 21:19 ` Thomas Petazzoni via buildroot
@ 2024-06-07 20:23 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-06-07 20:23 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Commit 821f9dee8112dc02fe58d60273d0dfdabbc46d1f wrongly used WITH_FMT
 > instead of WITH_LIBFMT resulting in the following build failure:

 > [  0%] Creating directories for 'libfmt'
 > [  0%] Performing download step (download, verify and extract) for 'libfmt'
 > make[3]: Leaving directory '/home/buildroot/autobuild/run/instance-0/output-1/build/mariadb-10.11.6'
 > make[3]: Leaving directory '/home/buildroot/autobuild/run/instance-0/output-1/build/mariadb-10.11.6'
 > -- Downloading...
 >    dst='/home/buildroot/autobuild/run/instance-0/output-1/build/mariadb-10.11.6/extra/libfmt/src/8.0.1.zip'
 >    timeout='none'
 >    inactivity timeout='none'
 > -- Using src='https://github.com/fmtlib/fmt/archive/refs/tags/8.0.1.zip'
 > CMake Error at libfmt-stamp/download-libfmt.cmake:170 (message):
 >   Each download failed!

 >     error: downloading 'https://github.com/fmtlib/fmt/archive/refs/tags/8.0.1.zip' failed
 >           status_code: 1
 >           status_string: "Unsupported protocol"
 >           log:
 >           --- LOG BEGIN ---
 >           Protocol "https" not supported or disabled in libcurl

 >   Closing connection

 >           --- LOG END ---

 > Fixes: 821f9dee8112dc02fe58d60273d0dfdabbc46d1f
 >  - http://autobuild.buildroot.org/results/fbe3bc347a83a810ffbbbff93a45994963712bee

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2024.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-06-07 20:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-08 20:20 [Buildroot] [PATCH 1/1] package/mariadb: really use system fmt Fabrice Fontaine
2024-05-09 21:19 ` Thomas Petazzoni via buildroot
2024-06-07 20:23 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox