All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][sumo][PATCH 0/2] Fixed required for Yocto 2.0 compliance check
@ 2018-09-26 12:18 Nicolas Dechesne
  2018-09-26 12:18 ` [meta-oe][sumo][PATCH 1/2] meta-multimedia: fixup LAYERDEPENDS Nicolas Dechesne
  2018-09-26 12:18 ` [meta-oe][sumo][PATCH 2/2] grpc: move it from oe to networking layer Nicolas Dechesne
  0 siblings, 2 replies; 4+ messages in thread
From: Nicolas Dechesne @ 2018-09-26 12:18 UTC (permalink / raw)
  To: akuster808, openembedded-devel; +Cc: Nicolas Dechesne

These changes are needed in order to pass the YP 2.0 compliance check script (yocto-check-layer). One change is a backport from master, the other one is fixed in master in a different way, and the backport looks inappropriate for a stable branch.

Armin Kuster (1):
  grpc: move it from oe to networking layer

Nicolas Dechesne (1):
  meta-multimedia: fixup LAYERDEPENDS

 meta-multimedia/conf/layer.conf                                 | 2 +-
 ...1-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch | 0
 ...01-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch | 0
 ...004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch | 0
 .../recipes-devtools/grpc/grpc_1.8.5.bb                         | 0
 5 files changed, 1 insertion(+), 1 deletion(-)
 rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch (100%)
 rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch (100%)
 rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch (100%)
 rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc_1.8.5.bb (100%)

-- 
2.18.0



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

* [meta-oe][sumo][PATCH 1/2] meta-multimedia: fixup LAYERDEPENDS
  2018-09-26 12:18 [meta-oe][sumo][PATCH 0/2] Fixed required for Yocto 2.0 compliance check Nicolas Dechesne
@ 2018-09-26 12:18 ` Nicolas Dechesne
  2018-09-26 12:18 ` [meta-oe][sumo][PATCH 2/2] grpc: move it from oe to networking layer Nicolas Dechesne
  1 sibling, 0 replies; 4+ messages in thread
From: Nicolas Dechesne @ 2018-09-26 12:18 UTC (permalink / raw)
  To: akuster808, openembedded-devel; +Cc: Nicolas Dechesne

libebml depends on dos2unix classe since 26dafa0f3542 (libebml: inherit
dos2unix), so LAYERDEPENDS needs to be updated accordingly, otherwise we are
getting a ParseError:

ERROR: ParseError at
/srv/work/oe/meta-openembedded/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb:13:
Could not inherit file classes/dos2unix.bbclass

It was initially found with yocto-check-layer script.

In OE/master branch, the dos2unix class was moved to oe-core, so the problem
does not exist in master, and this patch is less invasive than cherry pick the
change from master (move dos2unix from meta-oe to oe-core).

Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
---
 meta-multimedia/conf/layer.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-multimedia/conf/layer.conf b/meta-multimedia/conf/layer.conf
index cfedf2f6b..a1dfed4e9 100644
--- a/meta-multimedia/conf/layer.conf
+++ b/meta-multimedia/conf/layer.conf
@@ -27,6 +27,6 @@ BBFILE_PRIORITY_multimedia-layer = "6"
 # cause compatibility issues with other layers
 LAYERVERSION_multimedia-layer = "1"
 
-LAYERDEPENDS_multimedia-layer = "core"
+LAYERDEPENDS_multimedia-layer = "core openembedded-layer"
 
 LAYERSERIES_COMPAT_multimedia-layer = "sumo"
-- 
2.18.0



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

* [meta-oe][sumo][PATCH 2/2] grpc: move it from oe to networking layer
  2018-09-26 12:18 [meta-oe][sumo][PATCH 0/2] Fixed required for Yocto 2.0 compliance check Nicolas Dechesne
  2018-09-26 12:18 ` [meta-oe][sumo][PATCH 1/2] meta-multimedia: fixup LAYERDEPENDS Nicolas Dechesne
@ 2018-09-26 12:18 ` Nicolas Dechesne
  2018-09-27  1:43   ` akuster808
  1 sibling, 1 reply; 4+ messages in thread
From: Nicolas Dechesne @ 2018-09-26 12:18 UTC (permalink / raw)
  To: akuster808, openembedded-devel; +Cc: Nicolas Dechesne

From: Armin Kuster <akuster808@gmail.com>

grpc has dependancy on meta-networking packages.

Signed-off-by: Armin Kuster <akuster808@gmail.com>
(cherry picked from commit 251878e8b6b993b159c949f7e4860faf085e17f5)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
---
 ...001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch | 0
 ...0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch | 0
 .../0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch | 0
 {meta-oe => meta-networking}/recipes-devtools/grpc/grpc_1.8.5.bb  | 0
 4 files changed, 0 insertions(+), 0 deletions(-)
 rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch (100%)
 rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch (100%)
 rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch (100%)
 rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc_1.8.5.bb (100%)

diff --git a/meta-oe/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch b/meta-networking/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch
similarity index 100%
rename from meta-oe/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch
rename to meta-networking/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch
diff --git a/meta-oe/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch b/meta-networking/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch
similarity index 100%
rename from meta-oe/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch
rename to meta-networking/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch
diff --git a/meta-oe/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch b/meta-networking/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch
similarity index 100%
rename from meta-oe/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch
rename to meta-networking/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch
diff --git a/meta-oe/recipes-devtools/grpc/grpc_1.8.5.bb b/meta-networking/recipes-devtools/grpc/grpc_1.8.5.bb
similarity index 100%
rename from meta-oe/recipes-devtools/grpc/grpc_1.8.5.bb
rename to meta-networking/recipes-devtools/grpc/grpc_1.8.5.bb
-- 
2.18.0



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

* Re: [meta-oe][sumo][PATCH 2/2] grpc: move it from oe to networking layer
  2018-09-26 12:18 ` [meta-oe][sumo][PATCH 2/2] grpc: move it from oe to networking layer Nicolas Dechesne
@ 2018-09-27  1:43   ` akuster808
  0 siblings, 0 replies; 4+ messages in thread
From: akuster808 @ 2018-09-27  1:43 UTC (permalink / raw)
  To: Nicolas Dechesne, openembedded-devel



On 09/26/2018 05:18 AM, Nicolas Dechesne wrote:
> From: Armin Kuster <akuster808@gmail.com>
>
> grpc has dependancy on meta-networking packages.
>
> Signed-off-by: Armin Kuster <akuster808@gmail.com>
> (cherry picked from commit 251878e8b6b993b159c949f7e4860faf085e17f5)
> Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>

this is already in sumo-next

- armin
> ---
>  ...001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch | 0
>  ...0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch | 0
>  .../0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch | 0
>  {meta-oe => meta-networking}/recipes-devtools/grpc/grpc_1.8.5.bb  | 0
>  4 files changed, 0 insertions(+), 0 deletions(-)
>  rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch (100%)
>  rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch (100%)
>  rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch (100%)
>  rename {meta-oe => meta-networking}/recipes-devtools/grpc/grpc_1.8.5.bb (100%)
>
> diff --git a/meta-oe/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch b/meta-networking/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch
> similarity index 100%
> rename from meta-oe/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch
> rename to meta-networking/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-grpc_cpp_plugin-path-during-cross.patch
> diff --git a/meta-oe/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch b/meta-networking/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch
> similarity index 100%
> rename from meta-oe/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch
> rename to meta-networking/recipes-devtools/grpc/grpc/0001-CMakeLists.txt-Fix-libraries-installation-for-Linux.patch
> diff --git a/meta-oe/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch b/meta-networking/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch
> similarity index 100%
> rename from meta-oe/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch
> rename to meta-networking/recipes-devtools/grpc/grpc/0004-CMakeLists.txt-Find-c-ares-in-target-sysroot-alone.patch
> diff --git a/meta-oe/recipes-devtools/grpc/grpc_1.8.5.bb b/meta-networking/recipes-devtools/grpc/grpc_1.8.5.bb
> similarity index 100%
> rename from meta-oe/recipes-devtools/grpc/grpc_1.8.5.bb
> rename to meta-networking/recipes-devtools/grpc/grpc_1.8.5.bb



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

end of thread, other threads:[~2018-09-27  1:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-26 12:18 [meta-oe][sumo][PATCH 0/2] Fixed required for Yocto 2.0 compliance check Nicolas Dechesne
2018-09-26 12:18 ` [meta-oe][sumo][PATCH 1/2] meta-multimedia: fixup LAYERDEPENDS Nicolas Dechesne
2018-09-26 12:18 ` [meta-oe][sumo][PATCH 2/2] grpc: move it from oe to networking layer Nicolas Dechesne
2018-09-27  1:43   ` akuster808

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.