All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 1/2] dbus-broker: remove deprecated linux-4-17 option
@ 2021-06-09 13:14 Luca Bocassi
  2021-06-09 13:14 ` [meta-oe][PATCH 2/2] dbus-broker: enforce required versions of libselinux and libaudit Luca Bocassi
  2021-06-09 16:51 ` [oe] [meta-oe][PATCH 1/2] dbus-broker: remove deprecated linux-4-17 option Andreas Müller
  0 siblings, 2 replies; 3+ messages in thread
From: Luca Bocassi @ 2021-06-09 13:14 UTC (permalink / raw)
  To: openembedded-devel

From: Luca Boccassi <luca.boccassi@microsoft.com>

Removed in v29

Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com>
---
 meta-oe/recipes-core/dbus/dbus-broker_29.bb | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta-oe/recipes-core/dbus/dbus-broker_29.bb b/meta-oe/recipes-core/dbus/dbus-broker_29.bb
index 49ba16911..c59809f53 100644
--- a/meta-oe/recipes-core/dbus/dbus-broker_29.bb
+++ b/meta-oe/recipes-core/dbus/dbus-broker_29.bb
@@ -29,5 +29,4 @@ FILES_${PN} += "${nonarch_libdir}/systemd/catalog"
 
 EXTRA_OEMESON += " -Dselinux=${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'true', 'false', d)}"
 EXTRA_OEMESON += " -Daudit=${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'true', 'false', d)}"
-EXTRA_OEMESON += " -Dlinux-4-17=true"
 
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-oe][PATCH 2/2] dbus-broker: enforce required versions of libselinux and libaudit
  2021-06-09 13:14 [meta-oe][PATCH 1/2] dbus-broker: remove deprecated linux-4-17 option Luca Bocassi
@ 2021-06-09 13:14 ` Luca Bocassi
  2021-06-09 16:51 ` [oe] [meta-oe][PATCH 1/2] dbus-broker: remove deprecated linux-4-17 option Andreas Müller
  1 sibling, 0 replies; 3+ messages in thread
From: Luca Bocassi @ 2021-06-09 13:14 UTC (permalink / raw)
  To: openembedded-devel

From: Luca Boccassi <luca.boccassi@microsoft.com>

v29 requires libselinux >= 3.2 and libaudit >= 3.0, set them as such
in DEPENDS

Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com>
---
 meta-oe/recipes-core/dbus/dbus-broker_29.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-core/dbus/dbus-broker_29.bb b/meta-oe/recipes-core/dbus/dbus-broker_29.bb
index c59809f53..8fcdb8c66 100644
--- a/meta-oe/recipes-core/dbus/dbus-broker_29.bb
+++ b/meta-oe/recipes-core/dbus/dbus-broker_29.bb
@@ -14,8 +14,8 @@ UPSTREAM_CHECK_URI = "https://github.com/bus1/${BPN}/releases"
 inherit meson pkgconfig systemd features_check
 
 DEPENDS = "expat systemd"
-DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'libselinux', '', d)}"
-DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'audit', '', d)}"
+DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'libselinux (>= 3.2)', '', d)}"
+DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'audit (>= 3.0)', '', d)}"
 
 RDEPENDS_${PN} += "dbus-common"
 
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [oe] [meta-oe][PATCH 1/2] dbus-broker: remove deprecated linux-4-17 option
  2021-06-09 13:14 [meta-oe][PATCH 1/2] dbus-broker: remove deprecated linux-4-17 option Luca Bocassi
  2021-06-09 13:14 ` [meta-oe][PATCH 2/2] dbus-broker: enforce required versions of libselinux and libaudit Luca Bocassi
@ 2021-06-09 16:51 ` Andreas Müller
  1 sibling, 0 replies; 3+ messages in thread
From: Andreas Müller @ 2021-06-09 16:51 UTC (permalink / raw)
  To: Luca Bocassi; +Cc: openembeded-devel

On Wed, Jun 9, 2021 at 3:15 PM Luca Bocassi <luca.boccassi@gmail.com> wrote:
>
> From: Luca Boccassi <luca.boccassi@microsoft.com>
>
> Removed in v29
I was sure to have looked for that. Looked again: The option is still
there but it was turned into a noop. So

Acked-by: Andreas Müller <schnitzeltony@gmail.com>
> Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com>
> ---
>  meta-oe/recipes-core/dbus/dbus-broker_29.bb | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/meta-oe/recipes-core/dbus/dbus-broker_29.bb b/meta-oe/recipes-core/dbus/dbus-broker_29.bb
> index 49ba16911..c59809f53 100644
> --- a/meta-oe/recipes-core/dbus/dbus-broker_29.bb
> +++ b/meta-oe/recipes-core/dbus/dbus-broker_29.bb
> @@ -29,5 +29,4 @@ FILES_${PN} += "${nonarch_libdir}/systemd/catalog"
>
>  EXTRA_OEMESON += " -Dselinux=${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'true', 'false', d)}"
>  EXTRA_OEMESON += " -Daudit=${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'true', 'false', d)}"
> -EXTRA_OEMESON += " -Dlinux-4-17=true"
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-09 16:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-09 13:14 [meta-oe][PATCH 1/2] dbus-broker: remove deprecated linux-4-17 option Luca Bocassi
2021-06-09 13:14 ` [meta-oe][PATCH 2/2] dbus-broker: enforce required versions of libselinux and libaudit Luca Bocassi
2021-06-09 16:51 ` [oe] [meta-oe][PATCH 1/2] dbus-broker: remove deprecated linux-4-17 option Andreas Müller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.