All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-multimedia][PATCH] openh264: Disable building for ppc64le
@ 2021-03-12  7:46 Khem Raj
  2021-03-12  7:47 ` [meta-python][PATCH v2] python3-grpcio,python3-grpcio-tools: Disable " Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2021-03-12  7:46 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

Needs porting to ppc

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-multimedia/recipes-multimedia/openh264/openh264_2.1.1.bb    | 1 +
 .../packagegroups/packagegroup-meta-multimedia.bb                | 1 +
 2 files changed, 2 insertions(+)

diff --git a/meta-multimedia/recipes-multimedia/openh264/openh264_2.1.1.bb b/meta-multimedia/recipes-multimedia/openh264/openh264_2.1.1.bb
index 3988cfff86..75d5010f18 100644
--- a/meta-multimedia/recipes-multimedia/openh264/openh264_2.1.1.bb
+++ b/meta-multimedia/recipes-multimedia/openh264/openh264_2.1.1.bb
@@ -23,6 +23,7 @@ COMPATIBLE_MACHINE_x86 = "(.*)"
 COMPATIBLE_MACHINE_x86-64 = "(.*)"
 COMPATIBLE_MACHINE_mips = "(.*)"
 COMPATIBLE_MACHINE_mips64 = "(.*)"
+COMPATIBLE_MACHINE_powerpc64le = "null"
 
 EXTRA_OEMAKE_armv7a = "ARCH=arm"
 EXTRA_OEMAKE_armv7ve = "ARCH=arm"
diff --git a/meta-multimedia/recipes-multimedia/packagegroups/packagegroup-meta-multimedia.bb b/meta-multimedia/recipes-multimedia/packagegroups/packagegroup-meta-multimedia.bb
index 78c7c06b22..c4be1b5ce9 100644
--- a/meta-multimedia/recipes-multimedia/packagegroups/packagegroup-meta-multimedia.bb
+++ b/meta-multimedia/recipes-multimedia/packagegroups/packagegroup-meta-multimedia.bb
@@ -74,6 +74,7 @@ RDEPENDS_packagegroup-meta-multimedia = "\
     ${@bb.utils.contains_any("TRANSLATED_TARGET_ARCH", "i586 x86-64", "x265", "", d)} \
 "
 RDEPENDS_packagegroup-meta-multimedia_remove_libc-musl = "projucer"
+RDEPENDS_packagegroup-meta-multimedia_remove_powerpc64le = "openh264"
 
 RDEPENDS_packagegroup-meta-multimedia-connectivity = "\
     gssdp \
-- 
2.30.2


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

* [meta-python][PATCH v2] python3-grpcio,python3-grpcio-tools: Disable for ppc64le
  2021-03-12  7:46 [meta-multimedia][PATCH] openh264: Disable building for ppc64le Khem Raj
@ 2021-03-12  7:47 ` Khem Raj
  2021-03-15 13:02   ` [oe] " Trevor Gamblin
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2021-03-12  7:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

abseil-cpp does not have support for ppc64le yet

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../recipes-core/packagegroups/packagegroup-meta-python.bb    | 1 +
 .../recipes-devtools/python/python3-grpcio-tools_1.35.0.bb    | 4 ++++
 meta-python/recipes-devtools/python/python3-grpcio_1.36.1.bb  | 4 ++++
 3 files changed, 9 insertions(+)

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index 4512f839f4..df4fcc8826 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -449,6 +449,7 @@ RDEPENDS_packagegroup-meta-python3 = "\
     python3-zopeinterface \
     telepathy-python3 \
 "
+RDEPENDS_packagegroup-meta-python3_remove_powerpc64le = "python3-grpcio python3-grpcio-tools"
 
 RDEPENDS_packagegroup-meta-python3-ptest = "\
     python3-cryptography-ptest \
diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.35.0.bb b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.35.0.bb
index 12b00cfa3f..475b4e6063 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.35.0.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.35.0.bb
@@ -16,3 +16,7 @@ SRC_URI[sha256sum] = "9e2a41cba9c5a20ae299d0fdd377fe231434fa04cbfbfb3807293c6ec1
 RDEPENDS_${PN} = "${PYTHON_PN}-grpcio"
 
 BBCLASSEXTEND = "native nativesdk"
+
+# Needs python3-grpcio which does not build for ppc64le
+COMPATIBLE_HOST_powerpc64le = "null"
+
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.36.1.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.36.1.bb
index 3d875bf4ba..fa030b99e2 100644
--- a/meta-python/recipes-devtools/python/python3-grpcio_1.36.1.bb
+++ b/meta-python/recipes-devtools/python/python3-grpcio_1.36.1.bb
@@ -43,3 +43,7 @@ CLEANBROKEN = "1"
 BBCLASSEXTEND = "native nativesdk"
 
 CCACHE_DISABLE = "1"
+
+# abseil-cpp/absl/base/internal/unscaledcycleclock.cc:100:2: error: #error Must implement UnscaledCycleClock::Frequency()
+COMPATIBLE_HOST_powerpc64le = "null"
+
-- 
2.30.2


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

* Re: [oe] [meta-python][PATCH v2] python3-grpcio,python3-grpcio-tools: Disable for ppc64le
  2021-03-12  7:47 ` [meta-python][PATCH v2] python3-grpcio,python3-grpcio-tools: Disable " Khem Raj
@ 2021-03-15 13:02   ` Trevor Gamblin
  0 siblings, 0 replies; 3+ messages in thread
From: Trevor Gamblin @ 2021-03-15 13:02 UTC (permalink / raw)
  To: Khem Raj, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2486 bytes --]


On 2021-03-12 2:47 a.m., Khem Raj wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> abseil-cpp does not have support for ppc64le yet
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-core/packagegroups/packagegroup-meta-python.bb    | 1 +
>   .../recipes-devtools/python/python3-grpcio-tools_1.35.0.bb    | 4 ++++
>   meta-python/recipes-devtools/python/python3-grpcio_1.36.1.bb  | 4 ++++
>   3 files changed, 9 insertions(+)
>
> diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> index 4512f839f4..df4fcc8826 100644
> --- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> +++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> @@ -449,6 +449,7 @@ RDEPENDS_packagegroup-meta-python3 = "\
>       python3-zopeinterface \
>       telepathy-python3 \
>   "
> +RDEPENDS_packagegroup-meta-python3_remove_powerpc64le = "python3-grpcio python3-grpcio-tools"
>
>   RDEPENDS_packagegroup-meta-python3-ptest = "\
>       python3-cryptography-ptest \
> diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.35.0.bb b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.35.0.bb
> index 12b00cfa3f..475b4e6063 100644
> --- a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.35.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.35.0.bb
> @@ -16,3 +16,7 @@ SRC_URI[sha256sum] = "9e2a41cba9c5a20ae299d0fdd377fe231434fa04cbfbfb3807293c6ec1
>   RDEPENDS_${PN} = "${PYTHON_PN}-grpcio"
>
>   BBCLASSEXTEND = "native nativesdk"
> +
> +# Needs python3-grpcio which does not build for ppc64le
> +COMPATIBLE_HOST_powerpc64le = "null"
> +
> diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.36.1.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.36.1.bb
> index 3d875bf4ba..fa030b99e2 100644
> --- a/meta-python/recipes-devtools/python/python3-grpcio_1.36.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-grpcio_1.36.1.bb
> @@ -43,3 +43,7 @@ CLEANBROKEN = "1"
>   BBCLASSEXTEND = "native nativesdk"
>
>   CCACHE_DISABLE = "1"
> +
> +# abseil-cpp/absl/base/internal/unscaledcycleclock.cc:100:2: error: #error Must implement UnscaledCycleClock::Frequency()
> +COMPATIBLE_HOST_powerpc64le = "null"
> +
> --
> 2.30.2
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 3268 bytes --]

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

end of thread, other threads:[~2021-03-15 13:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-12  7:46 [meta-multimedia][PATCH] openh264: Disable building for ppc64le Khem Raj
2021-03-12  7:47 ` [meta-python][PATCH v2] python3-grpcio,python3-grpcio-tools: Disable " Khem Raj
2021-03-15 13:02   ` [oe] " Trevor Gamblin

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.