diff mbox series

[meta-arago,master] ti-world: Clean up chromium inclusion

Message ID 20260925210225.2158880-1-reatmon@ti.com
State New
Headers show
Series [meta-arago,master] ti-world: Clean up chromium inclusion | expand

Commit Message

Ryan Eatmon Sept. 25, 2026, 9:02 p.m. UTC
It looks we had some multi-level inclusion of chromium in ti-world if
meta-browser and meta-python2 were both included in the build.
meta-python2 was removed as supported quite a while back so let's clean
up the logic and variable names to just check if meta-browser is in the
build.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 .../recipes-core/packagegroups/ti-world.bb         | 14 ++------------
 1 file changed, 2 insertions(+), 12 deletions(-)

Comments

PRC Automation Sept. 25, 2026, 9:26 p.m. UTC | #1
meta-arago / na / 20260925210225.2158880-1-reatmon

PRC Results: FAIL

=========================================================
  check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
All patches passed



=========================================================
  apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [meta-arago][master][PATCH] ti-world: Clean up chromium inclusion
- Submitter: From: Ryan Eatmon <reatmon@ti.com>
- Date: Date: Fri, 25 Sep 2026 16:02:25 -0500
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 8b47b3026df0d7d7ad3cff046e0ab84fbb648dde

Applied to:
- Repository: lcpd-prc-meta-arago
- Base Branch: master-wip
- Commit Author: Ryan Eatmon <reatmon@ti.com>
- Commit Subject: ti-world: Clean up chromium inclusion
- Commit SHA: 6e0dd96eebdd75de156536406d0cda78c2f8b572

Patches
----------------------------------------
All patches applied



=========================================================
  check-yocto-repo: PASS
=========================================================
master
=====================
PASS



=========================================================
  yocto-check-layers: FAIL
=========================================================
master - FAIL
=====================

ERROR: Multiple recipes found for mesa-demos
    oe-core/meta/recipes-graphics/mesa/mesa-demos_9.0.0.bb
    meta-arago/meta-arago-distro/recipes-graphics/mesa/mesa-demos_git.bb
diff mbox series

Patch

diff --git a/meta-arago-distro/recipes-core/packagegroups/ti-world.bb b/meta-arago-distro/recipes-core/packagegroups/ti-world.bb
index 6b6315ed..2cdb364a 100644
--- a/meta-arago-distro/recipes-core/packagegroups/ti-world.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/ti-world.bb
@@ -7,17 +7,7 @@  inherit packagegroup
 
 INSANE_SKIP:${PN} += "dev-deps"
 
-CHROMIUM = ""
-CHROMIUM:append:am57xx = "\
-    chromium-ozone-wayland \
-"
-CHROMIUM:append:k3 = "\
-    chromium-ozone-wayland \
-"
-
-PYTHON2APPS = " \
-    ${@bb.utils.contains("BBFILE_COLLECTIONS","browser-layer",bb.utils.contains('DISTRO_FEATURES','wayland',"${CHROMIUM}",'',d),'',d)} \
-"
+CHROMIUM_TOOLS = "chromium-ozone-wayland"
 
 DEVTOOLS = " \
     linux-libc-headers-dev \
@@ -39,7 +29,7 @@  RDEPENDS:${PN} = "\
     packagegroup-arago-addons \
     packagegroup-arago-addons-extra \
     ${@bb.utils.contains('DISTRO_FEATURES','opengl','','packagegroup-arago-base-server-extra',d)} \
-    ${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", "${PYTHON2APPS}", "", d)} \
+    ${@bb.utils.contains("BBFILE_COLLECTIONS","browser-layer",bb.utils.contains('DISTRO_FEATURES','wayland',"${CHROMIUM_TOOLS}",'',d),'',d)} \
     ${DEVTOOLS} \
     packagegroup-arago-misc \
     ${PREFERRED_PROVIDER_virtual/docker} \