On Thu, 2021-02-25 at 15:30 +0000, [email protected] wrote: > From: Luca Boccassi <[email protected]> > > diff --git a/meta/recipes-core/util-linux/util-linux-uuid_2.36.2.bb > b/meta/recipes-core/util-linux/util-linux-uuid_2.36.2.bb > new file mode 100644 > index 0000000000..ffb2c87270 > --- /dev/null > +++ b/meta/recipes-core/util-linux/util-linux-uuid_2.36.2.bb > @@ -0,0 +1,22 @@ > [...] > +S = "${WORKDIR}/util-linux-${PV}" > +EXTRA_OECONF += "--disable-all-programs --enable-libuuid" > +DEBIAN_NOAUTONAME_util-linux-libuuid = "1" > +DEBIAN_NOAUTONAME_util-linux-libuuid-dev = "1" > +DEBIAN_NOAUTONAME_util-linux-libuuid-dbg = "1" > +PACKAGES = "util-linux-libuuid util-linux-libuuid-dev util-linux-libuuid-dbg" > +FILES_util-linux-libuuid = "${libdir}/libuuid.so.*" > +FILES_util-linux-libuuid-dev = "${libdir}/libuuid.so ${includedir} > ${libdir}/pkgconfig" > +FILES_util-linux-libuuid-dbg = "/usr/src ${libdir}/.debug" > + [...] > diff --git a/meta/recipes-core/util-linux/util-linux_2.36.2.bb > b/meta/recipes-core/util-linux/util-linux_2.36.2.bb > index 19950a2726..d4406695f6 100644 > --- a/meta/recipes-core/util-linux/util-linux_2.36.2.bb > +++ b/meta/recipes-core/util-linux/util-linux_2.36.2.bb > @@ -1,46 +1,8 @@ > [...] > > +RDEPENDS_${PN}_append += " util-linux-uuid" > +
I know this patch has caused a bit of confusion as it blew up in testing. I can't explain why you didn't see that but I did spot why its breaking. I've cut this email to the bare bones of the problem for clarity. In util-linux-uuid, you set PACKAGES as above with util-linux-libuuid. In util-linux, you set it to refer to a util-linux-uuid package which does not exist. It needs s/uuid/libuuid/. RDEPENDS refer to PACKAGES namespace so need to be consistent. Why the tools haven't been clearer about the issue, I don't know but that is no doubt causing many of the issues. Cheers, Richard
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#148909): https://lists.openembedded.org/g/openembedded-core/message/148909 Mute This Topic: https://lists.openembedded.org/mt/80904162/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
