Re: [oe] [oe-commits] [meta-openembedded] 37/44: python-pytest: update to version 3.1.2

2017-07-03 Thread Martin Jansa
Why is setuptools downloading something (bypassing bitbake fetcher _and_
already populated premirror) causing build failures like this:
http://errors.yoctoproject.org/Errors/Details/146740/

On Mon, Jun 19, 2017 at 7:32 PM,  wrote:

> This is an automated email from the git hooks/post-receive script.
>
> martin_jansa pushed a commit to branch master
> in repository meta-openembedded.
>
> commit af0e31c58a381c2478435e8d015c142bab58c452
> Author: Derek Straka 
> AuthorDate: Fri Jun 16 16:02:09 2017 -0400
>
> python-pytest: update to version 3.1.2
>
> Signed-off-by: Derek Straka 
> Signed-off-by: Martin Jansa 
> ---
>  meta-python/recipes-devtools/python/python-pytest.inc |
> 4 ++--
>  .../python/{python-pytest_3.0.6.bb => python-pytest_3.1.2.bb} | 0
>  .../python/{python3-pytest_3.0.6.bb => python3-pytest_3.1.2.bb}   | 0
>  3 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-python/recipes-devtools/python/python-pytest.inc
> b/meta-python/recipes-devtools/python/python-pytest.inc
> index c9c9bbf..2826838 100644
> --- a/meta-python/recipes-devtools/python/python-pytest.inc
> +++ b/meta-python/recipes-devtools/python/python-pytest.inc
> @@ -2,8 +2,8 @@ SUMMARY = "Simple powerful teting with python"
>  LICENSE = "MIT"
>  LIC_FILES_CHKSUM = "file://LICENSE;md5=d8a5609608d9a5a180705b0fa298ae01"
>
> -SRC_URI[md5sum] = "6639592fa430567d024189f097fcdbd7"
> -SRC_URI[sha256sum] = "643434a9f1a188271da35e20064cb8
> b6c5440976c5bb541dc7b5b0e3cf75d940"
> +SRC_URI[md5sum] = "c4d179f89043cc925e1c169d03128e02"
> +SRC_URI[sha256sum] = "795ec29fbba70b22a593691ce8bcd4
> bdde2dc96e8099731f73c7d8bb3ce879bf"
>
>  RDEPENDS_${PN}_class-target += " \
>  ${PYTHON_PN}-argparse \
> diff --git a/meta-python/recipes-devtools/python/python-pytest_3.0.6.bb
> b/meta-python/recipes-devtools/python/python-pytest_3.1.2.bb
> similarity index 100%
> rename from meta-python/recipes-devtools/python/python-pytest_3.0.6.bb
> rename to meta-python/recipes-devtools/python/python-pytest_3.1.2.bb
> diff --git a/meta-python/recipes-devtools/python/python3-pytest_3.0.6.bb
> b/meta-python/recipes-devtools/python/python3-pytest_3.1.2.bb
> similarity index 100%
> rename from meta-python/recipes-devtools/python/python3-pytest_3.0.6.bb
> rename to meta-python/recipes-devtools/python/python3-pytest_3.1.2.bb
>
> --
> To stop receiving notification emails like this one, please contact
> the administrator of this repository.
> --
> ___
> Openembedded-commits mailing list
> openembedded-comm...@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-commits
>
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-browser][PATCH] firefox: Fix Build QA error compile-host-path

2017-07-03 Thread Khem Raj
Signed-off-by: Khem Raj 
---
 .../firefox/firefox/remove_AC_PATH_XTRA.patch  | 59 ++
 recipes-mozilla/firefox/firefox_45.9.0esr.bb   |  1 +
 2 files changed, 60 insertions(+)
 create mode 100644 recipes-mozilla/firefox/firefox/remove_AC_PATH_XTRA.patch

diff --git a/recipes-mozilla/firefox/firefox/remove_AC_PATH_XTRA.patch 
b/recipes-mozilla/firefox/firefox/remove_AC_PATH_XTRA.patch
new file mode 100644
index 000..69d297e
--- /dev/null
+++ b/recipes-mozilla/firefox/firefox/remove_AC_PATH_XTRA.patch
@@ -0,0 +1,59 @@
+Drop unused X_* flags.
+
+There are actually causing harm doing cross builds since they are picking
+up $includedir which  is /usr/include and pouring that into CFLAGS in
+case of cairo, which ends up referening to build host's include paths
+
+Luckily, we have a QA check to catch such issues
+
+ERROR: firefox-45.9.0esr-r0 do_package_qa: QA Issue: firefox: The compile log 
indicates that host include and/or library paths were used.
+ Please check the log 
'/mnt/a/oe/build/tmp/work/corei7-64-bec-linux/firefox/45.9.0esr-r0/temp/log.do_compile'
 for more information. [compile-host-path]
+
+This patch fixes it
+
+Signed-off-by: Khem Raj 
+
+Index: firefox-45.9.0esr/configure
+===
+--- firefox-45.9.0esr.orig/configure
 firefox-45.9.0esr/configure
+@@ -30605,10 +30605,6 @@ sed 's/$/,/' >> $CONFIG_STATUS <> $CONFIG_STATUS 

[oe] [meta-browser][PATCH] firefox: Fix missing references to hardcoded PYTHON

2017-07-03 Thread Khem Raj
Since OE cross compiles we sometimes will  run into this issue
https://bugzilla.mozilla.org/show_bug.cgi?id=1243321

This fix enhances the existing patch to use PYTHON variable
itself to compute the python binary name and uses usr/bin/env
to find it instead of hardcoding it.

Signed-off-by: Khem Raj 
---
 .../firefox/firefox/fix-python-path.patch  | 27 +++---
 1 file changed, 19 insertions(+), 8 deletions(-)

diff --git a/recipes-mozilla/firefox/firefox/fix-python-path.patch 
b/recipes-mozilla/firefox/firefox/fix-python-path.patch
index 544c611..963fbae 100644
--- a/recipes-mozilla/firefox/firefox/fix-python-path.patch
+++ b/recipes-mozilla/firefox/firefox/fix-python-path.patch
@@ -9,18 +9,29 @@ Signed-off-by: Fabio Berton 
  js/src/configure | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/js/src/configure b/js/src/configure
-index cce5430..780d201 100755
 a/js/src/configure
-+++ b/js/src/configure
-@@ -15933,7 +15933,7 @@ echo creating $CONFIG_STATUS
+Index: firefox-45.9.0esr/js/src/configure
+===
+--- firefox-45.9.0esr.orig/js/src/configure
 firefox-45.9.0esr/js/src/configure
+@@ -17061,7 +17061,7 @@ echo creating $CONFIG_STATUS
  extra_python_path=${COMM_BUILD:+"'mozilla', "}
  
  cat > $CONFIG_STATUS < $CONFIG_STATUS 

Re: [oe] [OE-core] State of bitbake world, Failed tasks 2017-07-02

2017-07-03 Thread Khem Raj
On Mon, Jul 3, 2017 at 4:20 AM, Martin Jansa  wrote:
> http://www.openembedded.org/wiki/Bitbake_World_Status
>
> == Number of issues - stats ==
> {| class='wikitable'
> !|Date !!colspan='3'|Failed tasks!!|Signatures
> !!colspan='14'|QA !!Comment
> |-
> || ||qemuarm ||qemux86 ||qemux86_64 ||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 
> ||ldflags ||compile-host-path ||
> |-
> ||2017-07-02 ||7 ||8 ||5 ||0 ||0 ||1 ||4 ||0 ||0 ||1238 ||1 ||0 ||0 ||0 ||0 
> ||0 ||0 ||0 ||
> |}
>
> == Failed tasks 2017-07-02 ==
>
> INFO: jenkins-job.sh-1.8.24 Complete log available at
> http://logs.nslu2-linux.org/buildlogs/oe/world/rocko/log.report.20170702_225940.log
>
> === common (3) ===
> *
> meta-openembedded/meta-multimedia/recipes-mediacenter/kodi/kodi_17.bb:do_configure
> *
> meta-openembedded/meta-oe/recipes-extended/fluentbit/fluentbit_0.11.11.bb:do_package
> *
> virtual:native:meta-qt5/recipes-qt/qt5/qtxmlpatterns_git.bb:do_populate_sysroot
>
> === common-x86 (2) ===
> * meta-qt5/recipes-qt/qt5/qtwebengine_git.bb:do_compile
> *
> openembedded-core/meta/recipes-devtools/valgrind/valgrind_3.12.0.bb:do_compile_ptest_base
>
> === qemuarm (4) ===
> *
> meta-openembedded/meta-oe/recipes-graphics/gegl/gegl_0.3.18.bb:do_fetch
> *
> meta-openembedded/meta-oe/recipes-support/synergy/synergy_git.bb:do_fetch
> *

these worked ok for me. Seems to be transitory failures.
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH 1/2] libdbus-c++: Fix build with gcc7 and unblacklist

2017-07-03 Thread Khem Raj
Signed-off-by: Khem Raj 
---
 .../0001-pipe.c-Use-a-string-instead-of-char.patch | 27 ++
 meta-oe/recipes-core/dbus/libdbus-c++_0.9.0.bb | 20 
 2 files changed, 36 insertions(+), 11 deletions(-)
 create mode 100644 
meta-oe/recipes-core/dbus/libdbus-c++-0.9.0/0001-pipe.c-Use-a-string-instead-of-char.patch

diff --git 
a/meta-oe/recipes-core/dbus/libdbus-c++-0.9.0/0001-pipe.c-Use-a-string-instead-of-char.patch
 
b/meta-oe/recipes-core/dbus/libdbus-c++-0.9.0/0001-pipe.c-Use-a-string-instead-of-char.patch
new file mode 100644
index 0..6883f9a0b
--- /dev/null
+++ 
b/meta-oe/recipes-core/dbus/libdbus-c++-0.9.0/0001-pipe.c-Use-a-string-instead-of-char.patch
@@ -0,0 +1,27 @@
+From 6bcb58bd69c38b9200e8ec6c382247167571189d Mon Sep 17 00:00:00 2001
+From: Khem Raj 
+Date: Sat, 1 Jul 2017 16:44:15 -0700
+Subject: [PATCH] pipe.c: Use a string instead of char
+
+Fixes
+error: invalid conversion from 'char' to 'const void*' [-fpermissive]
+
+Signed-off-by: Khem Raj 
+---
+ src/pipe.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/pipe.cpp b/src/pipe.cpp
+index 45c2ba6..1303c2d 100644
+--- a/src/pipe.cpp
 b/src/pipe.cpp
+@@ -83,5 +83,5 @@ ssize_t Pipe::read(void *buffer, unsigned int &nbytes)
+ void Pipe::signal()
+ {
+   // TODO: ignoring return of read/write generates warning; maybe relevant 
for eventloop work...
+-  ::write(_fd_write, '\0', 1);
++  ::write(_fd_write, "", 1);
+ }
+-- 
+2.13.2
+
diff --git a/meta-oe/recipes-core/dbus/libdbus-c++_0.9.0.bb 
b/meta-oe/recipes-core/dbus/libdbus-c++_0.9.0.bb
index 4412716a6..4cc133301 100644
--- a/meta-oe/recipes-core/dbus/libdbus-c++_0.9.0.bb
+++ b/meta-oe/recipes-core/dbus/libdbus-c++_0.9.0.bb
@@ -6,15 +6,15 @@ LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
 DEPENDS = "dbus expat glib-2.0 libpcre"
 
-SRC_URI = "\
-${SOURCEFORGE_MIRROR}/project/dbus-cplusplus/dbus-c++/${PV}/${BP}.tar.gz \
-file://fix-missing-unistd.h-include.patch \
-file://remove-CXX_FOR_BUILD-stuff.patch \
-file://0001-src-eventloop.cpp-use-portable-method-for-initializi.patch \
-file://0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch \
-file://0003-Fixed-undefined-ssize_t-for-clang-3.8.0-on-FreeBSD.patch \
-file://0004-use-POSIX-poll.h-instead-of-sys-poll.h.patch \
-"
+SRC_URI = 
"${SOURCEFORGE_MIRROR}/project/dbus-cplusplus/dbus-c++/${PV}/${BP}.tar.gz \
+   file://fix-missing-unistd.h-include.patch \
+   file://remove-CXX_FOR_BUILD-stuff.patch \
+   
file://0001-src-eventloop.cpp-use-portable-method-for-initializi.patch \
+   
file://0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch \
+   
file://0003-Fixed-undefined-ssize_t-for-clang-3.8.0-on-FreeBSD.patch \
+   file://0004-use-POSIX-poll.h-instead-of-sys-poll.h.patch \
+   file://0001-pipe.c-Use-a-string-instead-of-char.patch \
+   "
 SRC_URI[md5sum] = "e752116f523fa88ef041e63d3dee4de2"
 SRC_URI[sha256sum] = 
"bc11ac297b3cb010be904c72789695543ee3fdf3d75cdc8225fd371385af4e61"
 
@@ -27,5 +27,3 @@ PACKAGE_BEFORE_PN = "${PN}-tools"
 FILES_${PN}-tools = "${bindir}"
 
 BBCLASSEXTEND = "native"
-
-PNBLACKLIST[libdbus-c++] ?= "Fails to build with RSS 
http://errors.yoctoproject.org/Errors/Details/130644/ - the recipe will be 
removed on 2017-09-01 unless the issue is fixed"
-- 
2.13.2

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


[oe] [meta-multimedia][PATCH 2/2] kodi: Fix build on powerpc

2017-07-03 Thread Khem Raj
64bit atomics are not available therefore link in libatomic

Signed-off-by: Khem Raj 
---
 meta-multimedia/recipes-mediacenter/kodi/kodi_17.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-multimedia/recipes-mediacenter/kodi/kodi_17.bb 
b/meta-multimedia/recipes-mediacenter/kodi/kodi_17.bb
index 3bc2eb591..0b39116a1 100644
--- a/meta-multimedia/recipes-mediacenter/kodi/kodi_17.bb
+++ b/meta-multimedia/recipes-mediacenter/kodi/kodi_17.bb
@@ -133,6 +133,7 @@ BUILD_OPTIMIZATION = "${FULL_OPTIMIZATION}"
 
 LDFLAGS_append_mips = " -latomic"
 LDFLAGS_append_mipsel = " -latomic"
+LDFLAGS_append_powerpc = " -latomic"
 
 EXTRA_OECONF_append = " LIBTOOL=${STAGING_BINDIR_CROSS}/${HOST_SYS}-libtool"
 
-- 
2.13.2

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


[oe] [meta-oe][PATCH] ser2net: upgrade to version 3.4

2017-07-03 Thread Maxin B. John
2.9.1 -> 3.4

Signed-off-by: Maxin B. John 
---
 .../recipes-connectivity/ser2net/{ser2net_2.9.1.bb => ser2net_3.4.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-connectivity/ser2net/{ser2net_2.9.1.bb => 
ser2net_3.4.bb} (71%)

diff --git a/meta-oe/recipes-connectivity/ser2net/ser2net_2.9.1.bb 
b/meta-oe/recipes-connectivity/ser2net/ser2net_3.4.bb
similarity index 71%
rename from meta-oe/recipes-connectivity/ser2net/ser2net_2.9.1.bb
rename to meta-oe/recipes-connectivity/ser2net/ser2net_3.4.bb
index 288c586..708650f 100644
--- a/meta-oe/recipes-connectivity/ser2net/ser2net_2.9.1.bb
+++ b/meta-oe/recipes-connectivity/ser2net/ser2net_3.4.bb
@@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=bae3019b4c6dc4138c217864bd04331f"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/project/ser2net/ser2net/ser2net-${PV}.tar.gz"
 
-SRC_URI[md5sum] = "80011ac0e60bbdcb65f1d7a86251e3f3"
-SRC_URI[sha256sum] = 
"fdee1e69903cf409bdc6f32403a566cbc6006aa9e2a4d6f8f12b90dfd5ca0d0e"
+SRC_URI[md5sum] = "562274d783534276a9feac913b7d8c4e"
+SRC_URI[sha256sum] = 
"d846066e27c3072565990745d030357aa0c278f96b7d1d4f59023347c1db8824"
 
 inherit autotools pkgconfig
 
-- 
2.4.0

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


[oe] State of bitbake world, Failed tasks 2017-07-02

2017-07-03 Thread Martin Jansa
http://www.openembedded.org/wiki/Bitbake_World_Status

== Number of issues - stats ==
{| class='wikitable'
!|Date   !!colspan='3'|Failed tasks 
!!|Signatures   
!!colspan='14'|QA !!Comment
|-
||  ||qemuarm   ||qemux86   ||qemux86_64||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   ||ldflags   ||compile-host-path 
||
|-
||2017-07-02||7 ||8 ||5 ||0 ||0 ||1 
||4 ||0 ||0 ||1238  ||1 
||0 ||0 ||0 ||0 ||0 
||0 ||0 ||
|}

== Failed tasks 2017-07-02 ==

INFO: jenkins-job.sh-1.8.24 Complete log available at
http://logs.nslu2-linux.org/buildlogs/oe/world/rocko/log.report.20170702_225940.log

=== common (3) ===
* 
meta-openembedded/meta-multimedia/recipes-mediacenter/kodi/kodi_17.bb:do_configure
* 
meta-openembedded/meta-oe/recipes-extended/fluentbit/fluentbit_0.11.11.bb:do_package
* 
virtual:native:meta-qt5/recipes-qt/qt5/qtxmlpatterns_git.bb:do_populate_sysroot

=== common-x86 (2) ===
* meta-qt5/recipes-qt/qt5/qtwebengine_git.bb:do_compile
* 
openembedded-core/meta/recipes-devtools/valgrind/valgrind_3.12.0.bb:do_compile_ptest_base

=== qemuarm (4) ===
* meta-openembedded/meta-oe/recipes-graphics/gegl/gegl_0.3.18.bb:do_fetch
* meta-openembedded/meta-oe/recipes-support/synergy/synergy_git.bb:do_fetch
* 
meta-openembedded/meta-python/recipes-devtools/python/python3-jsonschema_2.6.0.bb:do_compile
* 
meta-openembedded/meta-python/recipes-devtools/python/python3-pytest_3.1.2.bb:do_compile

=== qemux86 (1) ===
* 
meta-openembedded/meta-python/recipes-devtools/python/python-pytest_3.1.2.bb:do_compile

=== qemux86_64 (0) ===

=== Number of failed tasks (20) ===
{| class=wikitable
|-
|| qemuarm  || 7 ||
http://logs.nslu2-linux.org/buildlogs/oe/world/rocko/log.world.qemuarm.20170701_001009.log/
|| http://errors.yoctoproject.org/Errors/Build/40492/
|-
|| qemux86  || 8 ||
http://logs.nslu2-linux.org/buildlogs/oe/world/rocko/log.world.qemux86.20170701_001007.log/
|| http://errors.yoctoproject.org/Errors/Build/40495/
|-
|| qemux86_64   || 5 ||
http://logs.nslu2-linux.org/buildlogs/oe/world/rocko/log.world.qemux86-64.20170702_004648.log/
|| http://errors.yoctoproject.org/Errors/Build/40496/
|}

=== PNBLACKLISTs (15) ===

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



=== Incorrect PACKAGE_ARCH or sstate signatures (0) ===

Complete log: 
http://logs.nslu2-linux.org/buildlogs/oe/world/rocko/log.signatures.20170701_233319.log/

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