mirror of
https://git.yoctoproject.org/poky
synced 2026-04-17 18:32:12 +02:00
signing-keys: fix RDEPENDS to signing-keys-dev
Specific provider (ie. RPM or IPK) does "provide" just itself as a package to the system. This will cause the "-dev" package, which refers to the generic signing-keys and not the provider specific, to miss the dependency. Error case (RPM) when populating sdk: Error: Problem: conflicting requests - nothing provides signing-keys = 1.0-r0 needed by signing-keys-dev-1.0-r0.noarch (try to add '--skip-broken' to skip uninstallable packages) Examining signing-keys-rpm packages in PROVIDES we have indeed: signing-keys-rpm = 1.0-r0 But in signing-keys-dev: in REQUIRES: signing-keys-1.0-r0 This MR will fix the situation by removing the RDEPENDS for the -dev package (From OE-Core rev: ecdba906c3c8bc21e33b4a2651a762c40487149b) Signed-off-by: Federico Pellegrin <fede@evolware.org> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a51d3cb69a
commit
ffc3051d09
@@ -18,6 +18,8 @@ FILES:${PN}-rpm = "${sysconfdir}/pki/rpm-gpg"
|
||||
FILES:${PN}-ipk = "${sysconfdir}/pki/ipk-gpg"
|
||||
FILES:${PN}-packagefeed = "${sysconfdir}/pki/packagefeed-gpg"
|
||||
|
||||
RDEPENDS:${PN}-dev = ""
|
||||
|
||||
python do_get_public_keys () {
|
||||
from oe.gpg_sign import get_signer
|
||||
|
||||
|
||||
Reference in New Issue
Block a user