From patchwork Sat Feb 10 11:36:12 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Simone_Wei=C3=9F?= X-Patchwork-Id: 39153 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 45197C48260 for ; Sat, 10 Feb 2024 11:36:31 +0000 (UTC) Received: from mout01.posteo.de (mout01.posteo.de [185.67.36.65]) by mx.groups.io with SMTP id smtpd.web10.12175.1707564982650556347 for ; Sat, 10 Feb 2024 03:36:23 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@posteo.com header.s=2017 header.b=kOE9QeaJ; spf=pass (domain: posteo.com, ip: 185.67.36.65, mailfrom: simone.p.weiss@posteo.com) Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 9752F240028 for ; Sat, 10 Feb 2024 12:36:20 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.com; s=2017; t=1707564980; bh=CV+Nu/hMEAGhA+JmFrIxlPCp5jfHm1v2tLWT8dubSXI=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version:Content-Type: Content-Transfer-Encoding:From; b=kOE9QeaJ/i/vBSyQrnB8pFOByPewUgMIw5qCPIODSc9R9yqO8U6xaEhXxicwLN/U8 mTuGtzNEI6qH4zm4WXOjT+lwG0vnIe5G6eGHDguloBfTOTX98c253FoEn2yPQZ23FC vRGffsQQh7qt7t3iu7U/8MDixpBfvserCin0MBITVM4ILbo6xd3FQGLKp8dAZWWYRO FH9RYbhiM7fVraG/Ll9s761vzbjnBZlimUfCLOKfSfA7Y5t4LPi5OfecHB0Er1AHLW eMCZ6L0wUQdRz68fVk5s2Ux8ET7JY48RpW2yJcbwNAd7pmCfC2Wv3HRgnc3Us9CS+S ufy9Kw5kczP7g== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4TX7w36D1Xz6tsb; Sat, 10 Feb 2024 12:36:19 +0100 (CET) From: simone.p.weiss@posteo.com To: openembedded-core@lists.openembedded.org Cc: =?utf-8?q?Simone_Wei=C3=9F?= Subject: [PATCH] meta: stop using "virtual-" in RPROVIDES and RDEPENDS Date: Sat, 10 Feb 2024 11:36:12 +0000 Message-Id: <20240210113612.525615-1-simone.p.weiss@posteo.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 10 Feb 2024 11:36:31 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/195261 From: Simone Weiß Instead of using "virtual-" use "VIRTUAL-RUNTIME_" as recommended in insane.bbclass for RPROVIDES and RDEPENDS. Signed-off-by: Simone Weiß --- meta/recipes-bsp/grub/grub-bootconf_1.00.bb | 2 +- meta/recipes-bsp/grub/grub-efi_2.12.bb | 2 +- meta/recipes-core/glibc/glibc-package.inc | 2 +- meta/recipes-core/musl/musl_git.bb | 2 +- meta/recipes-core/systemd/systemd-boot_255.1.bb | 2 +- meta/recipes-core/systemd/systemd-bootconf_1.00.bb | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/meta/recipes-bsp/grub/grub-bootconf_1.00.bb b/meta/recipes-bsp/grub/grub-bootconf_1.00.bb index 783e30bf38..33a4517e5b 100644 --- a/meta/recipes-bsp/grub/grub-bootconf_1.00.bb +++ b/meta/recipes-bsp/grub/grub-bootconf_1.00.bb @@ -5,7 +5,7 @@ DESCRIPTION = "Grub might require different configuration file for \ different machines." HOMEPAGE = "https://www.gnu.org/software/grub/manual/grub/grub.html#Configuration" -RPROVIDES:${PN} += "virtual-grub-bootconf" +RPROVIDES:${PN} += "VIRTUAL-RUNTIME_grub-bootconf" inherit grub-efi-cfg diff --git a/meta/recipes-bsp/grub/grub-efi_2.12.bb b/meta/recipes-bsp/grub/grub-efi_2.12.bb index 9857e8e036..078a59a465 100644 --- a/meta/recipes-bsp/grub/grub-efi_2.12.bb +++ b/meta/recipes-bsp/grub/grub-efi_2.12.bb @@ -5,7 +5,7 @@ require conf/image-uefi.conf GRUBPLATFORM = "efi" DEPENDS:append = " grub-native" -RDEPENDS:${PN} = "grub-common virtual-grub-bootconf" +RDEPENDS:${PN} = "grub-common VIRTUAL-RUNTIME_grub-bootconf" SRC_URI += " \ file://cfg \ diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc index 1ef987be0a..8846934b25 100644 --- a/meta/recipes-core/glibc/glibc-package.inc +++ b/meta/recipes-core/glibc/glibc-package.inc @@ -7,7 +7,7 @@ RPROVIDES:${PN} = "eglibc rtld(GNU_HASH)" RPROVIDES:${PN}-utils = "eglibc-utils" RPROVIDES:${PN}-mtrace = "eglibc-mtrace libc-mtrace" RPROVIDES:${PN}-pic = "eglibc-pic" -RPROVIDES:${PN}-dev = "eglibc-dev libc6-dev virtual-libc-dev" +RPROVIDES:${PN}-dev = "eglibc-dev libc6-dev VIRTUAL-RUNTIME_libc-dev" RPROVIDES:${PN}-staticdev = "eglibc-staticdev" RPROVIDES:${PN}-doc = "eglibc-doc" RPROVIDES:glibc-extra-nss = "eglibc-extra-nss" diff --git a/meta/recipes-core/musl/musl_git.bb b/meta/recipes-core/musl/musl_git.bb index 324269a968..54df0de913 100644 --- a/meta/recipes-core/musl/musl_git.bb +++ b/meta/recipes-core/musl/musl_git.bb @@ -76,7 +76,7 @@ FILES:${PN}-dev =+ "${libdir}/libcrypt.a ${libdir}/libdl.a ${libdir}/libm.a \ " RDEPENDS:${PN}-dev += "linux-libc-headers-dev bsd-headers-dev libssp-nonshared-staticdev" -RPROVIDES:${PN}-dev += "libc-dev virtual-libc-dev" +RPROVIDES:${PN}-dev += "libc-dev VIRTUAL-RUNTIME_libc-dev" RPROVIDES:${PN} += "ldd rtld(GNU_HASH)" LEAD_SONAME = "libc.so" diff --git a/meta/recipes-core/systemd/systemd-boot_255.1.bb b/meta/recipes-core/systemd/systemd-boot_255.1.bb index 4ee25ee72f..32495c883d 100644 --- a/meta/recipes-core/systemd/systemd-boot_255.1.bb +++ b/meta/recipes-core/systemd/systemd-boot_255.1.bb @@ -45,7 +45,7 @@ python __anonymous () { FILES:${PN} = "${EFI_FILES_PATH}/${SYSTEMD_BOOT_IMAGE}" -RDEPENDS:${PN} += "virtual-systemd-bootconf" +RDEPENDS:${PN} += "VIRTUAL-RUNTIME_systemd-bootconf" CFLAGS:append:libc-musl = " -D__DEFINED_wchar_t" diff --git a/meta/recipes-core/systemd/systemd-bootconf_1.00.bb b/meta/recipes-core/systemd/systemd-bootconf_1.00.bb index 19637546a9..5017b256e7 100644 --- a/meta/recipes-core/systemd/systemd-bootconf_1.00.bb +++ b/meta/recipes-core/systemd/systemd-bootconf_1.00.bb @@ -2,7 +2,7 @@ LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" SUMMARY = "Basic systemd-boot configuration files" -RPROVIDES:${PN} += "virtual-systemd-bootconf" +RPROVIDES:${PN} += "VIRTUAL-RUNTIME_systemd-bootconf" PACKAGE_ARCH = "${MACHINE_ARCH}" inherit systemd-boot-cfg