[Buildroot] [PATCH 1/1] package/tealdeer: exclude unsupported targets

Peter Korsgaard peter at korsgaard.com
Wed Dec 21 15:41:40 UTC 2022


>>>>> "Yann" == Yann E MORIN <yann.morin.1998 at free.fr> writes:

 > Danilo, All,
 > On 2022-12-08 11:02 +0100, Danilo Bargen spake thusly:
 >> Not all target architectures are supported by the "ring" dependency.
 >> 
 >> Signed-off-by: Danilo Bargen <mail at dbrgn.ch>
 >> ---
 >> package/tealdeer/Config.in | 8 ++++++++
 >> 1 file changed, 8 insertions(+)
 >> 
 >> diff --git a/package/tealdeer/Config.in b/package/tealdeer/Config.in
 >> index 96ed81614b..a61a59f3ee 100644
 >> --- a/package/tealdeer/Config.in
 >> +++ b/package/tealdeer/Config.in
 >> @@ -1,6 +1,14 @@
 >> config BR2_PACKAGE_TEALDEER
 >> bool "tealdeer"
 >> depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
 >> +    # Crypto dependency (ring) not available for mips:
 >> https://github.com/briansmith/ring/issues/562
 >> +    depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el)
 >> +    # Crypto dependency (ring) not available for PowerPC:
 >> https://github.com/briansmith/ring/issues/389
 >> +    depends on !(BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le)
 >> +    # Crypto dependency (ring) not available for Sparc:
 >> https://github.com/briansmith/ring/issues/1512
 >> +    depends on !(BR2_sparc || BR2_sparc64)
 >> +    # Crypto dependency (ring) not available for s390x:
 >> https://github.com/briansmith/ring/commit/4d2e1a8fb80398f7c3c0137ea8fdd512f82d37a0
 >> +    depends on !BR2_s390x

 > As Thomas already noted, this patch is badly broken.

 > I've massaged into back into something that looks nicer, and applied to
 > master, after simplifying the comment and moving the references to the
 > commit log.

Committed to 2022.11.x, thanks.

-- 
Bye, Peter Korsgaard



More information about the buildroot mailing list