All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] dbus-broker: update to 16
@ 2018-10-11 18:46 William A. Kennington III
  0 siblings, 0 replies; only message in thread
From: William A. Kennington III @ 2018-10-11 18:46 UTC (permalink / raw)
  To: openembedded-devel

Dropped the patches for version 13 as they are now included in the
upstream dbus-broker codebase.

Signed-off-by: William A. Kennington III <wak@google.com>
---
 ...de-sys-wait.h-for-WEXITED-definition.patch | 37 -------------------
 ...env-instead-of-secure_getenv-on-musl.patch | 29 ---------------
 meta-oe/recipes-core/dbus/dbus-broker_git.bb  |  9 ++---
 3 files changed, 3 insertions(+), 72 deletions(-)
 delete mode 100644 meta-oe/recipes-core/dbus/dbus-broker/0001-Include-sys-wait.h-for-WEXITED-definition.patch
 delete mode 100644 meta-oe/recipes-core/dbus/dbus-broker/0002-Use-getenv-instead-of-secure_getenv-on-musl.patch

diff --git a/meta-oe/recipes-core/dbus/dbus-broker/0001-Include-sys-wait.h-for-WEXITED-definition.patch b/meta-oe/recipes-core/dbus/dbus-broker/0001-Include-sys-wait.h-for-WEXITED-definition.patch
deleted file mode 100644
index 8b8be074f..000000000
--- a/meta-oe/recipes-core/dbus/dbus-broker/0001-Include-sys-wait.h-for-WEXITED-definition.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 99657fcbba288a843dc9e411bdfd3934b2074db5 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Thu, 28 Jun 2018 07:11:58 -0700
-Subject: [PATCH] Include sys/wait.h for WEXITED definition
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
-Upstream-Status: Submitted
-
- src/launch/main.c       | 1 +
- test/dbus/util-broker.c | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git a/src/launch/main.c b/src/launch/main.c
-index f335d6b..6475ae6 100644
---- a/src/launch/main.c
-+++ b/src/launch/main.c
-@@ -16,6 +16,7 @@
- #include <sys/socket.h>
- #include <sys/types.h>
- #include <sys/un.h>
-+#include <sys/wait.h>
- #include <systemd/sd-bus.h>
- #include <systemd/sd-daemon.h>
- #include <systemd/sd-event.h>
-diff --git a/test/dbus/util-broker.c b/test/dbus/util-broker.c
-index d9367ae..3bd021b 100644
---- a/test/dbus/util-broker.c
-+++ b/test/dbus/util-broker.c
-@@ -11,6 +11,7 @@
- #include <sys/socket.h>
- #include <sys/types.h>
- #include <sys/un.h>
-+#include <sys/wait.h>
- #include <systemd/sd-bus.h>
- #include <systemd/sd-event.h>
- #include "dbus/protocol.h"
diff --git a/meta-oe/recipes-core/dbus/dbus-broker/0002-Use-getenv-instead-of-secure_getenv-on-musl.patch b/meta-oe/recipes-core/dbus/dbus-broker/0002-Use-getenv-instead-of-secure_getenv-on-musl.patch
deleted file mode 100644
index bebd2145f..000000000
--- a/meta-oe/recipes-core/dbus/dbus-broker/0002-Use-getenv-instead-of-secure_getenv-on-musl.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 95a5541f8b75f7896ee6e5e71edd61838cab3c8b Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Thu, 28 Jun 2018 07:16:34 -0700
-Subject: [PATCH] Use getenv instead of secure_getenv on musl
-
-musl doesnt implement secure version
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
-Upstream-Status: Pending
-
- src/launch/main.c | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/src/launch/main.c b/src/launch/main.c
-index 6475ae6..6468d84 100644
---- a/src/launch/main.c
-+++ b/src/launch/main.c
-@@ -30,6 +30,10 @@
- #include "util/log.h"
- #include "util/misc.h"
- 
-+#ifndef __GLIBC__
-+#define secure_getenv getenv
-+#endif
-+
- typedef struct Manager Manager;
- typedef struct Service Service;
- 
diff --git a/meta-oe/recipes-core/dbus/dbus-broker_git.bb b/meta-oe/recipes-core/dbus/dbus-broker_git.bb
index 4a025cfeb..ac2c50063 100644
--- a/meta-oe/recipes-core/dbus/dbus-broker_git.bb
+++ b/meta-oe/recipes-core/dbus/dbus-broker_git.bb
@@ -8,13 +8,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=7b486c2338d225a1405d979ed2c15ce8"
 
 DEPENDS = "dbus glib-2.0 expat"
 
-PV = "13+git${SRCPV}"
-SRCREV = "1165025e26c3b46160402841dadf08d3d42f5cbb"
+PV = "16+git${SRCPV}"
+SRCREV = "fc874afa0992d0c75ec25acb43d344679f0ee7d2"
 
-SRC_URI = "git://github.com/bus1/dbus-broker;protocol=git \
-           file://0001-Include-sys-wait.h-for-WEXITED-definition.patch \
-           file://0002-Use-getenv-instead-of-secure_getenv-on-musl.patch \
-           "
+SRC_URI = "git://github.com/bus1/dbus-broker;protocol=git"
 
 S = "${WORKDIR}/git"
 
-- 
2.18.0



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-10-11 18:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-11 18:46 [meta-oe][PATCH] dbus-broker: update to 16 William A. Kennington III

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.