[oe-commits] [meta-openembedded] 07/08: lvm2: Fix RDEPEND on lvm2 to lvm2-udevrules

git at git.openembedded.org git at git.openembedded.org
Sun Sep 8 19:05:07 UTC 2019


This is an automated email from the git hooks/post-receive script.

armin_kuster pushed a commit to branch warrior-next
in repository meta-openembedded.

commit 46951a90229d4ba21cdf9d9c0be88deaa1b3c9f2
Author: Arturo Buzarra <arturo.buzarra at digi.com>
AuthorDate: Mon Aug 5 10:24:12 2019 +0200

    lvm2: Fix RDEPEND on lvm2 to lvm2-udevrules
    
    Commit c6e963f9e ("lvm2: Add RDEPEND on lvm2 to lvm2-udevrules") added
    a package dependency due to lvm2-udevrules needs dmsetup, however
    dmsetup was moved to libdevmapper in commit 269d009a81d4 ("lvm2:
    libdevicemapper package needs udev rules and dmsetup"), so this
    dependency should be only for libdevmapper instead of the full package.
    
    With the current implementation, a package that has a dependency with
    lvm2-udev rules will include also many unnecessary packages like lvm2,
    lvm2-scripts, etc. and their dependencies.
    
    Signed-off-by: Arturo Buzarra <arturo.buzarra at digi.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-oe/recipes-support/lvm2/lvm2_2.03.02.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/lvm2/lvm2_2.03.02.bb b/meta-oe/recipes-support/lvm2/lvm2_2.03.02.bb
index e2ce95c..4ae0a62 100644
--- a/meta-oe/recipes-support/lvm2/lvm2_2.03.02.bb
+++ b/meta-oe/recipes-support/lvm2/lvm2_2.03.02.bb
@@ -50,7 +50,7 @@ FILES_${PN}-scripts = " \
 # Specified explicitly for the udev rules, just in case that it does not get picked
 # up automatically:
 FILES_${PN}-udevrules = "${nonarch_base_libdir}/udev/rules.d"
-RDEPENDS_${PN}-udevrules = "${PN}"
+RDEPENDS_${PN}-udevrules = "libdevmapper"
 RDEPENDS_${PN}_append_class-target = " libdevmapper"
 RDEPENDS_${PN}_append_class-nativesdk = " libdevmapper"
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list