From af6199215f44d369d0baf4af1230c2f7d84cac21 Mon Sep 17 00:00:00 2001 From: Yogesh Tyagi Date: Tue, 5 Jul 2022 10:49:11 +0800 Subject: testimage : remove curl-ptest from rpm index When creating rpm index for dnf runtime tests, currently all the package starting with curl are getting included. Now curl-ptest is getting enabled through another patch but we don't want rpm index to be created for curl-ptest since it fetches lot of perl dependencies. This patch removes curl-ptest from rpm index. (From OE-Core rev: 830663cee1eabdecdd473f4589a6c03b6e6c409b) Signed-off-by: Yogesh Tyagi Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- meta/classes/testimage.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 8ffaeab284..7898223bce 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass @@ -472,6 +472,9 @@ def create_rpm_index(d): package_list = glob.glob(idx_path + "*/*.rpm") for pkg in package_list: + if os.path.basename(pkg).startswith(("curl-ptest")): + bb.utils.remove(pkg) + if not os.path.basename(pkg).startswith(("rpm", "run-postinsts", "busybox", "bash", "update-alternatives", "libc6", "curl", "musl")): bb.utils.remove(pkg) -- cgit v1.2.3-54-g00ecf