* [Buildroot] [PATCH 1/1] package/botan: add host-python3 dependency
@ 2022-11-04 10:16 Fabrice Fontaine
2022-11-05 20:09 ` Thomas Petazzoni via buildroot
2022-11-14 15:43 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-11-04 10:16 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine
add host-python3 dependency to avoid the following build failure raised
since the addition of the package in commit
e43da7bb32285bbd41b38a379aef77132d149df7:
(cd /home/autobuild/autobuild/instance-19/output-1/build/botan-2.19.2; PATH="/home/autobuild/autobuild/instance-19/output-1/host/bin:/home/autobuild/autobuild/instance-19/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" ./configure.py --cpu="m68k" --disable-cc-tests --os=linux --cc=gcc --cc-bin="/home/autobuild/autobuild/instance-19/output-1/host/bin/m68k-linux-g++" --prefix=/usr --without-documentation --extra-libs=atomic --disable-shared-library --enable-static-library --no-autoload --without-stack-protector --without-os-feature=getauxval --with-boost --with-sqlite --with-zlib --disable-altivec --disable-neon)
/usr/bin/env: 'python': No such file or directory
Fixes:
- http://autobuild.buildroot.org/results/91eb6d03ee899bc1034efc5ac7d1fe78961d37ca
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/botan/botan.mk | 1 +
1 file changed, 1 insertion(+)
diff --git a/package/botan/botan.mk b/package/botan/botan.mk
index b26ee4c66e..b0ebe594b1 100644
--- a/package/botan/botan.mk
+++ b/package/botan/botan.mk
@@ -13,6 +13,7 @@ BOTAN_CPE_ID_VENDOR = botan_project
BOTAN_INSTALL_STAGING = YES
+BOTAN_DEPENDENCIES = host-python3
BOTAN_CONF_OPTS = \
--cpu=$(BR2_ARCH) \
--disable-cc-tests \
--
2.35.1
_______________________________________________
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/botan: add host-python3 dependency
2022-11-04 10:16 [Buildroot] [PATCH 1/1] package/botan: add host-python3 dependency Fabrice Fontaine
@ 2022-11-05 20:09 ` Thomas Petazzoni via buildroot
2022-11-14 15:43 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-11-05 20:09 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
On Fri, 4 Nov 2022 11:16:39 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> add host-python3 dependency to avoid the following build failure raised
> since the addition of the package in commit
> e43da7bb32285bbd41b38a379aef77132d149df7:
>
> (cd /home/autobuild/autobuild/instance-19/output-1/build/botan-2.19.2; PATH="/home/autobuild/autobuild/instance-19/output-1/host/bin:/home/autobuild/autobuild/instance-19/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" ./configure.py --cpu="m68k" --disable-cc-tests --os=linux --cc=gcc --cc-bin="/home/autobuild/autobuild/instance-19/output-1/host/bin/m68k-linux-g++" --prefix=/usr --without-documentation --extra-libs=atomic --disable-shared-library --enable-static-library --no-autoload --without-stack-protector --without-os-feature=getauxval --with-boost --with-sqlite --with-zlib --disable-altivec --disable-neon)
> /usr/bin/env: 'python': No such file or directory
>
> Fixes:
> - http://autobuild.buildroot.org/results/91eb6d03ee899bc1034efc5ac7d1fe78961d37ca
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/botan/botan.mk | 1 +
> 1 file changed, 1 insertion(+)
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/botan: add host-python3 dependency
2022-11-04 10:16 [Buildroot] [PATCH 1/1] package/botan: add host-python3 dependency Fabrice Fontaine
2022-11-05 20:09 ` Thomas Petazzoni via buildroot
@ 2022-11-14 15:43 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-11-14 15:43 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> add host-python3 dependency to avoid the following build failure raised
> since the addition of the package in commit
> e43da7bb32285bbd41b38a379aef77132d149df7:
> (cd /home/autobuild/autobuild/instance-19/output-1/build/botan-2.19.2;
> PATH="/home/autobuild/autobuild/instance-19/output-1/host/bin:/home/autobuild/autobuild/instance-19/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
> ./configure.py --cpu="m68k" --disable-cc-tests --os=linux --cc=gcc
> --cc-bin="/home/autobuild/autobuild/instance-19/output-1/host/bin/m68k-linux-g++"
> --prefix=/usr --without-documentation --extra-libs=atomic
> --disable-shared-library --enable-static-library --no-autoload
> --without-stack-protector --without-os-feature=getauxval --with-boost
> --with-sqlite --with-zlib --disable-altivec --disable-neon)
> /usr/bin/env: 'python': No such file or directory
> Fixes:
> - http://autobuild.buildroot.org/results/91eb6d03ee899bc1034efc5ac7d1fe78961d37ca
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2022.08.x and 2022.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:[~2022-11-14 15:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-04 10:16 [Buildroot] [PATCH 1/1] package/botan: add host-python3 dependency Fabrice Fontaine
2022-11-05 20:09 ` Thomas Petazzoni via buildroot
2022-11-14 15:43 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox