Re: [oe] [meta-oe][PATCH] ell: update to 0.6

2018-07-11 Thread Khem Raj
Hi Martin

This fails to build with musl targets with following error.

| In file included from ../git/ell/dhcp.c:30:
| 
/mnt/a/oe/build/tmp/work/core2-64-bec-linux-musl/ell/0.6-r0/recipe-sysroot/usr/include/linux/if_arp.h:116:8:
error: redefinition of 'struct arpreq'
|  struct arpreq {
| ^~
| In file included from
/mnt/a/oe/build/tmp/work/core2-64-bec-linux-musl/ell/0.6-r0/recipe-sysroot/usr/include/netinet/if_ether.h:118,
|  from
/mnt/a/oe/build/tmp/work/core2-64-bec-linux-musl/ell/0.6-r0/recipe-sysroot/usr/include/net/ethernet.h:10,
|  from ../git/ell/dhcp.c:28:
| 
/mnt/a/oe/build/tmp/work/core2-64-bec-linux-musl/ell/0.6-r0/recipe-sysroot/usr/include/net/if_arp.h:101:8:
note: originally defined here
|  struct arpreq {
| ^~
On Tue, Jul 10, 2018 at 3:01 PM Martin Hundebøll  wrote:
>
> Removed patch is upstreamed
>
> Signed-off-by: Martin Hundebøll 
> ---
>  .../0001-ell-fix-build-with-musl-libc.patch   | 39 ---
>  .../ell/{ell_0.4.bb => ell_0.6.bb}|  6 +--
>  2 files changed, 2 insertions(+), 43 deletions(-)
>  delete mode 100644 
> meta-oe/recipes-core/ell/ell/0001-ell-fix-build-with-musl-libc.patch
>  rename meta-oe/recipes-core/ell/{ell_0.4.bb => ell_0.6.bb} (64%)
>
> diff --git 
> a/meta-oe/recipes-core/ell/ell/0001-ell-fix-build-with-musl-libc.patch 
> b/meta-oe/recipes-core/ell/ell/0001-ell-fix-build-with-musl-libc.patch
> deleted file mode 100644
> index a172a93ca..0
> --- a/meta-oe/recipes-core/ell/ell/0001-ell-fix-build-with-musl-libc.patch
> +++ /dev/null
> @@ -1,39 +0,0 @@
> -From 4f8c68757b05d12392cd1a8aed174cb8e56f80e3 Mon Sep 17 00:00:00 2001
> -From: "Maxin B. John" 
> -Date: Thu, 5 Apr 2018 17:19:44 +0300
> -Subject: [PATCH] ell: fix build with musl libc
> -
> -musl libc doesn't implement TEMP_FAILURE_RETRY. Use the
> -TEMP_FAILURE_RETRY from glibc to fix build.
> -
> -Upstream-Status: Submitted 
> [https://lists.01.org/pipermail/ell/2018-April/001209.html]
> -
> -Signed-off-by: Maxin B. John 
> 
> - ell/dbus.h | 10 ++
> - 1 file changed, 10 insertions(+)
> -
> -diff --git a/ell/dbus.h b/ell/dbus.h
> -index a7c08d2..3ff5e0f 100644
>  a/ell/dbus.h
> -+++ b/ell/dbus.h
> -@@ -28,6 +28,16 @@
> - #include 
> - #include 
> -
> -+/* taken from glibc unistd.h for musl support */
> -+#ifndef TEMP_FAILURE_RETRY
> -+#define TEMP_FAILURE_RETRY(expression) \
> -+  (__extension__   \
> -+({ long int __result;  \
> -+   do __result = (long int) (expression);  \
> -+   while (__result == -1L && errno == EINTR);  \
> -+   __result; }))
> -+#endif
> -+
> - #ifdef __cplusplus
> - extern "C" {
> - #endif
> ---
> -2.4.0
> -
> diff --git a/meta-oe/recipes-core/ell/ell_0.4.bb 
> b/meta-oe/recipes-core/ell/ell_0.6.bb
> similarity index 64%
> rename from meta-oe/recipes-core/ell/ell_0.4.bb
> rename to meta-oe/recipes-core/ell/ell_0.6.bb
> index 1524bd6b9..8e7c88c52 100644
> --- a/meta-oe/recipes-core/ell/ell_0.4.bb
> +++ b/meta-oe/recipes-core/ell/ell_0.6.bb
> @@ -7,10 +7,8 @@ SECTION = "libs"
>  inherit autotools pkgconfig
>
>  S = "${WORKDIR}/git"
> -SRCREV = "b4aea06fabb2af1af01f861f8f394c75950b6d47"
> -SRC_URI = "git://git.kernel.org/pub/scm/libs/ell/ell.git \
> -   file://0001-ell-fix-build-with-musl-libc.patch \
> -  "
> +SRCREV = "59ff3160fe55a841e662f8776f0520f2038235f4"
> +SRC_URI = "git://git.kernel.org/pub/scm/libs/ell/ell.git"
>
>  do_configure_prepend () {
>  mkdir ${S}/build-aux
> --
> 2.18.0
>
> --
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] ell: update to 0.6

2018-07-10 Thread Martin Hundebøll
Removed patch is upstreamed

Signed-off-by: Martin Hundebøll 
---
 .../0001-ell-fix-build-with-musl-libc.patch   | 39 ---
 .../ell/{ell_0.4.bb => ell_0.6.bb}|  6 +--
 2 files changed, 2 insertions(+), 43 deletions(-)
 delete mode 100644 
meta-oe/recipes-core/ell/ell/0001-ell-fix-build-with-musl-libc.patch
 rename meta-oe/recipes-core/ell/{ell_0.4.bb => ell_0.6.bb} (64%)

diff --git 
a/meta-oe/recipes-core/ell/ell/0001-ell-fix-build-with-musl-libc.patch 
b/meta-oe/recipes-core/ell/ell/0001-ell-fix-build-with-musl-libc.patch
deleted file mode 100644
index a172a93ca..0
--- a/meta-oe/recipes-core/ell/ell/0001-ell-fix-build-with-musl-libc.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 4f8c68757b05d12392cd1a8aed174cb8e56f80e3 Mon Sep 17 00:00:00 2001
-From: "Maxin B. John" 
-Date: Thu, 5 Apr 2018 17:19:44 +0300
-Subject: [PATCH] ell: fix build with musl libc
-
-musl libc doesn't implement TEMP_FAILURE_RETRY. Use the
-TEMP_FAILURE_RETRY from glibc to fix build.
-
-Upstream-Status: Submitted 
[https://lists.01.org/pipermail/ell/2018-April/001209.html]
-
-Signed-off-by: Maxin B. John 

- ell/dbus.h | 10 ++
- 1 file changed, 10 insertions(+)
-
-diff --git a/ell/dbus.h b/ell/dbus.h
-index a7c08d2..3ff5e0f 100644
 a/ell/dbus.h
-+++ b/ell/dbus.h
-@@ -28,6 +28,16 @@
- #include 
- #include 
- 
-+/* taken from glibc unistd.h for musl support */
-+#ifndef TEMP_FAILURE_RETRY
-+#define TEMP_FAILURE_RETRY(expression) \
-+  (__extension__   \
-+({ long int __result;  \
-+   do __result = (long int) (expression);  \
-+   while (__result == -1L && errno == EINTR);  \
-+   __result; }))
-+#endif
-+
- #ifdef __cplusplus
- extern "C" {
- #endif
--- 
-2.4.0
-
diff --git a/meta-oe/recipes-core/ell/ell_0.4.bb 
b/meta-oe/recipes-core/ell/ell_0.6.bb
similarity index 64%
rename from meta-oe/recipes-core/ell/ell_0.4.bb
rename to meta-oe/recipes-core/ell/ell_0.6.bb
index 1524bd6b9..8e7c88c52 100644
--- a/meta-oe/recipes-core/ell/ell_0.4.bb
+++ b/meta-oe/recipes-core/ell/ell_0.6.bb
@@ -7,10 +7,8 @@ SECTION = "libs"
 inherit autotools pkgconfig
 
 S = "${WORKDIR}/git"
-SRCREV = "b4aea06fabb2af1af01f861f8f394c75950b6d47"
-SRC_URI = "git://git.kernel.org/pub/scm/libs/ell/ell.git \
-   file://0001-ell-fix-build-with-musl-libc.patch \
-  "
+SRCREV = "59ff3160fe55a841e662f8776f0520f2038235f4"
+SRC_URI = "git://git.kernel.org/pub/scm/libs/ell/ell.git"
 
 do_configure_prepend () {
 mkdir ${S}/build-aux
-- 
2.18.0

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel