[oe] [meta-java][PATCH] xpp[23]: fix/remove bashism

2016-09-12 Thread Sujith H
From: Christopher Larson 

This was breaking on hosts with dash as /bin/sh.

Signed-off-by: Christopher Larson 
---
 recipes-core/xml-commons/xpp2_2.1.10.bb| 2 +-
 recipes-core/xml-commons/xpp3_1.1.3.4.O.bb | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-core/xml-commons/xpp2_2.1.10.bb 
b/recipes-core/xml-commons/xpp2_2.1.10.bb
index d3baca4..c926722 100644
--- a/recipes-core/xml-commons/xpp2_2.1.10.bb
+++ b/recipes-core/xml-commons/xpp2_2.1.10.bb
@@ -19,7 +19,7 @@ do_compile() {
 
 
sourcepath="src/java/drivers/jaxp11:src/java/drivers/sax2:src/java/impl/factory:src/java/impl/format:src/java/impl/node:src/java/impl/pullparser:src/java/impl/tag:src/java/intf"
 
-findpath="${sourcepath//:/ }"
+findpath="$(echo "$sourcepath" | tr : " ")"
 
 javac -sourcepath $sourcepath -d build-oe `find $findpath -name "*.java"`
 
diff --git a/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb 
b/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
index bedb8a9..f264022 100644
--- a/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
+++ b/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
@@ -19,7 +19,7 @@ do_compile() {
 mkdir -p build-oe
 
 
sourcepath="src/java/api:src/java/builder:src/java/dom2_builder:src/java/mxp1_min:src/java/mxp1_standard:src/java/parser_pool:src/java/sax2_driver:src/java/serializer_impl:src/java/util:src/java/wrapper"
-findpath="${sourcepath//:/ }"
+findpath="$(echo "$sourcepath" | tr : " ")"
 
 javac -sourcepath $sourcepath -d build-oe `find $findpath -name "*.java"`
 
-- 
1.9.1

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


[oe] [meta-filesystems][PATCH 2/2] xfsdump: 3.1.4 -> 3.1.6

2016-09-12 Thread Robert Yang
The 3.1.4 doesn't work with xfsprogs 4.7:
| inv_files.o: In function `inv_dirpath':
|xfsdump-3.1.4/invutil/inv_files.c:53: undefined reference to `ASSERT'
| inv_files.o: In function `inv_fstab':
|xfsdump-3.1.4/invutil/inv_files.c:60: undefined reference to `ASSERT'
| inv_files.o: In function `inv_lockfile':
|xfsdump-3.1.4/invutil/inv_files.c:67: undefined reference to `ASSERT'
| inv_files.o: In function `inv_basepath':
|xfsdump-3.1.4/invutil/inv_files.c:74: undefined reference to `ASSERT'
| collect2: error: ld returned 1 exit status
| make[2]: *** [../include/buildrules:33: xfsinvutil] Error 1

(LOCAL REV: NOT UPSTREAM) -- Sent to oe-devel on 20160912

Signed-off-by: Robert Yang 
---
 .../recipes-utils/xfsdump/xfsdump_3.1.4.bb | 36 --
 .../recipes-utils/xfsdump/xfsdump_3.1.6.bb | 36 ++
 2 files changed, 36 insertions(+), 36 deletions(-)
 delete mode 100644 meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.4.bb
 create mode 100644 meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.6.bb

diff --git a/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.4.bb 
b/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.4.bb
deleted file mode 100644
index 5fa5339..000
--- a/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.4.bb
+++ /dev/null
@@ -1,36 +0,0 @@
-SUMMARY = "XFS Filesystem Dump Utility"
-DESCRIPTION = "The xfsdump package contains xfsdump, xfsrestore and a \
-   number of other utilities for administering XFS filesystems.\
-   xfsdump examines files in a filesystem, determines which \
-   need to be backed up, and copies those files to a \
-   specified disk, tape or other storage medium."
-HOMEPAGE = "http://oss.sgi.com/projects/xfs";
-SECTION = "base"
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://doc/COPYING;md5=15c832894d10ddd00dfcf57bee490ecc"
-DEPENDS = "xfsprogs attr"
-
-SRC_URI = "ftp://oss.sgi.com/projects/xfs/cmd_tars/${BPN}-${PV}.tar.gz \
-file://remove-install-as-user.patch \
-"
-SRC_URI[md5sum] = "a8b1761be5feb363131e7b506639ad4c"
-SRC_URI[sha256sum] = 
"570eafd0721515bdd79cb0e295b701d49cdf81e71a0a0ff0df6d4c5cc1960943"
-
-inherit autotools-brokensep
-
-PARALLEL_MAKE = ""
-PACKAGECONFIG ??= ""
-PACKAGECONFIG[gettext] = "--enable-gettext=yes,--enable-gettext=no,gettext"
-
-EXTRA_OEMAKE += "'LIBTOOL=${HOST_SYS}-libtool' V=1"
-
-do_configure () {
-export DEBUG="-DNDEBUG"
-oe_runconf
-}
-
-do_install () {
-export DIST_ROOT=${D}
-oe_runmake install
-oe_runmake install-dev
-}
diff --git a/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.6.bb 
b/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.6.bb
new file mode 100644
index 000..fac9d47
--- /dev/null
+++ b/meta-filesystems/recipes-utils/xfsdump/xfsdump_3.1.6.bb
@@ -0,0 +1,36 @@
+SUMMARY = "XFS Filesystem Dump Utility"
+DESCRIPTION = "The xfsdump package contains xfsdump, xfsrestore and a \
+   number of other utilities for administering XFS filesystems.\
+   xfsdump examines files in a filesystem, determines which \
+   need to be backed up, and copies those files to a \
+   specified disk, tape or other storage medium."
+HOMEPAGE = "http://oss.sgi.com/projects/xfs";
+SECTION = "base"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://doc/COPYING;md5=15c832894d10ddd00dfcf57bee490ecc"
+DEPENDS = "xfsprogs attr"
+
+SRC_URI = "ftp://oss.sgi.com/projects/xfs/cmd_tars/${BPN}-${PV}.tar.gz \
+file://remove-install-as-user.patch \
+"
+SRC_URI[md5sum] = "50353cd4f4b435685955363e6044f4d1"
+SRC_URI[sha256sum] = 
"7f78c11ca527477d90e5e62b0778f3ad96f2b71c19173044e9aca9515fff42d0"
+
+inherit autotools-brokensep
+
+PARALLEL_MAKE = ""
+PACKAGECONFIG ??= ""
+PACKAGECONFIG[gettext] = "--enable-gettext=yes,--enable-gettext=no,gettext"
+
+EXTRA_OEMAKE += "'LIBTOOL=${HOST_SYS}-libtool' V=1"
+
+do_configure () {
+export DEBUG="-DNDEBUG"
+oe_runconf
+}
+
+do_install () {
+export DIST_ROOT=${D}
+oe_runmake install
+oe_runmake install-dev
+}
-- 
2.9.0

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


[oe] [meta-filesystems][PATCH 1/2] xfsprogs: 3.2.3 -> 4.7.0

2016-09-12 Thread Robert Yang
The 3.2.3 doesn't work with kernel 4.8 any more.

* Update remove-install-as-user.patch and 
xfsprogs-generate-crctable-which-is-moved-into-runti.patch
* Remove drop-configure-check-for-aio.patch which was for uclibc, and
  uclibc is not supported by oe-core any more.

(LOCAL REV: NOT UPSTREAM) -- Sent to oe-devel on 20160912

Signed-off-by: Robert Yang 
---
 .../files/drop-configure-check-for-aio.patch   | 93 --
 .../xfsprogs/files/remove-install-as-user.patch| 53 +---
 ...nerate-crctable-which-is-moved-into-runti.patch | 40 --
 .../recipes-utils/xfsprogs/xfsprogs_3.2.3.bb   | 52 
 .../recipes-utils/xfsprogs/xfsprogs_4.7.0.bb   | 51 
 5 files changed, 90 insertions(+), 199 deletions(-)
 delete mode 100644 
meta-filesystems/recipes-utils/xfsprogs/files/drop-configure-check-for-aio.patch
 delete mode 100644 meta-filesystems/recipes-utils/xfsprogs/xfsprogs_3.2.3.bb
 create mode 100644 meta-filesystems/recipes-utils/xfsprogs/xfsprogs_4.7.0.bb

diff --git 
a/meta-filesystems/recipes-utils/xfsprogs/files/drop-configure-check-for-aio.patch
 
b/meta-filesystems/recipes-utils/xfsprogs/files/drop-configure-check-for-aio.patch
deleted file mode 100644
index 7601095..000
--- 
a/meta-filesystems/recipes-utils/xfsprogs/files/drop-configure-check-for-aio.patch
+++ /dev/null
@@ -1,93 +0,0 @@
-xfsprogs: drop configure check for aio
-
-It's unused and breaks compilation with uclibc.
-
-Upstream-Status: Pending
-Signed-off-by: Hongxu Jia 

- configure.ac |  6 +++---
- m4/Makefile  |  1 -
- m4/package_aiodev.m4 | 36 
- 3 files changed, 3 insertions(+), 40 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index b968977..4e2a263 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -47,6 +47,9 @@ AC_ARG_ENABLE(lib64,
-   enable_lib64=yes)
- AC_SUBST(enable_lib64)
- 
-+librt="-lrt"
-+AC_SUBST(librt)
-+
- #
- # If the user specified a libdir ending in lib64 do not append another
- # 64 to the library names.
-@@ -92,9 +95,6 @@ AC_PACKAGE_GLOBALS(xfsprogs)
- AC_PACKAGE_UTILITIES(xfsprogs)
- AC_MULTILIB($enable_lib64)
- 
--AC_PACKAGE_NEED_AIO_H
--AC_PACKAGE_NEED_LIO_LISTIO
--
- AC_PACKAGE_NEED_UUID_H
- AC_PACKAGE_NEED_UUIDCOMPARE
- 
-diff --git a/m4/Makefile b/m4/Makefile
-index 654a4fb..d282f0a 100644
 a/m4/Makefile
-+++ b/m4/Makefile
-@@ -14,7 +14,6 @@ CONFIGURE = \
- 
- LSRCFILES = \
-   manual_format.m4 \
--  package_aiodev.m4 \
-   package_blkid.m4 \
-   package_globals.m4 \
-   package_libcdev.m4 \
-diff --git a/m4/package_aiodev.m4 b/m4/package_aiodev.m4
-index 490d9c8..8b13789 100644
 a/m4/package_aiodev.m4
-+++ b/m4/package_aiodev.m4
-@@ -1,37 +1 @@
--#
--# Check if we have a libaio.h installed
--#
--AC_DEFUN([AC_PACKAGE_WANT_AIO],
--  [ AC_CHECK_HEADERS(libaio.h, [ have_aio=true ], [ have_aio=false ])
--AC_SUBST(have_aio)
--  ])
--
--#
--# Check if we have an aio.h installed
--#
--AC_DEFUN([AC_PACKAGE_NEED_AIO_H],
--  [ AC_CHECK_HEADERS(aio.h)
--if test $ac_cv_header_aio_h = no; then
--  echo
--  echo 'FATAL ERROR: could not find a valid  header.'
--  exit 1
--fi
--  ])
--
--#
--# Check if we have the lio_listio routine in either libc/librt
--#
--AC_DEFUN([AC_PACKAGE_NEED_LIO_LISTIO],
--  [ AC_CHECK_FUNCS(lio_listio)
--if test $ac_cv_func_lio_listio = yes; then
--  librt=""
--else
--  AC_CHECK_LIB(rt, lio_listio,, [
--  echo
--  echo 'FATAL ERROR: could not find a library with lio_listio.'
--  exit 1],[-lpthread])
--  librt="-lrt"
--fi
--AC_SUBST(librt)
--  ])
- 
--- 
-1.8.1.2
-
diff --git 
a/meta-filesystems/recipes-utils/xfsprogs/files/remove-install-as-user.patch 
b/meta-filesystems/recipes-utils/xfsprogs/files/remove-install-as-user.patch
index e761db3..43eacd4 100644
--- a/meta-filesystems/recipes-utils/xfsprogs/files/remove-install-as-user.patch
+++ b/meta-filesystems/recipes-utils/xfsprogs/files/remove-install-as-user.patch
@@ -5,11 +5,10 @@ Upstream-Status: Inappropriate [configuration]
 Signed-off-by: Hongxu Jia 
 ---
  include/buildmacros |  2 +-
- include/install-sh  | 95 -
- 2 files changed, 14 insertions(+), 83 deletions(-)
+ include/install-sh  | 88 
+---
+ 2 files changed, 14 insertions(+), 76 deletions(-)
 
 diff --git a/include/buildmacros b/include/buildmacros
-index 7a01880..0840d55 100644
 --- a/include/buildmacros
 +++ b/include/buildmacros
 @@ -30,7 +30,7 @@ OBJECTS = $(ASFILES:.s=.o) \
@@ -22,7 +21,6 @@ index 7a01880..0840d55 100644
  IMAGES_DIR = $(TOPDIR)/all-images
  DIST_DIR = $(TOPDIR)/dist
 diff --git a/include/install-sh b/include/install-sh
-index c952a71..b9d66f7 100755
 --- a/include/install-sh
 +++ b/include/install-sh
 @@ -24,11 +24,11 @

Re: [oe] [meta-oe][PATCH] xfsprogs: blacklist, needs upgrade to stay compatible with default kernel

2016-09-12 Thread Robert Yang


Hi Martin,

I sent an upgrade for xfsprogs just now:

[oe] [meta-filesystems][PATCH 1/2] xfsprogs: 3.2.3 -> 4.7.0

// Robert

On 09/11/2016 03:37 PM, Martin Jansa wrote:

Signed-off-by: Martin Jansa 
---
 meta-filesystems/recipes-utils/xfsprogs/xfsprogs_3.2.3.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-filesystems/recipes-utils/xfsprogs/xfsprogs_3.2.3.bb 
b/meta-filesystems/recipes-utils/xfsprogs/xfsprogs_3.2.3.bb
index f38239c..460a898 100644
--- a/meta-filesystems/recipes-utils/xfsprogs/xfsprogs_3.2.3.bb
+++ b/meta-filesystems/recipes-utils/xfsprogs/xfsprogs_3.2.3.bb
@@ -50,3 +50,6 @@ do_install () {
 # needed for xfsdump
 oe_runmake install-dev
 }
+
+# http://errors.yoctoproject.org/Errors/Details/83236/
+PNBLACKLIST[xfsprogs] ?= "BROKEN: Needs upgrade to 4.5.0 version to be compatible 
with Kernel uapi changes from 4.5"


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


[oe] [meta-oe][PATCH] krb5: upgrade to 1.13.6

2016-09-12 Thread wenzong.fan
From: Wenzong Fan 

* fix CVEs: CVE-2015-8629, CVE-2015-8630, CVE-2015-8631

* update LIC_FILES_CHKSUM, only Copyright changed in NOTICE file:

  -Copyright (C) 1985-2015 by the Massachusetts Institute of Technology.
  +Copyright (C) 1985-2016 by the Massachusetts Institute of Technology.

* remove useless functions: krb5_do_unpack(), do_unpack()

* remove patches that included by new release:
  - 0001-Work-around-uninitialized-warning-in-cc_kcm.c.patch
  - Fix-SPNEGO-context-aliasing-bugs-CVE-2015-2695.patch
  - Fix-IAKERB-context-aliasing-bugs-CVE-2015-2696.patch
  - Fix-build_principal-memory-bug-CVE-2015-2697.patch
  - Fix-IAKERB-context-export-import-CVE-2015-2698.patch
  - krb5-CVE-2016-3119.patch
  - krb5-CVE-2016-3120.patch

Signed-off-by: Wenzong Fan 
---
 ...-around-uninitialized-warning-in-cc_kcm.c.patch |  37 --
 ...AKERB-context-aliasing-bugs-CVE-2015-2696.patch | 739 -
 ...AKERB-context-export-import-CVE-2015-2698.patch | 134 
 ...PNEGO-context-aliasing-bugs-CVE-2015-2695.patch | 572 
 ...-build_principal-memory-bug-CVE-2015-2697.patch |  58 --
 .../krb5/krb5/krb5-CVE-2016-3119.patch |  36 -
 .../krb5/krb5/krb5-CVE-2016-3120.patch |  63 --
 .../krb5/{krb5_1.13.2.bb => krb5_1.13.6.bb}|  25 +-
 8 files changed, 4 insertions(+), 1660 deletions(-)
 delete mode 100644 
meta-oe/recipes-connectivity/krb5/krb5/0001-Work-around-uninitialized-warning-in-cc_kcm.c.patch
 delete mode 100644 
meta-oe/recipes-connectivity/krb5/krb5/Fix-IAKERB-context-aliasing-bugs-CVE-2015-2696.patch
 delete mode 100644 
meta-oe/recipes-connectivity/krb5/krb5/Fix-IAKERB-context-export-import-CVE-2015-2698.patch
 delete mode 100644 
meta-oe/recipes-connectivity/krb5/krb5/Fix-SPNEGO-context-aliasing-bugs-CVE-2015-2695.patch
 delete mode 100644 
meta-oe/recipes-connectivity/krb5/krb5/Fix-build_principal-memory-bug-CVE-2015-2697.patch
 delete mode 100644 
meta-oe/recipes-connectivity/krb5/krb5/krb5-CVE-2016-3119.patch
 delete mode 100644 
meta-oe/recipes-connectivity/krb5/krb5/krb5-CVE-2016-3120.patch
 rename meta-oe/recipes-connectivity/krb5/{krb5_1.13.2.bb => krb5_1.13.6.bb} 
(79%)

diff --git 
a/meta-oe/recipes-connectivity/krb5/krb5/0001-Work-around-uninitialized-warning-in-cc_kcm.c.patch
 
b/meta-oe/recipes-connectivity/krb5/krb5/0001-Work-around-uninitialized-warning-in-cc_kcm.c.patch
deleted file mode 100644
index c6731a9..000
--- 
a/meta-oe/recipes-connectivity/krb5/krb5/0001-Work-around-uninitialized-warning-in-cc_kcm.c.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From f1b681a44d28946e6d8fc0080f3efe94228d7dfe Mon Sep 17 00:00:00 2001
-From: Tom Yu 
-Date: Wed, 6 Jan 2016 15:24:16 -0500
-Subject: [PATCH] Work around uninitialized warning in cc_kcm.c
-
-Some versions of clang erroneously detect use of an uninitialized
-variable reply_len in kcmio_call() when building on non-Mac platforms.
-Initialize it to work around this warning.
-
-(cherry picked from commit 40b007c0d8e2a12c6f4205ac111dee731c9d970c)
-
-ticket: 8335
-version_fixed: 1.13.4
-tags: -pullup
-status: resolved
-
-Upstream-Status: backport

- src/lib/krb5/ccache/cc_kcm.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/lib/krb5/ccache/cc_kcm.c b/src/lib/krb5/ccache/cc_kcm.c
-index b763ea4..6337b57 100644
 a/src/lib/krb5/ccache/cc_kcm.c
-+++ b/src/lib/krb5/ccache/cc_kcm.c
-@@ -377,7 +377,7 @@ static krb5_error_code
- kcmio_call(krb5_context context, struct kcmio *io, struct kcmreq *req)
- {
- krb5_error_code ret;
--size_t reply_len;
-+size_t reply_len = 0;
- 
- if (k5_buf_status(&req->reqbuf) != 0)
- return ENOMEM;
--- 
-2.8.2
-
diff --git 
a/meta-oe/recipes-connectivity/krb5/krb5/Fix-IAKERB-context-aliasing-bugs-CVE-2015-2696.patch
 
b/meta-oe/recipes-connectivity/krb5/krb5/Fix-IAKERB-context-aliasing-bugs-CVE-2015-2696.patch
deleted file mode 100644
index b771b41..000
--- 
a/meta-oe/recipes-connectivity/krb5/krb5/Fix-IAKERB-context-aliasing-bugs-CVE-2015-2696.patch
+++ /dev/null
@@ -1,739 +0,0 @@
-From f6e57c402688f4bc386d1a39512657a30f0bafd3 Mon Sep 17 00:00:00 2001
-From: Nicolas Williams 
-Date: Mon, 14 Sep 2015 12:28:36 -0400
-Subject: [PATCH 2/4] Fix IAKERB context aliasing bugs [CVE-2015-2696]
-
-The IAKERB mechanism currently replaces its context handle with the
-krb5 mechanism handle upon establishment, under the assumption that
-most GSS functions are only called after context establishment.  This
-assumption is incorrect, and can lead to aliasing violations for some
-programs.  Maintain the IAKERB context structure after context
-establishment and add new IAKERB entry points to refer to it with that
-type.  Add initiate and established flags to the IAKERB context
-structure for use in gss_inquire_context() prior to context
-establishment.
-
-CVE-2015-2696:
-
-In MIT krb5 1.9 and later, applications which call
-gss_inquire_context() on a partially-established IAKERB context can
-cause the GSS-API library to read from a p

Re: [oe] [meta-java][PATCH] xpp[23]: fix/remove bashism

2016-09-12 Thread sujith h
Hi,

Hope the patch looks ok. Else do let me know I can work on the same.

Thanks,
Sujith H

On Mon, Sep 12, 2016 at 1:44 PM, Sujith H  wrote:

> From: Christopher Larson 
>
> This was breaking on hosts with dash as /bin/sh.
>
> Signed-off-by: Christopher Larson 
> ---
>  recipes-core/xml-commons/xpp2_2.1.10.bb| 2 +-
>  recipes-core/xml-commons/xpp3_1.1.3.4.O.bb | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/recipes-core/xml-commons/xpp2_2.1.10.bb
> b/recipes-core/xml-commons/xpp2_2.1.10.bb
> index d3baca4..c926722 100644
> --- a/recipes-core/xml-commons/xpp2_2.1.10.bb
> +++ b/recipes-core/xml-commons/xpp2_2.1.10.bb
> @@ -19,7 +19,7 @@ do_compile() {
>
>  sourcepath="src/java/drivers/jaxp11:src/java/drivers/sax2:
> src/java/impl/factory:src/java/impl/format:src/java/
> impl/node:src/java/impl/pullparser:src/java/impl/tag:src/java/intf"
>
> -findpath="${sourcepath//:/ }"
> +findpath="$(echo "$sourcepath" | tr : " ")"
>
>  javac -sourcepath $sourcepath -d build-oe `find $findpath -name
> "*.java"`
>
> diff --git a/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
> b/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
> index bedb8a9..f264022 100644
> --- a/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
> +++ b/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
> @@ -19,7 +19,7 @@ do_compile() {
>  mkdir -p build-oe
>
>  sourcepath="src/java/api:src/java/builder:src/java/dom2_
> builder:src/java/mxp1_min:src/java/mxp1_standard:src/java/
> parser_pool:src/java/sax2_driver:src/java/serializer_
> impl:src/java/util:src/java/wrapper"
> -findpath="${sourcepath//:/ }"
> +findpath="$(echo "$sourcepath" | tr : " ")"
>
>  javac -sourcepath $sourcepath -d build-oe `find $findpath -name
> "*.java"`
>
> --
> 1.9.1
>
>


-- 
സുജിത് ഹരിദാസന്
Bangalore
Contributor to KDE project
Contributor to Yocto project
http://fci.wikia.com/wiki/Anti-DRM-Campaign
 http://sujithh.info
C-x C-c
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe] [PATCH v2] geoclue: Update to 2.4.4

2016-09-12 Thread Zeeshan Ali
From: Zeeshan Ali 

Also drop redundant and now unusable patch.

Signed-off-by: Zeeshan Ali 
---
 .../geoclue/files/soup-session-fix.patch   | 30 
 .../recipes-navigation/geoclue/geoclue_2.0.0.bb| 33 --
 .../recipes-navigation/geoclue/geoclue_2.4.4.bb| 53 ++
 3 files changed, 53 insertions(+), 63 deletions(-)
 delete mode 100644 
meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch
 delete mode 100644 meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb
 create mode 100644 meta-oe/recipes-navigation/geoclue/geoclue_2.4.4.bb

diff --git a/meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch 
b/meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch
deleted file mode 100644
index 70fe3f5..000
--- a/meta-oe/recipes-navigation/geoclue/files/soup-session-fix.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Upstream-Status: Upstream-Status: Inappropriate [poky 9.0 has older libsoup]
-
-Signed-off-by: Felipe F. Tonello 
-
-diff --git a/src/gclue-ipclient.c b/src/gclue-ipclient.c
-index 09add30..1771d5c 100644
 a/src/gclue-ipclient.c
-+++ b/src/gclue-ipclient.c
-@@ -83,7 +83,7 @@ gclue_ipclient_init (GClueIpclient *ipclient)
- {
- ipclient->priv = G_TYPE_INSTANCE_GET_PRIVATE ((ipclient), 
GCLUE_TYPE_IPCLIENT, GClueIpclientPrivate);
- 
--ipclient->priv->soup_session = soup_session_new ();
-+ipclient->priv->soup_session = soup_session_sync_new ();
- }
- 
- /**
-diff --git a/src/geoip-server/geoip-update.c b/src/geoip-server/geoip-update.c
-index 6cce7b2..ef672ba 100644
 a/src/geoip-server/geoip-update.c
-+++ b/src/geoip-server/geoip-update.c
-@@ -214,7 +214,7 @@ main (int argc, char **argv)
- path = GEOIP_DATABASE_PATH;
- }
- 
--session = soup_session_new ();
-+session = soup_session_sync_new ();
- 
- for (i = 0; i < G_N_ELEMENTS (db_info_map); i++) {
- SoupMessage *msg = NULL;
diff --git a/meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb 
b/meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb
deleted file mode 100644
index 90e8533..000
--- a/meta-oe/recipes-navigation/geoclue/geoclue_2.0.0.bb
+++ /dev/null
@@ -1,33 +0,0 @@
-SUMMARY = "The Geolocation Service"
-DESCRIPTION = "Geoclue is a D-Bus service that provides location information. \
-The primary goal of the Geoclue project is to make creating location-aware 
applications \
-as simple as possible, while the secondary goal is to ensure that no 
application \
-can access location information without explicit permission from user."
-LICENSE = "GPLv2.0+"
-SECTION = "console/network"
-
-LIC_FILES_CHKSUM = "file://COPYING;md5=8114b83a0435d8136b47bd70111ce5cd"
-
-DEPENDS = "glib-2.0 dbus dbus-glib json-glib libsoup-2.4 intltool-native"
-
-inherit autotools pkgconfig gtk-doc
-
-SRC_URI = " \
-
http://www.freedesktop.org/software/geoclue/releases/2.0/geoclue-${PV}.tar.xz \
-file://soup-session-fix.patch \
-"
-
-SRC_URI[md5sum] = "401ff99d530b177c62afacef0a33efd9"
-SRC_URI[sha256sum] = 
"4a82f184e55a163d86e0ad69bbe1bba9960bb5094220fe1f01350bceda8c67a1"
-
-PACKAGECONFIG[geoip] = "--enable-geoip-server,--disable-geoip-server,geoip"
-
-EXTRA_OECONF += " \
---with-dbus-service-user=root \
---with-dbus-sys-dir=${sysconfdir}/dbus-1/system.d \
-"
-
-FILES_${PN} += " \
-${datadir}/dbus-1/system-services/org.freedesktop.GeoClue2.service \
-${datadir}/geoclue-2.0/geoclue-interface.xml \
-"
diff --git a/meta-oe/recipes-navigation/geoclue/geoclue_2.4.4.bb 
b/meta-oe/recipes-navigation/geoclue/geoclue_2.4.4.bb
new file mode 100644
index 000..3170d44
--- /dev/null
+++ b/meta-oe/recipes-navigation/geoclue/geoclue_2.4.4.bb
@@ -0,0 +1,53 @@
+SUMMARY = "The Geolocation Service"
+DESCRIPTION = "Geoclue is a D-Bus service that provides location information. \
+The primary goal of the Geoclue project is to make creating location-aware 
applications \
+as simple as possible, while the secondary goal is to ensure that no 
application \
+can access location information without explicit permission from user."
+LICENSE = "GPLv2.0+"
+SECTION = "console/network"
+
+LIC_FILES_CHKSUM = "file://COPYING;md5=8114b83a0435d8136b47bd70111ce5cd"
+
+DEPENDS = "glib-2.0 dbus json-glib libsoup-2.4 intltool-native"
+
+inherit autotools pkgconfig gtk-doc
+
+SRC_URI = " \
+
http://www.freedesktop.org/software/geoclue/releases/2.4/geoclue-${PV}.tar.xz \
+"
+
+SRC_URI[md5sum] = "d2a5b05f4bad032673fe23afbce27926"
+SRC_URI[sha256sum] = 
"9c43fb9d0c12067ea64400500abb0640194947d4c2c55e38545afe5d9c5c315c"
+
+export BUILD_SYS
+export HOST_SYS
+export STAGING_INCDIR
+export STAGING_LIBDIR
+
+# Without this line, package is delcared a library and named libgeoclue*
+AUTO_LIBNAME_PKGS = ""
+
+PACKAGECONFIG ??= "3g modem-gps cdma nmea lib"
+PACKAGECONFIG[3g] = "--enable-3g-source,--disable-3g-source,modemmanager"
+PACKAGECONFIG[modem-gps] = 
"--enable-modem-gps-source,--disable-modem-gps-source,modemmanag

Re: [oe] [meta-java][PATCH] xpp[23]: fix/remove bashism

2016-09-12 Thread Maxin B. John
Hi Sujith,

On Mon, Sep 12, 2016 at 03:17:34PM +0530, sujith h wrote:
> Hi,
> 
> Hope the patch looks ok. Else do let me know I can work on the same.

Yes, it looks good. Pushed to master.

> Thanks,
> Sujith H

Best Regards,
Maxin

> On Mon, Sep 12, 2016 at 1:44 PM, Sujith H  wrote:
> 
> > From: Christopher Larson 
> >
> > This was breaking on hosts with dash as /bin/sh.
> >
> > Signed-off-by: Christopher Larson 
> > ---
> >  recipes-core/xml-commons/xpp2_2.1.10.bb| 2 +-
> >  recipes-core/xml-commons/xpp3_1.1.3.4.O.bb | 2 +-
> >  2 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/recipes-core/xml-commons/xpp2_2.1.10.bb
> > b/recipes-core/xml-commons/xpp2_2.1.10.bb
> > index d3baca4..c926722 100644
> > --- a/recipes-core/xml-commons/xpp2_2.1.10.bb
> > +++ b/recipes-core/xml-commons/xpp2_2.1.10.bb
> > @@ -19,7 +19,7 @@ do_compile() {
> >
> >  sourcepath="src/java/drivers/jaxp11:src/java/drivers/sax2:
> > src/java/impl/factory:src/java/impl/format:src/java/
> > impl/node:src/java/impl/pullparser:src/java/impl/tag:src/java/intf"
> >
> > -findpath="${sourcepath//:/ }"
> > +findpath="$(echo "$sourcepath" | tr : " ")"
> >
> >  javac -sourcepath $sourcepath -d build-oe `find $findpath -name
> > "*.java"`
> >
> > diff --git a/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
> > b/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
> > index bedb8a9..f264022 100644
> > --- a/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
> > +++ b/recipes-core/xml-commons/xpp3_1.1.3.4.O.bb
> > @@ -19,7 +19,7 @@ do_compile() {
> >  mkdir -p build-oe
> >
> >  sourcepath="src/java/api:src/java/builder:src/java/dom2_
> > builder:src/java/mxp1_min:src/java/mxp1_standard:src/java/
> > parser_pool:src/java/sax2_driver:src/java/serializer_
> > impl:src/java/util:src/java/wrapper"
> > -findpath="${sourcepath//:/ }"
> > +findpath="$(echo "$sourcepath" | tr : " ")"
> >
> >  javac -sourcepath $sourcepath -d build-oe `find $findpath -name
> > "*.java"`
> >
> > --
> > 1.9.1
> >
> >
> 
> 
> -- 
> സുജിത് ഹരിദാസന്
> Bangalore
> Contributor to KDE project
> Contributor to Yocto project
> http://fci.wikia.com/wiki/Anti-DRM-Campaign
>  http://sujithh.info
> C-x C-c
> -- 
> ___
> 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


Re: [oe] [meta-networking][PATCH 2/2 v2] samba: restrict the blacklist to ARM only

2016-09-12 Thread Mark Asselstine
On Sunday, September 11, 2016 9:26:44 PM EDT Huang, Jie (Jackie) wrote:
> > -Original Message-
> > From: openembedded-devel-boun...@lists.openembedded.org
> > [mailto:openembedded-devel- boun...@lists.openembedded.org] On Behalf Of
> > Joe MacDonald
> > Sent: Saturday, September 10, 2016 8:35 AM
> > To: openembedded-devel@lists.openembedded.org
> > Subject: Re: [oe] [meta-networking][PATCH 2/2 v2] samba: restrict the
> > blacklist to ARM only
> > 
> > [Re: [oe] [meta-networking][PATCH 2/2 v2] samba: restrict the blacklist to
> > ARM only] On 16.09.10 (Sat> 
> > 00:03) Andreas Müller wrote:
> > > On Fri, Sep 9, 2016 at 10:44 PM, Joe MacDonald 
 wrote:
> > > > [[oe] [meta-networking][PATCH 2/2 v2] samba: restrict the blacklist to
> > > > ARM only] On 16.09.09 (Fri> 
> > 10:34) jackie.hu...@windriver.com wrote:
> > > >> From: Jackie Huang 
> > > >> 
> > > >> It builds fine except for arm now, and the do_package
> > > >> and libpam issue is fixed by:
> > > >> "waf-samba.bbclass: Add PACKAGECONFIG_CONFARGS to CONFIGUREOPTS"
> > > > 
> > > > Did you confirm that you're still seeing the failure for arm?
> > > > 
> > > > -J.
> > > > 
> > > >> Signed-off-by: Jackie Huang 
> > > >> ---
> > > >> 
> > > >>  meta-networking/recipes-connectivity/samba/samba_4.4.5.bb | 6 +++---
> > > >>  1 file changed, 3 insertions(+), 3 deletions(-)
> > > >> 
> > > >> diff --git
> > > >> a/meta-networking/recipes-connectivity/samba/samba_4.4.5.bb b/meta-> 
> > networking/recipes-connectivity/samba/samba_4.4.5.bb
> > 
> > > >> index 042203e..c34adcb 100644
> > > >> --- a/meta-networking/recipes-connectivity/samba/samba_4.4.5.bb
> > > >> +++ b/meta-networking/recipes-connectivity/samba/samba_4.4.5.bb
> > > >> @@ -319,6 +319,6 @@ RDEPENDS_${PN}-pidl_append = " perl"
> > > >> 
> > > >>  FILES_${PN}-pidl = "${bindir}/pidl ${datadir}/perl5/Parse"
> > > >>  
> > > >>  # http://errors.yoctoproject.org/Errors/Details/81004/
> > > >> 
> > > >> -# before this issue it was also failing in do_package and
> > > >> -# autodetecting libpam dependency
> > > >> -PNBLACKLIST[samba] ?= "BROKEN: fails to build with new
> > > >> binutils-2.27"
> > > >> +BLACKLIST_REASON ?= ""
> > > >> +BLACKLIST_REASON_arm = "BROKEN: fails to build with new
> > > >> binutils-2.27"
> > > >> +PNBLACKLIST[samba] ?= "${BLACKLIST_REASON}"
> > > >> --
> > > >> 2.8.3
> > > > 
> > > > --
> > > > -Joe MacDonald.
> > > > 
> > > > :wq
> > > 
> > > Did you see [1] - it fixes build for arm.
> > > 
> > > [1] http://lists.openembedded.org/pipermail/openembedded-devel/2016-> > 
> > September/108972.html
> > 
> > I didn't, actually, but I had picked it up in my tree anyway when I
> > scooped up the latest set of changes in master-next.  The reason I was
> > asking was because I wasn't seeing a failure anymore in samba on arm and
> > was curious why Jackie was still seeing it if I wasn't and I hadn't seen
> 
> Actually I never see the failure in:
> http://errors.yoctoproject.org/Errors/Details/81004/
> 
> and I didn't notice Andreas' patch, I was fixing another issue but Mark
> asked me to include the restrict on ARM, please see:
> 
> https://patchwork.openembedded.org/patch/131249/
> 
> so I thought at least Mark was still seeing this and sent this patch.
> 
> Mark, could you confirm that you're still seeing the failure for arm?

I was never able to reproduce the issue but was working on the assumption that 
it was still a real issue, and thus the need to continue to blacklist ARM. if 
the issue no longer exists then the proper thing to do would be to remove the 
blacklist entry and in the commit log which does this, identify what changed 
to remedy the situation. 

Mark


> 
> Thanks,
> Jackie
> 
> > an explicit patch to resolve the issue.  But there it is, mystery
> > solved.  Thanks for the heads-up, Andreas.
> > 
> > --
> > -Joe MacDonald.
> > 
> > :wq


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


Re: [oe] [yocto] problem with openCV

2016-09-12 Thread Philip Balister
On 09/12/2016 12:00 AM, Szymon Guza wrote:
> Do you have any tips for me? Where should I search those patches? Or where
> I can find recipes for more recent version? Or Can you tell me if there is
> 1.0 version for openCV available for Yocto?

Use the layer index to find recipes for opencv.

Use google to find upstream opencv project and read about it.

Philip

> 
> 2016-09-11 22:20 GMT+02:00 Philip Balister :
> 
>> On 09/11/2016 02:10 PM, Szymon Guza wrote:
>>> Hello,
>>>
>>> I want to create my own yocto disto image based on core-image-weston with
>>> C/C++ compliers and openCV. But when I'm trying to bitbake openCV error
>>> appears:
>>>
>>> | -- Configuring incomplete, errors occurred!
>>> | See also "/home/admin/Zynq/poky/build/tmp/work/i586-poky-linux/
>>> opencv/3.1+gitAUTOINC+92387b1ef8-r0/build/CMakeFiles/CMakeOutput.log".
>>> | See also "/home/admin/Zynq/poky/build/tmp/work/i586-poky-linux/
>>> opencv/3.1+gitAUTOINC+92387b1ef8-r0/build/CMakeFiles/CMakeError.log".
>>> | WARNING: exit code 1 from a shell command.
>>> | ERROR: Function failed: do_configure (log file is located at
>>> /home/admin/Zynq/poky/build/tmp/work/i586-poky-linux/
>> opencv/3.1+gitAUTOINC+
>>> 92387b1ef8-r0/temp/log.do_configure.7661)
>>> ERROR: Task 278 (/home/admin/Zynq/poky/meta-
>> openembedded/meta-oe/recipes-
>>> support/opencv/opencv_3.1.bb, do_configure) failed with exit code '1'
>>>
>>> It is connected with this:
>>>
>>> This recipe is *blacklisted* by the meta-oe
>>> >>
>>> layer. The reason provided is:
>>>
>>> BROKEN: fails to build with gcc-6
>>
>> This is telling you you need to update the recipe by finding or writing
>> patches so the opencv builds with gcc6. Try looking for a more recent
>> version of opencv and/or patches to address the compile problems.
>>
>> Philip
>>
>> Philip
>>
>>>
>>> ??
>>> Am I right or openCV is now unavailable? Or Am i doing something wrong?
>>> I am looking forward to hearing from you.
>>>
>> --
>> ___
>> 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


Re: [oe] [yocto] Subjects for YP Developer Day at ELCE

2016-09-12 Thread William Mills


On 09/09/2016 11:51 AM, Jeff Osier-Mixon wrote:

Hi all - we are in the planning stages for DevDay at ELCE right now,
particularly the advanced track. This track changes every session,
usually to cover the things we are working on hardest - for example,
in San Diego we covered CROPS, devtool, the latest Toaster features,
and much more.

Whether you are able to attend DevDay or not, we would be grateful to
hear your suggestions for subjects to cover in the advanced track. We
are currently planning talks about CROPS, devtool and the ESDK,
Toaster, wic, smack, security, and a few other things. If you have a
burning desire to hear about something specific, please let us know.



*** Status and state of the art for read-only root filesystems.
1) r/o root + tmpfs only for ephemeral systems
2) r/o root + select r/w points (bind-volatile?)
3) r/o root + unionfs r/w

My interest would be in #1 & #2 as it is security related.
r/w mount would be nosuid, nodev, etc and perhaps noexec
A survey of the space should include #3 however.

I know there is a section in the developer manual for the basic 
mechanisms of r/o root but it appears a lot is left as an excrice for 
the user.  Are the full demo images etc?


*** What is the OE/YP response to Ubuntu-core?
4) Can Yocto build transactionally updated-able bundles for kernel and 
core-os/root-fs?

5) Can Yocto [cross-]build snaps or flatpaks?
6) Will snapd (or whatever flatpak needs) become 1st class ecosystem 
components?

Ex: meta-snappy has a lot of good work but is early days
Currently meta-snappy disables AppArmor & seccomp
snapd does only light ns & cgroup control and relies on
  AppArmor to do most of the containment
so snapd w/o AppArmor is a demo
[Arch is no better BTW]

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


Re: [oe] [yocto] Subjects for YP Developer Day at ELCE

2016-09-12 Thread Burton, Ross
On 12 September 2016 at 15:48, William Mills  wrote:

> 5) Can Yocto [cross-]build snaps or flatpaks?
>

Just because it's interesting, note that the standard freedesktop.org
flatpak runtime is in fact bootstrapped through a custom OE distro.

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


Re: [oe] [meta-python][PATCH] python-unidiff: python module for parsing diff data

2016-09-12 Thread Martin Jansa
On Wed, Sep 07, 2016 at 03:37:03PM -0500, 
leonardo.sandoval.gonza...@linux.intel.com wrote:
> From: Leonardo Sandoval 
> 
> The module takes diff data, from commands like diff or git-format-patch,
> parses it and creates python objects in the form of patch sets. More
> info is given on the recipe metadata.

This conflicts with python-flask-pymongo

ERROR: python-flask-pymongo-0.4.1-r0 do_populate_sysroot_setscene: The recipe 
python-flask-pymongo is trying to install files into a shared area when those 
files already exist. Those files and their manifest location are:
qemux86/usr/lib/python2.7/site-packages/tests/__init__.pyc
 Matched in b'manifest-qemux86-python-unidiff.populate_sysroot'
qemux86/usr/lib/python2.7/site-packages/tests/__init__.py
 Matched in b'manifest-qemux86-python-unidiff.populate_sysroot'
Please verify which recipe should provide the above files.

> 
> Signed-off-by: Leonardo Sandoval 
> ---
>  meta-python/recipes-devtools/python/python-unidiff_0.5.2.bb | 9 +
>  1 file changed, 9 insertions(+)
>  create mode 100644 
> meta-python/recipes-devtools/python/python-unidiff_0.5.2.bb
> 
> diff --git a/meta-python/recipes-devtools/python/python-unidiff_0.5.2.bb 
> b/meta-python/recipes-devtools/python/python-unidiff_0.5.2.bb
> new file mode 100644
> index 000..3ee5bc2
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-unidiff_0.5.2.bb
> @@ -0,0 +1,9 @@
> +SUMMARY = "Unified diff parsing/metadata extraction library"
> +HOMEPAGE = "http://github.com/matiasb/python-unidiff";
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=4c434b08ef42fea235bb019b5e5a97b3"
> +
> +SRC_URI[md5sum] = "20dd70ba5a35bc95bf869322d6852227"
> +SRC_URI[sha256sum] = 
> "344330ec3637e96b44dca77e086b205645b55648cf4d2b80fc673200f8a6a7e9"
> +
> +inherit pypi setuptools
> -- 
> 2.1.4
> 
> -- 
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com


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


[oe] [meta-oe][meta-networking][PATCH] iscsitarget, netmap-moduls, vboxguestdrivers: Blacklist, not compatible with default kernel version 4.8

2016-09-12 Thread Martin Jansa
Signed-off-by: Martin Jansa 
---
 .../recipes-extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb| 3 +++
 meta-networking/recipes-kernel/netmap/netmap-modules_git.bb| 3 +++
 meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb | 3 +++
 3 files changed, 9 insertions(+)

diff --git 
a/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb 
b/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb
index ba51c25..4b5622b 100644
--- 
a/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb
+++ 
b/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb
@@ -56,3 +56,6 @@ FILES_${PN} += "${sbindir} \
 
 RDEPENDS_${PN} = "kernel-module-iscsi-trgt"
 RRECOMMENDS_${PN} = "kernel-module-crc32c kernel-module-libcrc32c"
+
+# http://errors.yoctoproject.org/Errors/Details/83334/
+PNBLACKLIST[iscsitarget] ?= "BROKEN: not compatible with default kernel 
version 4.8"
diff --git a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb 
b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
index 6544bb5..e9eea56 100644
--- a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
+++ b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
@@ -87,3 +87,6 @@ do_install () {
 cd ${S}/LINUX
 oe_runmake install
 }
+
+# http://errors.yoctoproject.org/Errors/Details/83335/
+PNBLACKLIST[netmap-modules] ?= "BROKEN: not compatible with default kernel 
version 4.8"
diff --git a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb 
b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb
index 66068d1..1d1b1d8 100644
--- a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb
+++ b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb
@@ -63,3 +63,6 @@ FILES_${PN} = "${base_sbindir}"
 
 # autoload if installed
 KERNEL_MODULE_AUTOLOAD += "vboxguest vboxsf vboxvideo"
+
+# http://errors.yoctoproject.org/Errors/Details/8/
+PNBLACKLIST[vboxguestdrivers] ?= "BROKEN: not compatible with default kernel 
version 4.8"
-- 
2.10.0

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


Re: [oe] [meta-oe][meta-networking][PATCH] iscsitarget, netmap-moduls, vboxguestdrivers: Blacklist, not compatible with default kernel version 4.8

2016-09-12 Thread Khem Raj
4.8 isnt released yet. So I would suggest to wait merging this until its
released

On Sep 12, 2016 10:07 AM, "Martin Jansa"  wrote:

> Signed-off-by: Martin Jansa 
> ---
>  .../recipes-extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb|
> 3 +++
>  meta-networking/recipes-kernel/netmap/netmap-modules_git.bb|
> 3 +++
>  meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb |
> 3 +++
>  3 files changed, 9 insertions(+)
>
> diff --git a/meta-networking/recipes-extended/iscsitarget/
> iscsitarget_1.4.20.3+svn502.bb b/meta-networking/recipes-
> extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb
> index ba51c25..4b5622b 100644
> --- a/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+
> svn502.bb
> +++ b/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+
> svn502.bb
> @@ -56,3 +56,6 @@ FILES_${PN} += "${sbindir} \
>
>  RDEPENDS_${PN} = "kernel-module-iscsi-trgt"
>  RRECOMMENDS_${PN} = "kernel-module-crc32c kernel-module-libcrc32c"
> +
> +# http://errors.yoctoproject.org/Errors/Details/83334/
> +PNBLACKLIST[iscsitarget] ?= "BROKEN: not compatible with default kernel
> version 4.8"
> diff --git a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
> b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
> index 6544bb5..e9eea56 100644
> --- a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
> +++ b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
> @@ -87,3 +87,6 @@ do_install () {
>  cd ${S}/LINUX
>  oe_runmake install
>  }
> +
> +# http://errors.yoctoproject.org/Errors/Details/83335/
> +PNBLACKLIST[netmap-modules] ?= "BROKEN: not compatible with default
> kernel version 4.8"
> diff --git a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdriv
> ers_5.1.4.bb b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdriv
> ers_5.1.4.bb
> index 66068d1..1d1b1d8 100644
> --- a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb
> +++ b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb
> @@ -63,3 +63,6 @@ FILES_${PN} = "${base_sbindir}"
>
>  # autoload if installed
>  KERNEL_MODULE_AUTOLOAD += "vboxguest vboxsf vboxvideo"
> +
> +# http://errors.yoctoproject.org/Errors/Details/8/
> +PNBLACKLIST[vboxguestdrivers] ?= "BROKEN: not compatible with default
> kernel version 4.8"
> --
> 2.10.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


Re: [oe] [meta-oe][meta-networking][PATCH] iscsitarget, netmap-moduls, vboxguestdrivers: Blacklist, not compatible with default kernel version 4.8

2016-09-12 Thread akuster808



On 09/12/2016 10:12 AM, Khem Raj wrote:

4.8 isnt released yet. So I would suggest to wait merging this until its
released


4.8-rc5 is so this patch is valid IMHO.

-armin

On Sep 12, 2016 10:07 AM, "Martin Jansa"  wrote:


Signed-off-by: Martin Jansa 
---
  .../recipes-extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb|
3 +++
  meta-networking/recipes-kernel/netmap/netmap-modules_git.bb|
3 +++
  meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb |
3 +++
  3 files changed, 9 insertions(+)

diff --git a/meta-networking/recipes-extended/iscsitarget/
iscsitarget_1.4.20.3+svn502.bb b/meta-networking/recipes-
extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb
index ba51c25..4b5622b 100644
--- a/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+
svn502.bb
+++ b/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+
svn502.bb
@@ -56,3 +56,6 @@ FILES_${PN} += "${sbindir} \

  RDEPENDS_${PN} = "kernel-module-iscsi-trgt"
  RRECOMMENDS_${PN} = "kernel-module-crc32c kernel-module-libcrc32c"
+
+# http://errors.yoctoproject.org/Errors/Details/83334/
+PNBLACKLIST[iscsitarget] ?= "BROKEN: not compatible with default kernel
version 4.8"
diff --git a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
index 6544bb5..e9eea56 100644
--- a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
+++ b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
@@ -87,3 +87,6 @@ do_install () {
  cd ${S}/LINUX
  oe_runmake install
  }
+
+# http://errors.yoctoproject.org/Errors/Details/83335/
+PNBLACKLIST[netmap-modules] ?= "BROKEN: not compatible with default
kernel version 4.8"
diff --git a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdriv
ers_5.1.4.bb b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdriv
ers_5.1.4.bb
index 66068d1..1d1b1d8 100644
--- a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb
+++ b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb
@@ -63,3 +63,6 @@ FILES_${PN} = "${base_sbindir}"

  # autoload if installed
  KERNEL_MODULE_AUTOLOAD += "vboxguest vboxsf vboxvideo"
+
+# http://errors.yoctoproject.org/Errors/Details/8/
+PNBLACKLIST[vboxguestdrivers] ?= "BROKEN: not compatible with default
kernel version 4.8"
--
2.10.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


Re: [oe] [meta-oe][meta-networking][PATCH] iscsitarget, netmap-moduls, vboxguestdrivers: Blacklist, not compatible with default kernel version 4.8

2016-09-12 Thread Martin Jansa
linux-libc-headers are 4.8% by default since:
http://git.openembedded.org/openembedded-core/commit/?id=253bf0332bd979b9fd9cf6fdc44682892f0bacf7

qemuarm is using 4.8% by default for kernel as well, since:
http://git.openembedded.org/openembedded-core/commit/?id=fd31e30f97ee9bd128d5b7b748987b0a6427b279

That's why it's now failing in world builds...

On Mon, Sep 12, 2016 at 7:33 PM, akuster808  wrote:

>
>
> On 09/12/2016 10:12 AM, Khem Raj wrote:
>
>> 4.8 isnt released yet. So I would suggest to wait merging this until its
>> released
>>
>
> 4.8-rc5 is so this patch is valid IMHO.
>
> -armin
>
> On Sep 12, 2016 10:07 AM, "Martin Jansa"  wrote:
>>
>> Signed-off-by: Martin Jansa 
>>> ---
>>>   .../recipes-extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb
>>>   |
>>> 3 +++
>>>   meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
>>>   |
>>> 3 +++
>>>   meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb
>>>  |
>>> 3 +++
>>>   3 files changed, 9 insertions(+)
>>>
>>> diff --git a/meta-networking/recipes-extended/iscsitarget/
>>> iscsitarget_1.4.20.3+svn502.bb b/meta-networking/recipes-
>>> extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb
>>> index ba51c25..4b5622b 100644
>>> --- a/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+
>>> svn502.bb
>>> +++ b/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+
>>> svn502.bb
>>> @@ -56,3 +56,6 @@ FILES_${PN} += "${sbindir} \
>>>
>>>   RDEPENDS_${PN} = "kernel-module-iscsi-trgt"
>>>   RRECOMMENDS_${PN} = "kernel-module-crc32c kernel-module-libcrc32c"
>>> +
>>> +# http://errors.yoctoproject.org/Errors/Details/83334/
>>> +PNBLACKLIST[iscsitarget] ?= "BROKEN: not compatible with default kernel
>>> version 4.8"
>>> diff --git a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
>>> b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
>>> index 6544bb5..e9eea56 100644
>>> --- a/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
>>> +++ b/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb
>>> @@ -87,3 +87,6 @@ do_install () {
>>>   cd ${S}/LINUX
>>>   oe_runmake install
>>>   }
>>> +
>>> +# http://errors.yoctoproject.org/Errors/Details/83335/
>>> +PNBLACKLIST[netmap-modules] ?= "BROKEN: not compatible with default
>>> kernel version 4.8"
>>> diff --git a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdriv
>>> ers_5.1.4.bb b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdriv
>>> ers_5.1.4.bb
>>> index 66068d1..1d1b1d8 100644
>>> --- a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb
>>> +++ b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb
>>> @@ -63,3 +63,6 @@ FILES_${PN} = "${base_sbindir}"
>>>
>>>   # autoload if installed
>>>   KERNEL_MODULE_AUTOLOAD += "vboxguest vboxsf vboxvideo"
>>> +
>>> +# http://errors.yoctoproject.org/Errors/Details/8/
>>> +PNBLACKLIST[vboxguestdrivers] ?= "BROKEN: not compatible with default
>>> kernel version 4.8"
>>> --
>>> 2.10.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
>
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe][PATCH] syslog-ng: remove unused patches

2016-09-12 Thread Andre McCurdy
On Thu, Aug 11, 2016 at 3:20 AM, Andre McCurdy  wrote:
> Remove various patches no longer referenced by SRC_URI.

Ping.

Status is "Accepted" in patchwork, but commit doesn't seem to be in master.

  https://patchwork.openembedded.org/series/1425/


> Signed-off-by: Andre McCurdy 
> ---
>  .../files/afsql-afsql_dd_insert_db-refactor.patch  | 494 
> -
>  ...init-the-new-config-when-reverting-to-the.patch |  36 --
>  .../files/free-global-LogTemplateOptions.patch |  30 --
>  .../logwriter-dont-allocate-a-new-buffer.patch |  26 --
>  .../rewrite-expr-grammar.ym-Free-up-token.patch|  17 -
>  .../files/still-free-the-unconsumed-item.patch |  90 
>  .../syslog-ng-verify-the-list-before-del.patch |  38 --
>  7 files changed, 731 deletions(-)
>  delete mode 100644 
> meta-oe/recipes-support/syslog-ng/files/afsql-afsql_dd_insert_db-refactor.patch
>  delete mode 100644 
> meta-oe/recipes-support/syslog-ng/files/deinit-the-new-config-when-reverting-to-the.patch
>  delete mode 100644 
> meta-oe/recipes-support/syslog-ng/files/free-global-LogTemplateOptions.patch
>  delete mode 100644 
> meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch
>  delete mode 100644 
> meta-oe/recipes-support/syslog-ng/files/rewrite-expr-grammar.ym-Free-up-token.patch
>  delete mode 100644 
> meta-oe/recipes-support/syslog-ng/files/still-free-the-unconsumed-item.patch
>  delete mode 100644 
> meta-oe/recipes-support/syslog-ng/files/syslog-ng-verify-the-list-before-del.patch
>
> diff --git 
> a/meta-oe/recipes-support/syslog-ng/files/afsql-afsql_dd_insert_db-refactor.patch
>  
> b/meta-oe/recipes-support/syslog-ng/files/afsql-afsql_dd_insert_db-refactor.patch
> deleted file mode 100644
> index 42e181b..000
> --- 
> a/meta-oe/recipes-support/syslog-ng/files/afsql-afsql_dd_insert_db-refactor.patch
> +++ /dev/null
> @@ -1,494 +0,0 @@
> -From 23e80b75508187baaa823a68ea019b72e0b2305c Mon Sep 17 00:00:00 2001
> -From: Budai Laszlo 
> -Date: Tue, 12 Nov 2013 13:19:04 +0100
> -Subject: [PATCH] afsql: afsql_dd_insert_db() refactor
> -
> -Upstream-Status: Backport
> -
> -A lot of the code that was previously in afsql_dd_insert_db() have been
> -extracted to smaller functions, and afsql_dd_insert_db() was rebuilt on
> -top of these. At the same time, memory leaks were plugged, and in case
> -of a transaction error, backlog rewinding has been fixed too, to not
> -loose messages since the last BEGIN command.
> -
> -Signed-off-by: Juhasz Viktor 
> -Signed-off-by: Laszlo Budai 
> 
> - modules/afsql/afsql.c | 301 
> --
> - 1 file changed, 192 insertions(+), 109 deletions(-)
> -
> -diff --git a/modules/afsql/afsql.c b/modules/afsql/afsql.c
> -index 12f6aab..a6a8190 100644
>  a/modules/afsql/afsql.c
> -+++ b/modules/afsql/afsql.c
> -@@ -456,24 +456,21 @@ afsql_dd_create_index(AFSqlDestDriver *s
> -  *
> -  * NOTE: This function can only be called from the database thread.
> -  **/
> --static GString *
> --afsql_dd_validate_table(AFSqlDestDriver *self, LogMessage *msg)
> -+static gboolean
> -+afsql_dd_validate_table(AFSqlDestDriver *self, GString *table)
> - {
> --  GString *query_string, *table;
> -+  GString *query_string;
> -   dbi_result db_res;
> -   gboolean success = FALSE;
> -   gint i;
> -
> --  table = g_string_sized_new(32);
> --  log_template_format(self->table, msg, &self->template_options, LTZ_LOCAL, 
> 0, NULL, table);
> --
> -   if (self->flags & AFSQL_DDF_DONT_CREATE_TABLES)
> --return table;
> -+return TRUE;
> -
> -   afsql_dd_check_sql_identifier(table->str, TRUE);
> -
> -   if (g_hash_table_lookup(self->validated_tables, table->str))
> --return table;
> -+return TRUE;
> -
> -   query_string = g_string_sized_new(32);
> -   g_string_printf(query_string, "SELECT * FROM %s WHERE 0=1", table->str);
> -@@ -544,14 +541,9 @@ afsql_dd_validate_table(AFSqlDestDriver
> -   /* we have successfully created/altered the destination table, record 
> this information */
> -   g_hash_table_insert(self->validated_tables, g_strdup(table->str), 
> GUINT_TO_POINTER(TRUE));
> - }
> --  else
> --{
> --  g_string_free(table, TRUE);
> --  table = NULL;
> --}
> -   g_string_free(query_string, TRUE);
> -
> --  return table;
> -+  return success;
> - }
> -
> - /**
> -@@ -581,6 +573,20 @@ afsql_dd_begin_txn(AFSqlDestDriver *self
> - }
> -
> - /**
> -+ * afsql_dd_handle_transaction_error:
> -+ *
> -+ * Handle errors inside during a SQL transaction (e.g. INSERT or COMMIT 
> failures).
> -+ *
> -+ * NOTE: This function can only be called from the database thread.
> -+ **/
> -+static void
> -+afsql_dd_handle_transaction_error(AFSqlDestDriver *self)
> -+{
> -+  log_queue_rewind_backlog(self->queue);
> -+  self->flush_lines_queued = 0;
> -+}
> -+
> -+/**
> -  * afsql_dd_begin_txn:
> -  *
> -  * Commit SQL transaction.
> -@@ -596,14 +602,14 @@ afsql_dd_commit_txn(AFSqlDestDriver *sel
> -   if (success)

[oe] [meta-oe][PATCH] minini: update SRC_URI with new download path

2016-09-12 Thread Andre McCurdy
  https://code.google.com/archive/p/minini/downloads

Signed-off-by: Andre McCurdy 
---
 meta-oe/recipes-support/minini/minini_1.2.b.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/minini/minini_1.2.b.bb 
b/meta-oe/recipes-support/minini/minini_1.2.b.bb
index 6607dd8..4a73f12 100644
--- a/meta-oe/recipes-support/minini/minini_1.2.b.bb
+++ b/meta-oe/recipes-support/minini/minini_1.2.b.bb
@@ -14,7 +14,7 @@ HOMEPAGE = "https://code.google.com/p/minini/";
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=eb21481ad45c5578ae8c8d37b8c8d76d"
 
-SRC_URI = "http://minini.googlecode.com/files/minIni_12b.zip;subdir=${BP}";
+SRC_URI = 
"https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/minini/minIni_12b.zip;subdir=${BP}";
 
 SRC_URI[md5sum] = "32740621098e3f0a321c7c23f4bcbc5d"
 SRC_URI[sha256sum] = 
"b08839af74acb36061fb76e1123bf56711bc5cf7a08b32e189b0ad78a2e888e2"
-- 
1.9.1

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


Re: [oe] [meta-oe][PATCH] syslog-ng: remove unused patches

2016-09-12 Thread Martin Jansa
On Mon, Sep 12, 2016 at 12:41:28PM -0700, Andre McCurdy wrote:
> On Thu, Aug 11, 2016 at 3:20 AM, Andre McCurdy  wrote:
> > Remove various patches no longer referenced by SRC_URI.
> 
> Ping.
> 
> Status is "Accepted" in patchwork, but commit doesn't seem to be in master.
> 
>   https://patchwork.openembedded.org/series/1425/

That was incorrectly merked in patchwork, I've just added it to
master-next, thanks for ping.

> > Signed-off-by: Andre McCurdy 
> > ---
> >  .../files/afsql-afsql_dd_insert_db-refactor.patch  | 494 
> > -
> >  ...init-the-new-config-when-reverting-to-the.patch |  36 --
> >  .../files/free-global-LogTemplateOptions.patch |  30 --
> >  .../logwriter-dont-allocate-a-new-buffer.patch |  26 --
> >  .../rewrite-expr-grammar.ym-Free-up-token.patch|  17 -
> >  .../files/still-free-the-unconsumed-item.patch |  90 
> >  .../syslog-ng-verify-the-list-before-del.patch |  38 --
> >  7 files changed, 731 deletions(-)
> >  delete mode 100644 
> > meta-oe/recipes-support/syslog-ng/files/afsql-afsql_dd_insert_db-refactor.patch
> >  delete mode 100644 
> > meta-oe/recipes-support/syslog-ng/files/deinit-the-new-config-when-reverting-to-the.patch
> >  delete mode 100644 
> > meta-oe/recipes-support/syslog-ng/files/free-global-LogTemplateOptions.patch
> >  delete mode 100644 
> > meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch
> >  delete mode 100644 
> > meta-oe/recipes-support/syslog-ng/files/rewrite-expr-grammar.ym-Free-up-token.patch
> >  delete mode 100644 
> > meta-oe/recipes-support/syslog-ng/files/still-free-the-unconsumed-item.patch
> >  delete mode 100644 
> > meta-oe/recipes-support/syslog-ng/files/syslog-ng-verify-the-list-before-del.patch
> >
> > diff --git 
> > a/meta-oe/recipes-support/syslog-ng/files/afsql-afsql_dd_insert_db-refactor.patch
> >  
> > b/meta-oe/recipes-support/syslog-ng/files/afsql-afsql_dd_insert_db-refactor.patch
> > deleted file mode 100644
> > index 42e181b..000
> > --- 
> > a/meta-oe/recipes-support/syslog-ng/files/afsql-afsql_dd_insert_db-refactor.patch
> > +++ /dev/null
> > @@ -1,494 +0,0 @@
> > -From 23e80b75508187baaa823a68ea019b72e0b2305c Mon Sep 17 00:00:00 2001
> > -From: Budai Laszlo 
> > -Date: Tue, 12 Nov 2013 13:19:04 +0100
> > -Subject: [PATCH] afsql: afsql_dd_insert_db() refactor
> > -
> > -Upstream-Status: Backport
> > -
> > -A lot of the code that was previously in afsql_dd_insert_db() have been
> > -extracted to smaller functions, and afsql_dd_insert_db() was rebuilt on
> > -top of these. At the same time, memory leaks were plugged, and in case
> > -of a transaction error, backlog rewinding has been fixed too, to not
> > -loose messages since the last BEGIN command.
> > -
> > -Signed-off-by: Juhasz Viktor 
> > -Signed-off-by: Laszlo Budai 
> > 
> > - modules/afsql/afsql.c | 301 
> > --
> > - 1 file changed, 192 insertions(+), 109 deletions(-)
> > -
> > -diff --git a/modules/afsql/afsql.c b/modules/afsql/afsql.c
> > -index 12f6aab..a6a8190 100644
> >  a/modules/afsql/afsql.c
> > -+++ b/modules/afsql/afsql.c
> > -@@ -456,24 +456,21 @@ afsql_dd_create_index(AFSqlDestDriver *s
> > -  *
> > -  * NOTE: This function can only be called from the database thread.
> > -  **/
> > --static GString *
> > --afsql_dd_validate_table(AFSqlDestDriver *self, LogMessage *msg)
> > -+static gboolean
> > -+afsql_dd_validate_table(AFSqlDestDriver *self, GString *table)
> > - {
> > --  GString *query_string, *table;
> > -+  GString *query_string;
> > -   dbi_result db_res;
> > -   gboolean success = FALSE;
> > -   gint i;
> > -
> > --  table = g_string_sized_new(32);
> > --  log_template_format(self->table, msg, &self->template_options, 
> > LTZ_LOCAL, 0, NULL, table);
> > --
> > -   if (self->flags & AFSQL_DDF_DONT_CREATE_TABLES)
> > --return table;
> > -+return TRUE;
> > -
> > -   afsql_dd_check_sql_identifier(table->str, TRUE);
> > -
> > -   if (g_hash_table_lookup(self->validated_tables, table->str))
> > --return table;
> > -+return TRUE;
> > -
> > -   query_string = g_string_sized_new(32);
> > -   g_string_printf(query_string, "SELECT * FROM %s WHERE 0=1", table->str);
> > -@@ -544,14 +541,9 @@ afsql_dd_validate_table(AFSqlDestDriver
> > -   /* we have successfully created/altered the destination table, 
> > record this information */
> > -   g_hash_table_insert(self->validated_tables, g_strdup(table->str), 
> > GUINT_TO_POINTER(TRUE));
> > - }
> > --  else
> > --{
> > --  g_string_free(table, TRUE);
> > --  table = NULL;
> > --}
> > -   g_string_free(query_string, TRUE);
> > -
> > --  return table;
> > -+  return success;
> > - }
> > -
> > - /**
> > -@@ -581,6 +573,20 @@ afsql_dd_begin_txn(AFSqlDestDriver *self
> > - }
> > -
> > - /**
> > -+ * afsql_dd_handle_transaction_error:
> > -+ *
> > -+ * Handle errors inside during a SQL transaction (e.g. INSERT or COMMIT 
> > failures).
> > -+ *
> > 

[oe] State of bitbake world 2016-09-11

2016-09-12 Thread Martin Jansa
== Number of issues - stats ==
{| class='wikitable'
!|Date   !!colspan='3'|Failed tasks 
!!colspan='6'|Failed depencencies!!|Signatures
!!colspan='12'|QA !!Comment
|-
||  ||qemuarm   ||qemux86   ||qemux86_64
||qemuarm||max||min ||qemux86||max||min ||all   ||already-stripped  
||libdir||textrel   ||build-deps||file-rdeps
||version-going-backwards   ||host-user-contaminated
||installed-vs-shipped  ||unknown-configure-option  ||symlink-to-sysroot
||invalid-pkgconfig ||pkgname   ||  
|-
||2016-09-11||6 ||8 ||7 ||19||6 ||4 ||22||8 
||6 ||0 ||0 ||0 ||1 ||8 
||3 ||12||0 ||1 ||0 
||0 ||0 ||0 ||  
|}

http://www.openembedded.org/wiki/Bitbake_World_Status

== Failed tasks 2016-09-11 ==

INFO: jenkins-job.sh-1.8.10 Complete log available at 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.report.20160912_102042.log

=== common (5) ===
* 
meta-openembedded/meta-networking/recipes-extended/iscsitarget/iscsitarget_1.4.20.3+svn502.bb:do_compile
* 
meta-openembedded/meta-networking/recipes-kernel/netmap/netmap-modules_git.bb:do_compile
* 
meta-openembedded/meta-python/recipes-devtools/python/python-unidiff_0.5.2.bb:do_populate_sysroot
* meta-qt5/recipes-qt/qt5/qtwebkit_git.bb:do_compile
* 
openembedded-core/meta/recipes-support/libunwind/libunwind_git.bb:do_compile

=== common-x86 (2) ===
* 
meta-browser/recipes-browser/chromium/chromium-wayland_48.0.2548.0.bb:do_patch
* 
meta-openembedded/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers_5.1.4.bb:do_install

=== qemuarm (1) ===
* 
meta-openembedded/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.11.3.bb:do_fetch

=== qemux86 (1) ===
* meta-browser/recipes-browser/chromium/chromium_52.0.2743.76.bb:do_compile

=== qemux86_64 (0) ===

=== Number of failed tasks (21) ===
{| class=wikitable
|-
|| qemuarm  || 6 || 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.world.qemuarm.20160910_213946.log/
 || http://errors.yoctoproject.org/Errors/Build/21399/
|-
|| qemux86  || 8 || 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.world.qemux86.20160910_213952.log/
 || http://errors.yoctoproject.org/Errors/Build/21400/
|-
|| qemux86_64   || 7 || 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.world.qemux86-64.20160911_094330.log/
 || http://errors.yoctoproject.org/Errors/Build/21410/
|}

=== PNBLACKLISTs (118) ===

=== QA issues (25) ===
{| class=wikitable
!| Count||Issue
|-
||0 ||already-stripped
|-
||0 ||host-user-contaminated
|-
||0 ||invalid-pkgconfig
|-
||0 ||libdir
|-
||0 ||pkgname
|-
||0 ||symlink-to-sysroot
|-
||0 ||unknown-configure-option
|-
||12||version-going-backwards
|-
||1 ||installed-vs-shipped
|-
||1 ||textrel
|-
||3 ||file-rdeps
|-
||8 ||build-deps
|}



=== Failed dependencies for qemuarm (19) ===

Complete log: 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20160911_090900.log/
Found differences: 
* WARN: libdrm: libdrm-tests rdepends on cunit, but it isn't a build 
dependency?
* WARN: libdrm: libdrm-tests rdepends on libdrm-amdgpu, but it isn't a 
build dependency?
* WARN: jasper: jasper-bin rdepends on freeglut, but it isn't a build 
dependency?
* WARN: jasper: jasper-bin rdepends on libgl-mesa, but it isn't a build 
dependency?
* WARN: jasper: jasper-bin rdepends on libglu, but it isn't a build 
dependency?
* WARN: enchant: enchant rdepends on hunspell, but it isn't a build 
dependency?
Found errors: 
* ERROR: 19 issues were found in these recipes: enchant iscsitarget jasper 
libdrm libunwind netmap-modules python-unidiff qtwebkit samba

=== Recipes failing with maximal dependencies for qemuarm (6) ===
* iscsitarget -- 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20160911_090900.log//2_max/failed/iscsitarget.log
* libunwind -- 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20160911_090900.log//2_max/failed/libunwind.log
* netmap-modules -- 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20160911_090900.log//2_max/failed/netmap-modules.log
* python-unidiff -- 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20160911_090900.log//2_max/failed/python-unidiff.log
* qtwebkit -- 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20160911_090900.log//2_max/failed/qtwebkit.log
* samba -- 
http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20160911_090900.log//2_max/failed/samba.log

=== Recipes failing with minimal dependencies for qemuarm (4) ===
* iscsitarget -- 
htt

[oe] [meta-networking][PATCH] lksctp-tools: 1.0.16 -> 1.0.17

2016-09-12 Thread Wang Xin
Upgrade lksctp-tools from 1.0.16 to 1.0.17.

Signed-off-by: Wang Xin 
---
 .../lksctp-tools/{lksctp-tools_1.0.16.bb => lksctp-tools_1.0.17.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-networking/recipes-support/lksctp-tools/{lksctp-tools_1.0.16.bb => 
lksctp-tools_1.0.17.bb} (94%)

diff --git 
a/meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.16.bb 
b/meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.17.bb
similarity index 94%
rename from meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.16.bb
rename to meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.17.bb
index e6a84cc..11c43ff 100644
--- a/meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.16.bb
+++ b/meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.17.bb
@@ -14,8 +14,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/lksctp/${BP}.tar.gz \
 file://v6test.sh \
 "
 
-SRC_URI[md5sum] = "708bb0b5a6806ad6e8d13c55b067518e"
-SRC_URI[sha256sum] = 
"0903dd526b7f30a89d5031aa2c82757612becc38ed7bc6e4f972f8deae351f26"
+SRC_URI[md5sum] = "68e9b8fa4d4e331029b247b72d46d7a5"
+SRC_URI[sha256sum] = 
"1aeb204cdb2befc94d9eb3037d1609c9d1d2cd5379d6dd2c0a8ca9b10533aa15"
 
 #| arm-oe-linux-gnueabi-libtool: link: arm-oe-linux-gnueabi-gcc  
-march=armv5te -marm -mthumb-interwork 
--sysroot=/home/jenkins/oe/world/shr-core/tmp-eglibc/sysroots/qemuarm -shared  
-fPIC -DPIC  .libs/bindx.o .libs/connectx.o .libs/peeloff.o .libs/opt_info.o 
.libs/addrs.o .libs/sendmsg.o .libs/recvmsg.o-march=armv5te -marm 
-mthumb-interwork 
--sysroot=/home/jenkins/oe/world/shr-core/tmp-eglibc/sysroots/qemuarm -O2 
-Wl,--version-script=/home/jenkins/oe/world/shr-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/lksctp-tools/1.0.16-r0/lksctp-tools-1.0.16/src/lib/Versions.map
 -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed   -Wl,-soname -Wl,libsctp.so.1 -o 
.libs/libsctp.so.1.0.16
 #| 
/home/jenkins/oe/world/shr-core/tmp-eglibc/sysroots/x86_64-linux/usr/libexec/arm-oe-linux-gnueabi/gcc/arm-oe-linux-gnueabi/4.9.0/ld:
 error: symbol sctp_connectx has undefined version
-- 
2.7.4



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