All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/tealdeer: exclude unsupported targets
@ 2022-12-08 10:02 Danilo Bargen
  2022-12-08 13:16 ` Thomas Petazzoni via buildroot
  2022-12-11 16:37 ` Yann E. MORIN
  0 siblings, 2 replies; 7+ messages in thread
From: Danilo Bargen @ 2022-12-08 10:02 UTC (permalink / raw)
  To: buildroot

Not all target architectures are supported by the "ring" dependency.

Signed-off-by: Danilo Bargen <mail@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
 	select BR2_PACKAGE_HOST_RUSTC
 	help
 	  A fast and full-featured tldr client. tldr pages are
--
2.38.1

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

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

end of thread, other threads:[~2022-12-21 15:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-08 10:02 [Buildroot] [PATCH 1/1] package/tealdeer: exclude unsupported targets Danilo Bargen
2022-12-08 13:16 ` Thomas Petazzoni via buildroot
2022-12-08 15:48   ` Danilo Bargen
2022-12-11 17:17     ` Yann E. MORIN
2022-12-11 18:52       ` Danilo Bargen
2022-12-11 16:37 ` Yann E. MORIN
2022-12-21 15:41   ` Peter Korsgaard

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.