Re: [oe] [meta-oe][PATCH] net-snmp: supported cross compile for the perl embedded and perl modules

2017-06-16 Thread Wenlin Kang

On 2017年05月24日 17:57, Wenlin Kang wrote:

The patch solves two issues:
1. Supported cross compile for the perl embedded and perl modules.
2. Solved runtime depend issue.

Signed-off-by: Wenlin Kang 
---
  ...igure-fix-check-for-enable-perl-cc-checks.patch |  31 
  .../0002-configure-fix-a-cc-check-issue.patch  |  30 
  ...NGES-BUG-2712-Fix-Perl-module-compilation.patch | 186 +
  .../0004-configure-fix-incorrect-variable.patch|  30 
  .../recipes-protocols/net-snmp/net-snmp_5.7.3.bb   |  55 +-
  5 files changed, 327 insertions(+), 5 deletions(-)
  create mode 100644 
meta-networking/recipes-protocols/net-snmp/net-snmp/0001-configure-fix-check-for-enable-perl-cc-checks.patch
  create mode 100644 
meta-networking/recipes-protocols/net-snmp/net-snmp/0002-configure-fix-a-cc-check-issue.patch
  create mode 100644 
meta-networking/recipes-protocols/net-snmp/net-snmp/0003-CHANGES-BUG-2712-Fix-Perl-module-compilation.patch
  create mode 100644 
meta-networking/recipes-protocols/net-snmp/net-snmp/0004-configure-fix-incorrect-variable.patch

diff --git 
a/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-configure-fix-check-for-enable-perl-cc-checks.patch
 
b/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-configure-fix-check-for-enable-perl-cc-checks.patch
new file mode 100644
index 000..b87e9ee
--- /dev/null
+++ 
b/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-configure-fix-check-for-enable-perl-cc-checks.patch
@@ -0,0 +1,31 @@
+From c6304a3e4b8441ff0a6464c0f1f6c5229092fa32 Mon Sep 17 00:00:00 2001
+From: Niels Baggesen 
+Date: Wed, 24 May 2017 16:40:03 +0800
+Subject: [PATCH 1/4] configure: fix check for --enable-perl-cc-checks
+
+This patch comes from git://git.code.sf.net/p/net-snmp/code,
+the commit is 8f431d410b803603dc809d82e0893509615d9a11.
+
+Upstream-Status: Backport
+
+Signed-off-by: Wenlin Kang 
+---
+ configure.d/config_project_perl_python | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.d/config_project_perl_python 
b/configure.d/config_project_perl_python
+index 23f8c7e..475c843 100644
+--- a/configure.d/config_project_perl_python
 b/configure.d/config_project_perl_python
+@@ -84,7 +84,7 @@ if test "x$install_perl" != "xno" ; then
+
+ #   What compiler was used to build the perl binary?
+ #
+-if test "xenable_perl_cc_checks" != "xno" ; then
++if test "x$enable_perl_cc_checks" != "xno" ; then
+ AC_MSG_CHECKING([for Perl cc])
+ changequote(, )
+ PERLCC=`$myperl -V:cc | $myperl -n -e 'print if 
(s/^\s*cc=.([-=\w\s\/]+).;\s*/$1/);'`
+--
+1.9.1
+
diff --git 
a/meta-networking/recipes-protocols/net-snmp/net-snmp/0002-configure-fix-a-cc-check-issue.patch
 
b/meta-networking/recipes-protocols/net-snmp/net-snmp/0002-configure-fix-a-cc-check-issue.patch
new file mode 100644
index 000..76d
--- /dev/null
+++ 
b/meta-networking/recipes-protocols/net-snmp/net-snmp/0002-configure-fix-a-cc-check-issue.patch
@@ -0,0 +1,30 @@
+From 94e7e4969bc84c945dfea12d67a1e10f61973948 Mon Sep 17 00:00:00 2001
+From: Wenlin Kang 
+Date: Wed, 24 May 2017 16:45:34 +0800
+Subject: [PATCH 2/4] configure: fix a cc check issue.
+
+When has "." in cc value, the expression
+$myperl -V:cc | $myperl -n -e 'print if (s/^\s*cc=.([-=\w\s\/]+).;\s*/$1/);'
+can't get corretly the cc's value.
+
+Signed-off-by: Wenlin Kang 
+---
+ configure.d/config_project_perl_python | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.d/config_project_perl_python 
b/configure.d/config_project_perl_python
+index 475c843..22d2ad3 100644
+--- a/configure.d/config_project_perl_python
 b/configure.d/config_project_perl_python
+@@ -87,7 +87,7 @@ if test "x$install_perl" != "xno" ; then
+ if test "x$enable_perl_cc_checks" != "xno" ; then
+ AC_MSG_CHECKING([for Perl cc])
+ changequote(, )
+-PERLCC=`$myperl -V:cc | $myperl -n -e 'print if 
(s/^\s*cc=.([-=\w\s\/]+).;\s*/$1/);'`
++PERLCC=`$myperl -V:cc | $myperl -n -e 'print if 
(s/^\s*cc=.([-=\.\w\s\/]+).;\s*/$1/);'`
+ changequote([, ])
+ if test "x$PERLCC" != "x" ; then
+ AC_MSG_RESULT([$PERLCC])
+--
+1.9.1
+
diff --git 
a/meta-networking/recipes-protocols/net-snmp/net-snmp/0003-CHANGES-BUG-2712-Fix-Perl-module-compilation.patch
 
b/meta-networking/recipes-protocols/net-snmp/net-snmp/0003-CHANGES-BUG-2712-Fix-Perl-module-compilation.patch
new file mode 100644
index 000..7951234
--- /dev/null
+++ 
b/meta-networking/recipes-protocols/net-snmp/net-snmp/0003-CHANGES-BUG-2712-Fix-Perl-module-compilation.patch
@@ -0,0 +1,186 @@
+From e57fc809ad6ae522670f3dc157aadde20d968ca7 Mon Sep 17 00:00:00 2001
+From: Bart Van Assche 
+Date: Wed, 24 May 2017 17:05:03 +0800
+Subject: [PATCH 3/4] CHANGES: BUG: 2712: Fix Perl module compilation
+
+Avoid that building the Net-SNMP Perl modules fails as follows:
+
+ERROR from evaluation of /sources/net-snmp-5.7.3/perl/ASN/Makefile.PL: B

Re: [oe] [meta-filesystems][PATCH] fuse: fix SRC_URI

2017-06-16 Thread Martin Jansa
It's already in master for last 2 days:
http://git.openembedded.org/meta-openembedded/commit/?id=d3dd8bc3721f3958eb7ddeb026f7221d48daa986

On Fri, Jun 16, 2017 at 4:04 AM, Robert Yang 
wrote:

> ${P} -> ${BP}, otherwise it would fail when multilib.
>
> Signed-off-by: Robert Yang 
> ---
>  meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb
> b/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb
> index e66f3cd..87292fe 100644
> --- a/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb
> +++ b/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb
> @@ -10,7 +10,7 @@ LICENSE = "GPLv2 & LGPLv2"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
>  file://COPYING.LIB;md5=4fbd65380cdd255951079008b36451
> 6c"
>
> -SRC_URI = "https://github.com/libfuse/libfuse/releases/download/${P}
> /${P}.tar.gz \
> +SRC_URI = "https://github.com/libfuse/libfuse/releases/download/${
> BP}/${BP}.tar.gz \
> file://gold-unversioned-symbol.patch \
> file://aarch64.patch \
> file://0001-fuse-fix-the-return-value-of-help-option.patch \
> --
> 2.10.2
>
> --
> ___
> 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-filesystems][PATCH] fuse: fix SRC_URI

2017-06-16 Thread Robert Yang


On 06/16/2017 04:13 PM, Martin Jansa wrote:

It's already in master for last 2 days:
http://git.openembedded.org/meta-openembedded/commit/?id=d3dd8bc3721f3958eb7ddeb026f7221d48daa986


Sorry, I didn't see that before I sent the patch.

// Robert



On Fri, Jun 16, 2017 at 4:04 AM, Robert Yang mailto:liezhi.y...@windriver.com>> wrote:

${P} -> ${BP}, otherwise it would fail when multilib.

Signed-off-by: Robert Yang mailto:liezhi.y...@windriver.com>>
---
 meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb 
| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb
 b/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb

index e66f3cd..87292fe 100644
--- a/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb 

+++ b/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb 

@@ -10,7 +10,7 @@ LICENSE = "GPLv2 & LGPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
 
file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"

-SRC_URI =
"https://github.com/libfuse/libfuse/releases/download/${P}/${P}.tar.gz
 \
+SRC_URI =
"https://github.com/libfuse/libfuse/releases/download/${BP}/${BP}.tar.gz
 \
file://gold-unversioned-symbol.patch \
file://aarch64.patch \
file://0001-fuse-fix-the-return-value-of-help-option.patch \
--
2.10.2

--
___
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 2/3] meson: fix build/host confusion for bbclass

2017-06-16 Thread Linus Svensson

On 06/05/2017 07:23 PM, Adam C. Foltzer wrote:

Meson and Bitbake use different terminology for the build and host;
this provides the correct build machine info to Meson.

What is the difference?

As far as I understand, bitbake and meson use the same terminology. 
meson is supposed to get the build machine info from the environment, 
not the cross file.


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


[oe] [PATCH] bdwgc: add a recipe from oe-core

2017-06-16 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin 
---
 ...ac-add-check-for-NO_GETCONTEXT-definition.patch | 29 +++
 .../bdwgc/bdwgc/musl_header_fix.patch  | 27 ++
 meta-oe/recipes-support/bdwgc/bdwgc_7.6.0.bb   | 42 ++
 3 files changed, 98 insertions(+)
 create mode 100644 
meta-oe/recipes-support/bdwgc/bdwgc/0001-configure.ac-add-check-for-NO_GETCONTEXT-definition.patch
 create mode 100644 meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch
 create mode 100644 meta-oe/recipes-support/bdwgc/bdwgc_7.6.0.bb

diff --git 
a/meta-oe/recipes-support/bdwgc/bdwgc/0001-configure.ac-add-check-for-NO_GETCONTEXT-definition.patch
 
b/meta-oe/recipes-support/bdwgc/bdwgc/0001-configure.ac-add-check-for-NO_GETCONTEXT-definition.patch
new file mode 100644
index 0..8ef774f0f
--- /dev/null
+++ 
b/meta-oe/recipes-support/bdwgc/bdwgc/0001-configure.ac-add-check-for-NO_GETCONTEXT-definition.patch
@@ -0,0 +1,29 @@
+configure.ac: add check for NO_GETCONTEXT definition
+
+Signed-off-by: Samuel Martin 
+[yann.morin.1...@free.fr: add a comment, change variable name, use
+ AS_IF, remove debug traces, use AC_CHECK_FUNCS (as suggested by
+ Thomas)]
+Signed-off-by: "Yann E. MORIN" 
+Cc: Thomas Petazzoni 
+
+---
+Upstream-Status: Pending
+ configure.ac | 6 ++
+ 1 file changed, 6 insertions(+)
+
+--- bdwgc-7.2f.orig/configure.ac   2014-06-01 19:00:47.0 +0200
 bdwgc-7.2f/configure.ac2014-12-23 14:13:11.585716713 +0100
+@@ -365,6 +365,12 @@
+   AC_MSG_RESULT($ac_cv_fno_strict_aliasing)
+ fi
+ 
++# Check for getcontext (uClibc can be configured without it, for example)
++AC_CHECK_FUNCS([getcontext])
++AS_IF([test "$ac_cv_func_getcontext" = "no"],
++  [CFLAGS="$CFLAGS -DNO_GETCONTEXT"
++   CPPFLAGS="$CPPFLAGS -DNO_GETCONTEXT"])
++
+ case "$host" in
+ # While IRIX 6 has libdl for the O32 and N32 ABIs, it's missing for N64
+ # and unnecessary everywhere.
diff --git a/meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch 
b/meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch
new file mode 100644
index 0..4a1849665
--- /dev/null
+++ b/meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch
@@ -0,0 +1,27 @@
+Add missing header to avoid:
+
+| 1472659610.016355: ../git/pthread_stop_world.c: In function 
'GC_brief_async_signal_safe_sleep':
+| 1472659610.0540252: ../git/pthread_stop_world.c:397:22: error: storage size 
of 'tv' isn't known
+| 1472659610.0540252:struct timeval tv;
+| 1472659610.0540252:   ^~
+| 1472659610.054099: ../git/pthread_stop_world.c:397:22: warning: unused 
variable 'tv' [-Wunused-variable]
+| 1472659610.054099:struct timeval tv;
+| 1472659610.054099:   ^~
+| 1472659610.054099: Makefile:1530: recipe for target 'pthread_stop_world.lo' 
failed
+
+in musl builds.
+
+Upstream-Status: Pending
+
+Index: git/pthread_stop_world.c
+===
+--- git.orig/pthread_stop_world.c
 git/pthread_stop_world.c
+@@ -45,6 +45,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include "atomic_ops.h"
+ 
+ /* It's safe to call original pthread_sigmask() here.   */
diff --git a/meta-oe/recipes-support/bdwgc/bdwgc_7.6.0.bb 
b/meta-oe/recipes-support/bdwgc/bdwgc_7.6.0.bb
new file mode 100644
index 0..dcb68f028
--- /dev/null
+++ b/meta-oe/recipes-support/bdwgc/bdwgc_7.6.0.bb
@@ -0,0 +1,42 @@
+SUMMARY = "A garbage collector for C and C++"
+
+DESCRIPTION = "The Boehm-Demers-Weiser conservative garbage collector can be\
+ used as a garbage collecting replacement for C malloc or C++ new. It allows\
+ you to allocate memory basically as you normally would, without explicitly\
+ deallocating memory that is no longer useful. The collector automatically\
+ recycles memory when it determines that it can no longer be otherwise\
+ accessed.\
+  The collector is also used by a number of programming language\
+ implementations that either use C as intermediate code, want to facilitate\
+ easier interoperation with C libraries, or just prefer the simple collector\
+ interface.\
+  Alternatively, the garbage collector may be used as a leak detector for C\
+ or C++ programs, though that is not its primary goal.\
+  Empirically, this collector works with most unmodified C programs, simply\
+ by replacing malloc with GC_malloc calls, replacing realloc with GC_realloc\
+ calls, and removing free calls."
+
+HOMEPAGE = "http://www.hboehm.info/gc/";
+SECTION = "devel"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://README.QUICK;md5=4f81f24ec69726c312487c2ac740e9e3"
+
+SRCREV = "8ac1d84a40eb7a431fec1b8097e3f24b48fb23fa"
+SRC_URI = "git://github.com/ivmai/bdwgc.git \
+   
file://0001-configure.ac-add-check-for-NO_GETCONTEXT-definition.patch \
+   file://musl_header_fix.patch \
+  "
+
+FILES_${PN}-doc = "${datadir}"
+
+S = "${WORKDIR}/git"
+
+ARM_INSTRUCTION_SET = "arm"
+
+inherit autotools pkgconfig
+
+# by default use external l

[oe] [meta-browser][WIP][PATCH] chromium(-wayland): Fix build with gcc7

2017-06-16 Thread Martin Jansa
* add 2 patches to fix issues detected by gcc7

Signed-off-by: Martin Jansa 
---
 recipes-browser/chromium/chromium-browser.inc  |  2 ++
 .../files/0001-v8-fix-build-with-gcc7.patch| 20 ++
 .../files/0002-WebKit-fix-build-with-gcc7.patch| 31 ++
 3 files changed, 53 insertions(+)
 create mode 100644 
recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch
 create mode 100644 
recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch

diff --git a/recipes-browser/chromium/chromium-browser.inc 
b/recipes-browser/chromium/chromium-browser.inc
index ad8e497..08853b1 100644
--- a/recipes-browser/chromium/chromium-browser.inc
+++ b/recipes-browser/chromium/chromium-browser.inc
@@ -26,6 +26,8 @@ SRC_URI = "\
 ${@bb.utils.contains('PACKAGECONFIG', 'disable-api-keys-info-bar', 
'file://api-keys.patch;patchdir=${WORKDIR}', '', d)} \
 file://google-chrome.desktop \
 file://unset-madv-free.patch \
+file://0001-v8-fix-build-with-gcc7.patch \
+file://0002-WebKit-fix-build-with-gcc7.patch \
 "
 
 S = "${WORKDIR}/chromium-${PV}"
diff --git a/recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch 
b/recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch
new file mode 100644
index 000..0fc5bfb
--- /dev/null
+++ b/recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch
@@ -0,0 +1,20 @@
+Use the fix from nodejs:
+https://github.com/nodejs/node/commit/2a2a5565c298639b823250b571101f51210c50e8
+
+* fixes:
+| ../../git/src/v8/src/objects-body-descriptors.h: In static member function 
'static void v8::internal::FixedBodyDescriptor::IterateBody(v8::internal::HeapObject*, int)':
+| ../../git/src/v8/src/objects-body-descriptors.h:102:20: error: no matching 
function for call to 'v8::internal::FixedBodyDescriptor::IterateBody(v8::internal::HeapObject*&)'
+|  IterateBody(obj);
+| ^
+
+--- chromium-54.0.2810.2.orig/v8/src/objects-body-descriptors.h
2016-07-28 12:17:37.0 -1000
 chromium-54.0.2810.2/v8/src/objects-body-descriptors.h 2017-06-16 
01:20:50.026665439 -1000
+@@ -99,7 +99,7 @@
+ 
+   template 
+   static inline void IterateBody(HeapObject* obj, int object_size) {
+-IterateBody(obj);
++IterateBody(obj);
+   }
+ };
+ 
diff --git 
a/recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch 
b/recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch
new file mode 100644
index 000..284a83c
--- /dev/null
+++ b/recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch
@@ -0,0 +1,31 @@
+Based on qtwebengine-opensource-src-5.8.0-wtf-gcc7.patch from
+http://git.net/ml/scm-fedora-commits/2017-03/msg15697.html
+
+* Fixes:
+In file included from 
../../git/src/third_party/WebKit/Source/platform/heap/ThreadingTraits.h:14:0,
+ from 
../../git/src/third_party/WebKit/Source/platform/heap/ThreadState.h:37,
+ from 
../../git/src/third_party/WebKit/Source/platform/heap/GarbageCollected.h:8,
+ from 
../../git/src/third_party/WebKit/Source/platform/heap/Visitor.h:35,
+ from 
../../git/src/third_party/WebKit/Source/platform/heap/GCInfo.h:8,
+ from 
../../git/src/third_party/WebKit/Source/platform/heap/Heap.h:35,
+ from 
../../git/src/third_party/WebKit/Source/platform/heap/Handle.h:34,
+ from 
../../git/src/third_party/WebKit/public/platform/WebPrivatePtr.h:38,
+ from 
../../git/src/third_party/WebKit/public/platform/WebString.h:35,
+ from 
../../git/src/third_party/WebKit/Source/platform/exported/FilePathConversion.cpp:8:
+../../git/src/third_party/WebKit/Source/wtf/LinkedHashSet.h: In member 
function 'void WTF::LinkedHashSet::swap(WTF::LinkedHashSet&)':
+../../git/src/third_party/WebKit/Source/wtf/LinkedHashSet.h:549:5: error: 
there are no arguments to 'swapAnchor' that depend on a template parameter, so 
a declaration of 'swapAnchor' must be available [-fpermissive]
+ swapAnchor(m_anchor, other.m_anchor);
+ ^~
+../../git/src/third_party/WebKit/Source/wtf/LinkedHashSet.h:549:5: note: (if 
you use '-fpermissive', G++ will accept your code, but allowing the use of an 
undeclared name is deprecated)
+
+--- chromium-54.0.2810.2.orig/third_party/WebKit/Source/wtf/LinkedHashSet.h
2016-07-28 12:16:12.0 -1000
 chromium-54.0.2810.2/third_party/WebKit/Source/wtf/LinkedHashSet.h 
2017-06-16 02:19:37.928797121 -1000
+@@ -542,6 +542,8 @@
+ return *this;
+ }
+ 
++inline void swapAnchor(LinkedHashSetNodeBase& a, LinkedHashSetNodeBase& b);
++
+ template
+ inline void LinkedHashSet::swap(LinkedHashSet& other)
+ {
-- 
2.13.1

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


[oe] [PATCH 1/2] kconfig-frontends: Add recipe

2017-06-16 Thread Peter Kjellerstedt
This provides the kconfig infrastructure that is used for the Linux
kernel as a standalone package. It is not, however, intended to be
used for the kernel itself, but can be used by other packages that are
based on kconfig.

This is a verbatim copy of the corresponding recipe in OE-core since
that recipe is being removed.

Signed-off-by: Peter Kjellerstedt 
---
 .../files/0001-Fix-installation-of-.pc-files.patch | 28 +++
 ...Switch-utils-kconfig-diff-to-use-Python-3.patch | 26 ++
 .../kconfig-frontends/files/missing-mkdir.patch| 37 +++
 .../kconfig-frontends_4.10.0.1.bb  | 42 ++
 4 files changed, 133 insertions(+)
 create mode 100644 
meta-oe/recipes-devtools/kconfig-frontends/files/0001-Fix-installation-of-.pc-files.patch
 create mode 100644 
meta-oe/recipes-devtools/kconfig-frontends/files/0001-Switch-utils-kconfig-diff-to-use-Python-3.patch
 create mode 100644 
meta-oe/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch
 create mode 100644 
meta-oe/recipes-devtools/kconfig-frontends/kconfig-frontends_4.10.0.1.bb

diff --git 
a/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Fix-installation-of-.pc-files.patch
 
b/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Fix-installation-of-.pc-files.patch
new file mode 100644
index 0..57ea42e4b
--- /dev/null
+++ 
b/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Fix-installation-of-.pc-files.patch
@@ -0,0 +1,28 @@
+From 80c16b1f39402e8ce33600e5f297920a6d603090 Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin 
+Date: Thu, 27 Apr 2017 16:57:06 +0300
+Subject: [PATCH] Fix installation of .pc files
+
+They go to prefix/pkgconfig/, not prefix/pkg-config.
+
+Upstream-Status: Submitted
+Signed-off-by: Alexander Kanavin 
+---
+ Makefile.am | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index 058690a..f9e9b7b 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -107,7 +107,7 @@ EXTRA_DIST += \
+   libs/parser/yconf.y.patch
+ 
+ # libs/parser/kconfig-parser.pc generated by AC_CONFIG_FILES in configure.ac
+-pkgconfigdir = $(libdir)/pkg-config
++pkgconfigdir = $(libdir)/pkgconfig
+ pkgconfig_DATA = libs/parser/kconfig-parser.pc
+ DISTCLEANFILES += libs/parser/kconfig-parser.pc
+ EXTRA_DIST += libs/parser/kconfig-parser.pc.in
+-- 
+2.11.0
diff --git 
a/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Switch-utils-kconfig-diff-to-use-Python-3.patch
 
b/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Switch-utils-kconfig-diff-to-use-Python-3.patch
new file mode 100644
index 0..b8f890481
--- /dev/null
+++ 
b/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Switch-utils-kconfig-diff-to-use-Python-3.patch
@@ -0,0 +1,26 @@
+From 3b9b0f82c33f793a14d44bf06b6c8136bc3fc4bf Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin 
+Date: Thu, 27 Apr 2017 16:48:42 +0300
+Subject: [PATCH] Switch utils/kconfig-diff to use Python 3
+
+The script supports it, but continues to refer to 2.x in shebang.
+
+Upstream-Status: Pending
+Signed-off-by: Alexander Kanavin 
+---
+ utils/kconfig-diff | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/utils/kconfig-diff b/utils/kconfig-diff
+index 0db267d..19189f3 100755
+--- a/utils/kconfig-diff
 b/utils/kconfig-diff
+@@ -1,4 +1,4 @@
+-#!/usr/bin/python
++#!/usr/bin/env python3
+ #
+ # diffconfig - a tool to compare .config files.
+ #
+-- 
+2.11.0
+
diff --git 
a/meta-oe/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch 
b/meta-oe/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch
new file mode 100644
index 0..a11186e51
--- /dev/null
+++ b/meta-oe/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch
@@ -0,0 +1,37 @@
+Upstream-Status: Submitted
+Signed-off-by: Ross Burton 
+
+From ca05ee2fb6db5b3b1edc16dba6150a2c6078a6cf Mon Sep 17 00:00:00 2001
+From: Ross Burton 
+Date: Tue, 9 May 2017 15:30:00 +0100
+Subject: [PATCH] Makefile: ensure utils/ exists before writing to it
+
+Since utils/ was changed to not build recursively it's possible that in
+out-of-tree builds the utils/ directory hasn't been created when Make runs the
+utils/kconfig-tweak target which tries to write to file inside utils/.
+
+To ensure this can work, mkdir the directory.
+
+Signed-off-by: Ross Burton 
+---
+ Makefile.am | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/Makefile.am b/Makefile.am
+index c8e96ef..1baa110 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -173,2 +173,3 @@ bin_SCRIPTS += frontends/kconfig
+ frontends/kconfig: frontends/kconfig.in
++  $(MKDIR_P) $(@D)
+   $(AM_V_GEN)$(SED) -e 's/@KCFG_LIST@/$(kcfg_list)/g' \
+@@ -348,6 +348,7 @@ EXTRA_DIST += \
+   utils/kconfig-tweak.in.patch
+ 
+ utils/kconfig-tweak: utils/kconfig-tweak.in
++  $(MKDIR_P) $(@D)
+   $(AM_V_GEN)$(SED) -e "s/@CONFIG_@/$(config_prefix)/g" \
+   $< >$@
+   @chmod +x $@
+-- 
+2.8.1
diff --git 
a/meta-oe/recipes-devto

[oe] [PATCH 2/2] kconfig-frontends: Update to 4.11.0.1

2017-06-16 Thread Peter Kjellerstedt
No longer needed patches have been removed, and one patch has been
backported instead of using the submitted patch.

Signed-off-by: Peter Kjellerstedt 
---
 .../files/0001-Fix-installation-of-.pc-files.patch | 28 
 ...sure-frontends-exits-before-writing-into-.patch | 32 +++
 .../kconfig-frontends/files/missing-mkdir.patch| 37 --
 ...s_4.10.0.1.bb => kconfig-frontends_4.11.0.1.bb} |  9 +++---
 4 files changed, 36 insertions(+), 70 deletions(-)
 delete mode 100644 
meta-oe/recipes-devtools/kconfig-frontends/files/0001-Fix-installation-of-.pc-files.patch
 create mode 100644 
meta-oe/recipes-devtools/kconfig-frontends/files/0001-Makefile-ensure-frontends-exits-before-writing-into-.patch
 delete mode 100644 
meta-oe/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch
 rename 
meta-oe/recipes-devtools/kconfig-frontends/{kconfig-frontends_4.10.0.1.bb => 
kconfig-frontends_4.11.0.1.bb} (89%)

diff --git 
a/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Fix-installation-of-.pc-files.patch
 
b/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Fix-installation-of-.pc-files.patch
deleted file mode 100644
index 57ea42e4b..0
--- 
a/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Fix-installation-of-.pc-files.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 80c16b1f39402e8ce33600e5f297920a6d603090 Mon Sep 17 00:00:00 2001
-From: Alexander Kanavin 
-Date: Thu, 27 Apr 2017 16:57:06 +0300
-Subject: [PATCH] Fix installation of .pc files
-
-They go to prefix/pkgconfig/, not prefix/pkg-config.
-
-Upstream-Status: Submitted
-Signed-off-by: Alexander Kanavin 

- Makefile.am | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index 058690a..f9e9b7b 100644
 a/Makefile.am
-+++ b/Makefile.am
-@@ -107,7 +107,7 @@ EXTRA_DIST += \
-   libs/parser/yconf.y.patch
- 
- # libs/parser/kconfig-parser.pc generated by AC_CONFIG_FILES in configure.ac
--pkgconfigdir = $(libdir)/pkg-config
-+pkgconfigdir = $(libdir)/pkgconfig
- pkgconfig_DATA = libs/parser/kconfig-parser.pc
- DISTCLEANFILES += libs/parser/kconfig-parser.pc
- EXTRA_DIST += libs/parser/kconfig-parser.pc.in
--- 
-2.11.0
diff --git 
a/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Makefile-ensure-frontends-exits-before-writing-into-.patch
 
b/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Makefile-ensure-frontends-exits-before-writing-into-.patch
new file mode 100644
index 0..a5263c6f8
--- /dev/null
+++ 
b/meta-oe/recipes-devtools/kconfig-frontends/files/0001-Makefile-ensure-frontends-exits-before-writing-into-.patch
@@ -0,0 +1,32 @@
+From 780b0b8e48551ba49b011caeeb09101a09c14a61 Mon Sep 17 00:00:00 2001
+From: Ross Burton 
+Date: Fri, 26 May 2017 17:11:32 +0100
+Subject: [PATCH] Makefile: ensure frontends/ exits before writing into it
+
+As previously, if GCC dependencies are not being written and the build is out 
of
+tree then frontends/ won't exist so we need to create it.
+
+Upstream-Status: Backport
+Signed-off-by: Ross Burton 
+Signed-off-by: Yann E. MORIN 
+(cherry picked from commit f7986375129d1ada7dc6abeeec5b9d00ef6f7149)
+Signed-off-by: Yann E. MORIN 
+---
+ Makefile.am | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/Makefile.am b/Makefile.am
+index 1baa110..434db5d 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -171,6 +171,7 @@ if COND_kconfig
+ bin_SCRIPTS += frontends/kconfig
+ 
+ frontends/kconfig: frontends/kconfig.in
++  $(MKDIR_P) $(@D)
+   $(AM_V_GEN)$(SED) -e 's/@KCFG_LIST@/$(kcfg_list)/g' \
+   $< >$@
+   @chmod +x $@
+-- 
+2.12.0
+
diff --git 
a/meta-oe/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch 
b/meta-oe/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch
deleted file mode 100644
index a11186e51..0
--- a/meta-oe/recipes-devtools/kconfig-frontends/files/missing-mkdir.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Upstream-Status: Submitted
-Signed-off-by: Ross Burton 
-
-From ca05ee2fb6db5b3b1edc16dba6150a2c6078a6cf Mon Sep 17 00:00:00 2001
-From: Ross Burton 
-Date: Tue, 9 May 2017 15:30:00 +0100
-Subject: [PATCH] Makefile: ensure utils/ exists before writing to it
-
-Since utils/ was changed to not build recursively it's possible that in
-out-of-tree builds the utils/ directory hasn't been created when Make runs the
-utils/kconfig-tweak target which tries to write to file inside utils/.
-
-To ensure this can work, mkdir the directory.
-
-Signed-off-by: Ross Burton 

- Makefile.am | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/Makefile.am b/Makefile.am
-index c8e96ef..1baa110 100644
 a/Makefile.am
-+++ b/Makefile.am
-@@ -173,2 +173,3 @@ bin_SCRIPTS += frontends/kconfig
- frontends/kconfig: frontends/kconfig.in
-+  $(MKDIR_P) $(@D)
-   $(AM_V_GEN)$(SED) -e 's/@KCFG_LIST@/$(kcfg_list)/g' \
-@@ -348,6 +348,7 @@ EXTRA_DIST += \
-   utils/kconfig-tweak.in.patch
- 
- utils/kconfig-tweak: utils/kconfig-tweak.in
-+  $

Re: [oe] [PATCH] bdwgc: add a recipe from oe-core

2017-06-16 Thread Martin Jansa
Why should we take this to meta-oe? Please explain in commit message.

Is it just because of zile? +Randy who upgraded zile.

On Fri, Jun 16, 2017 at 2:30 PM, Alexander Kanavin <
alexander.kana...@linux.intel.com> wrote:

> Signed-off-by: Alexander Kanavin 
> ---
>  ...ac-add-check-for-NO_GETCONTEXT-definition.patch | 29 +++
>  .../bdwgc/bdwgc/musl_header_fix.patch  | 27 ++
>  meta-oe/recipes-support/bdwgc/bdwgc_7.6.0.bb   | 42
> ++
>  3 files changed, 98 insertions(+)
>  create mode 100644 meta-oe/recipes-support/bdwgc/
> bdwgc/0001-configure.ac-add-check-for-NO_GETCONTEXT-definition.patch
>  create mode 100644 meta-oe/recipes-support/bdwgc/
> bdwgc/musl_header_fix.patch
>  create mode 100644 meta-oe/recipes-support/bdwgc/bdwgc_7.6.0.bb
>
> diff --git a/meta-oe/recipes-support/bdwgc/bdwgc/0001-configure.ac-
> add-check-for-NO_GETCONTEXT-definition.patch b/meta-oe/recipes-support/
> bdwgc/bdwgc/0001-configure.ac-add-check-for-NO_GETCONTEXT-definition.patch
> new file mode 100644
> index 0..8ef774f0f
> --- /dev/null
> +++ b/meta-oe/recipes-support/bdwgc/bdwgc/0001-configure.ac-
> add-check-for-NO_GETCONTEXT-definition.patch
> @@ -0,0 +1,29 @@
> +configure.ac: add check for NO_GETCONTEXT definition
> +
> +Signed-off-by: Samuel Martin 
> +[yann.morin.1...@free.fr: add a comment, change variable name, use
> + AS_IF, remove debug traces, use AC_CHECK_FUNCS (as suggested by
> + Thomas)]
> +Signed-off-by: "Yann E. MORIN" 
> +Cc: Thomas Petazzoni 
> +
> +---
> +Upstream-Status: Pending
> + configure.ac | 6 ++
> + 1 file changed, 6 insertions(+)
> +
> +--- bdwgc-7.2f.orig/configure.ac   2014-06-01 19:00:47.0
> +0200
>  bdwgc-7.2f/configure.ac2014-12-23 14:13:11.585716713 +0100
> +@@ -365,6 +365,12 @@
> +   AC_MSG_RESULT($ac_cv_fno_strict_aliasing)
> + fi
> +
> ++# Check for getcontext (uClibc can be configured without it, for example)
> ++AC_CHECK_FUNCS([getcontext])
> ++AS_IF([test "$ac_cv_func_getcontext" = "no"],
> ++  [CFLAGS="$CFLAGS -DNO_GETCONTEXT"
> ++   CPPFLAGS="$CPPFLAGS -DNO_GETCONTEXT"])
> ++
> + case "$host" in
> + # While IRIX 6 has libdl for the O32 and N32 ABIs, it's missing for N64
> + # and unnecessary everywhere.
> diff --git a/meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch
> b/meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch
> new file mode 100644
> index 0..4a1849665
> --- /dev/null
> +++ b/meta-oe/recipes-support/bdwgc/bdwgc/musl_header_fix.patch
> @@ -0,0 +1,27 @@
> +Add missing header to avoid:
> +
> +| 1472659610.016355: ../git/pthread_stop_world.c: In function
> 'GC_brief_async_signal_safe_sleep':
> +| 1472659610.0540252: ../git/pthread_stop_world.c:397:22: error: storage
> size of 'tv' isn't known
> +| 1472659610.0540252:struct timeval tv;
> +| 1472659610.0540252:   ^~
> +| 1472659610.054099: ../git/pthread_stop_world.c:397:22: warning: unused
> variable 'tv' [-Wunused-variable]
> +| 1472659610.054099:struct timeval tv;
> +| 1472659610.054099:   ^~
> +| 1472659610.054099: Makefile:1530: recipe for target
> 'pthread_stop_world.lo' failed
> +
> +in musl builds.
> +
> +Upstream-Status: Pending
> +
> +Index: git/pthread_stop_world.c
> +===
> +--- git.orig/pthread_stop_world.c
>  git/pthread_stop_world.c
> +@@ -45,6 +45,7 @@
> + #include 
> + #include 
> + #include 
> ++#include 
> + #include "atomic_ops.h"
> +
> + /* It's safe to call original pthread_sigmask() here.   */
> diff --git a/meta-oe/recipes-support/bdwgc/bdwgc_7.6.0.bb
> b/meta-oe/recipes-support/bdwgc/bdwgc_7.6.0.bb
> new file mode 100644
> index 0..dcb68f028
> --- /dev/null
> +++ b/meta-oe/recipes-support/bdwgc/bdwgc_7.6.0.bb
> @@ -0,0 +1,42 @@
> +SUMMARY = "A garbage collector for C and C++"
> +
> +DESCRIPTION = "The Boehm-Demers-Weiser conservative garbage collector can
> be\
> + used as a garbage collecting replacement for C malloc or C++ new. It
> allows\
> + you to allocate memory basically as you normally would, without
> explicitly\
> + deallocating memory that is no longer useful. The collector
> automatically\
> + recycles memory when it determines that it can no longer be otherwise\
> + accessed.\
> +  The collector is also used by a number of programming language\
> + implementations that either use C as intermediate code, want to
> facilitate\
> + easier interoperation with C libraries, or just prefer the simple
> collector\
> + interface.\
> +  Alternatively, the garbage collector may be used as a leak detector for
> C\
> + or C++ programs, though that is not its primary goal.\
> +  Empirically, this collector works with most unmodified C programs,
> simply\
> + by replacing malloc with GC_malloc calls, replacing realloc with
> GC_realloc\
> + calls, and removing free calls."
> +
> +HOMEPAGE = "http://www.hboehm.info/gc/";
> +SECTION = "devel"
> +LICENSE = "MIT"
> +LI

Re: [oe] [PATCH] bdwgc: add a recipe from oe-core

2017-06-16 Thread Alexander Kanavin

On 06/16/2017 05:41 PM, Martin Jansa wrote:

Why should we take this to meta-oe? Please explain in commit message.

Is it just because of zile? +Randy who upgraded zile.


Yes, it's because of that. I checked latest upstream of zile, and it 
still seems to require it.


Do you want me to resend the patch?


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


[oe] [meta-python][PATCH] python-astroid: update to version 1.5.3

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python-astroid_1.4.9.bb => python-astroid_1.5.3.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-astroid_1.4.9.bb => 
python-astroid_1.5.3.bb} (74%)

diff --git a/meta-python/recipes-devtools/python/python-astroid_1.4.9.bb 
b/meta-python/recipes-devtools/python/python-astroid_1.5.3.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python-astroid_1.4.9.bb
rename to meta-python/recipes-devtools/python/python-astroid_1.5.3.bb
index cee1291..9731e0b 100644
--- a/meta-python/recipes-devtools/python/python-astroid_1.4.9.bb
+++ b/meta-python/recipes-devtools/python/python-astroid_1.5.3.bb
@@ -4,8 +4,8 @@ SECTION = "devel/python"
 LICENSE = "LGPL"
 LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
 
-SRC_URI[md5sum] = "a57438971de05eb801b82eae59c05217"
-SRC_URI[sha256sum] = 
"a483e7891ce3a06dadfc6cb9095b0938aca58940d43576d72e4502b480c085d7"
+SRC_URI[md5sum] = "6f65e4ea8290ec032320460905afb828"
+SRC_URI[sha256sum] = 
"492c2a2044adbf6a84a671b7522e9295ad2f6a7c781b899014308db25312dd35"
 
 inherit setuptools pypi
 
-- 
2.7.4

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


Re: [oe] [PATCH] bdwgc: add a recipe from oe-core

2017-06-16 Thread Randy MacLeod

On 2017-06-16 10:43 AM, Alexander Kanavin wrote:

On 06/16/2017 05:41 PM, Martin Jansa wrote:

Why should we take this to meta-oe? Please explain in commit message.

Is it just because of zile? +Randy who upgraded zile.


Yes, it's because of that. I checked latest upstream of zile, and it 
still seems to require it.


Do you want me to resend the patch?


Given that Martin said:
  "Please explain in commit message."
yes, you should send a V2 patch.

../Randy



Alex



--
# Randy MacLeod. SMTS, Linux, Wind River
Direct: 613.963.1350 | 350 Terry Fox Drive, Suite 200, Ottawa, ON, 
Canada, K2K 2W5

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


[oe] [meta-python][PATCH] python-chardet: update to version 3.0.4

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-chardet.inc| 4 ++--
 .../python/{python-chardet_3.0.2.bb => python-chardet_3.0.4.bb}   | 0
 .../python/{python3-chardet_3.0.2.bb => python3-chardet_3.0.4.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-chardet_3.0.2.bb => 
python-chardet_3.0.4.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-chardet_3.0.2.bb => 
python3-chardet_3.0.4.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-chardet.inc 
b/meta-python/recipes-devtools/python/python-chardet.inc
index 42b64a2..c5da1e1 100644
--- a/meta-python/recipes-devtools/python/python-chardet.inc
+++ b/meta-python/recipes-devtools/python/python-chardet.inc
@@ -4,5 +4,5 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=a6f89e2100d9b6cdffcea4f398e37343"
 
 inherit pypi
 
-SRC_URI[md5sum] = "96e364abdbde20b5f6dbbe2ad9d54d04"
-SRC_URI[sha256sum] = 
"4f7832e7c583348a9eddd927ee8514b3bf717c061f57b21dbe7697211454d9bb"
+SRC_URI[md5sum] = "7dd1ba7f9c77e32351b0a0cfacf4055c"
+SRC_URI[sha256sum] = 
"84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae"
diff --git a/meta-python/recipes-devtools/python/python-chardet_3.0.2.bb 
b/meta-python/recipes-devtools/python/python-chardet_3.0.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-chardet_3.0.2.bb
rename to meta-python/recipes-devtools/python/python-chardet_3.0.4.bb
diff --git a/meta-python/recipes-devtools/python/python3-chardet_3.0.2.bb 
b/meta-python/recipes-devtools/python/python3-chardet_3.0.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-chardet_3.0.2.bb
rename to meta-python/recipes-devtools/python/python3-chardet_3.0.4.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-cmd2: update to version 0.7.2

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python-cmd2_0.7.0.bb => python-cmd2_0.7.2.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-cmd2_0.7.0.bb => 
python-cmd2_0.7.2.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python-cmd2_0.7.0.bb 
b/meta-python/recipes-devtools/python/python-cmd2_0.7.2.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python-cmd2_0.7.0.bb
rename to meta-python/recipes-devtools/python/python-cmd2_0.7.2.bb
index 5c092a7..a379de0 100644
--- a/meta-python/recipes-devtools/python/python-cmd2_0.7.0.bb
+++ b/meta-python/recipes-devtools/python/python-cmd2_0.7.2.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "http://packages.python.org/cmd2/";
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = 
"file://setup.py;beginline=43;endline=43;md5=0f13c9cfc75288223cf7edd2f3b985a2"
 
-SRC_URI[md5sum] = "ee92ff1b73765d64bf230e94512d0b7a"
-SRC_URI[sha256sum] = 
"5ab76a1f07dd5fd1cc3c15ba4080265f33b80c7fd748d71bd69a51d60b30f51a"
+SRC_URI[md5sum] = "4a5b5aab407bdeb49634789f9a42902b"
+SRC_URI[sha256sum] = 
"d06301cc578a83531261121c0b11d79d29d0a80aca01ed6752c20c4cfcda2dd9"
 
 inherit pypi setuptools
 
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-lxml: update to version 3.8.0

2017-06-16 Thread Derek Straka
Verified license terms remain the same and updated the checksum

Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-lxml.inc | 6 +++---
 .../python/{python-lxml_3.7.3.bb => python-lxml_3.8.0.bb}   | 0
 .../python/{python3-lxml_3.7.3.bb => python3-lxml_3.8.0.bb} | 0
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python-lxml_3.7.3.bb => 
python-lxml_3.8.0.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-lxml_3.7.3.bb => 
python3-lxml_3.8.0.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-lxml.inc 
b/meta-python/recipes-devtools/python/python-lxml.inc
index d5e6ae4..c6ff160 100644
--- a/meta-python/recipes-devtools/python/python-lxml.inc
+++ b/meta-python/recipes-devtools/python/python-lxml.inc
@@ -7,7 +7,7 @@ C14N and much more."
 HOMEPAGE = "http://codespeak.net/lxml";
 SECTION = "devel/python"
 LICENSE = "BSD & GPLv2 & MIT & PSF"
-LIC_FILES_CHKSUM = "file://LICENSES.txt;md5=f9f1dc24f720c143c2240df41fe5073b \
+LIC_FILES_CHKSUM = "file://LICENSES.txt;md5=e4c045ebad958ead4b48008f70838403 \
 
file://doc/licenses/elementtree.txt;md5=eb34d036a6e3d56314ee49a6852ac891 \
 
file://doc/licenses/BSD.txt;md5=700a1fc17f4797d4f2d34970c8ee694b \
 
file://doc/licenses/GPL.txt;md5=94d55d512a9ba36caa9b7df079bae19f \
@@ -18,8 +18,8 @@ LIC_FILES_CHKSUM = 
"file://LICENSES.txt;md5=f9f1dc24f720c143c2240df41fe5073b \
 
 DEPENDS += "libxml2 libxslt"
 
-SRC_URI[md5sum] = "075692ce442e69bbd604d44e21c02753"
-SRC_URI[sha256sum] = 
"aa502d78a51ee7d127b4824ff96500f0181d3c7826e6ee7b800d068be79361c7"
+SRC_URI[md5sum] = "e54e2fae44d684d6b9c636fe189e93ff"
+SRC_URI[sha256sum] = 
"736f72be15caad8116891eb6aa4a078b590d231fdc63818c40c21624ac71db96"
 
 DISTUTILS_BUILD_ARGS += " \
  --with-xslt-config='pkg-config libxslt' \
diff --git a/meta-python/recipes-devtools/python/python-lxml_3.7.3.bb 
b/meta-python/recipes-devtools/python/python-lxml_3.8.0.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-lxml_3.7.3.bb
rename to meta-python/recipes-devtools/python/python-lxml_3.8.0.bb
diff --git a/meta-python/recipes-devtools/python/python3-lxml_3.7.3.bb 
b/meta-python/recipes-devtools/python/python3-lxml_3.8.0.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-lxml_3.7.3.bb
rename to meta-python/recipes-devtools/python/python3-lxml_3.8.0.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-wrapt: update to version 1.10.10

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python-wrapt_1.10.8.bb => python-wrapt_1.10.10.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-wrapt_1.10.8.bb => 
python-wrapt_1.10.10.bb} (71%)

diff --git a/meta-python/recipes-devtools/python/python-wrapt_1.10.8.bb 
b/meta-python/recipes-devtools/python/python-wrapt_1.10.10.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python-wrapt_1.10.8.bb
rename to meta-python/recipes-devtools/python/python-wrapt_1.10.10.bb
index 58aa1bd..ee50842 100644
--- a/meta-python/recipes-devtools/python/python-wrapt_1.10.8.bb
+++ b/meta-python/recipes-devtools/python/python-wrapt_1.10.10.bb
@@ -4,8 +4,8 @@ LICENSE = "BSD"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=82704725592991ea88b042d150a66303"
 
-SRC_URI[md5sum] = "7c2a7e6262acc396ef6528b3d66bd047"
-SRC_URI[sha256sum] = 
"4ea17e814e39883c6cf1bb9b0835d316b2f69f0f0882ffe7dad1ede66ba82c73"
+SRC_URI[md5sum] = "97365e906afa8b431f266866ec4e2e18"
+SRC_URI[sha256sum] = 
"42160c91b77f1bc64a955890038e02f2f72986c01d462d53cb6cb039b995cdd9"
 
 inherit setuptools pypi
 
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-pbr: update to version 3.0.1

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python-pbr_3.0.0.bb => python-pbr_3.0.1.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-pbr_3.0.0.bb => 
python-pbr_3.0.1.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python-pbr_3.0.0.bb 
b/meta-python/recipes-devtools/python/python-pbr_3.0.1.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python-pbr_3.0.0.bb
rename to meta-python/recipes-devtools/python/python-pbr_3.0.1.bb
index f1660ea..b84836a 100644
--- a/meta-python/recipes-devtools/python/python-pbr_3.0.0.bb
+++ b/meta-python/recipes-devtools/python/python-pbr_3.0.1.bb
@@ -4,8 +4,8 @@ SECTION = "devel/python"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
 
-SRC_URI[md5sum] = "b9ef99a98350a57bbe55b1142807f224"
-SRC_URI[sha256sum] = 
"568f988af109114fbfa0525dcb6836b069838360d11732736ecc82e4c15d5c12"
+SRC_URI[md5sum] = "c537dbb9756e319be25772b1fe1c05fa"
+SRC_URI[sha256sum] = 
"d7e8917458094002b9a2e0030ba60ba4c834c456071f2d0c1ccb5265992ada91"
 
 inherit pypi setuptools
 
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-jsonpatch: update to version 1.16

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python-jsonpatch_1.15.bb => python-jsonpatch_1.16.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-jsonpatch_1.15.bb => 
python-jsonpatch_1.16.bb} (71%)

diff --git a/meta-python/recipes-devtools/python/python-jsonpatch_1.15.bb 
b/meta-python/recipes-devtools/python/python-jsonpatch_1.16.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python-jsonpatch_1.15.bb
rename to meta-python/recipes-devtools/python/python-jsonpatch_1.16.bb
index f214bf2..bbc61a4 100644
--- a/meta-python/recipes-devtools/python/python-jsonpatch_1.15.bb
+++ b/meta-python/recipes-devtools/python/python-jsonpatch_1.16.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=32b15c843b7a329130f4e266a281ebb3"
 
 inherit pypi setuptools
 
-SRC_URI[md5sum] = "818d36e05d68ba90ca2b26597bd82975"
-SRC_URI[sha256sum] = 
"ae23cd08b2f7246f8f2475363501e740c4ef93f08f2a3b7b9bcfac0cc37fceb1"
+SRC_URI[md5sum] = "8ef1ceb00dcf992c9e43611f698f9279"
+SRC_URI[sha256sum] = 
"f025c28a08ce747429ee746bb21796c3b6417ec82288f8fe6514db7398f2af8a"
 
 RDEPENDS_${PN} += "${PYTHON_PN}-json ${PYTHON_PN}-jsonpointer 
${PYTHON_PN}-netclient ${PYTHON_PN}-re ${PYTHON_PN}-stringold"
 
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-monotonic: update to version 1.3

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python-monotonic_1.2.bb => python-monotonic_1.3.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-monotonic_1.2.bb => 
python-monotonic_1.3.bb} (67%)

diff --git a/meta-python/recipes-devtools/python/python-monotonic_1.2.bb 
b/meta-python/recipes-devtools/python/python-monotonic_1.3.bb
similarity index 67%
rename from meta-python/recipes-devtools/python/python-monotonic_1.2.bb
rename to meta-python/recipes-devtools/python/python-monotonic_1.3.bb
index e5c88b1..ee91d18 100644
--- a/meta-python/recipes-devtools/python/python-monotonic_1.2.bb
+++ b/meta-python/recipes-devtools/python/python-monotonic_1.3.bb
@@ -2,8 +2,8 @@ SUMMARY = "An implementation of time.monotonic() for Python 2.0 
through 3.2"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314"
 
-SRC_URI[md5sum] = "d14c93aabc3d6af25ef086b032b123cf"
-SRC_URI[sha256sum] = 
"c0e1ceca563ca6bb30b0fb047ee1002503ae6ad3585fc9c6af37a8f77ec274ba"
+SRC_URI[md5sum] = "34351251d1a67667a25cd7673d2e44bf"
+SRC_URI[sha256sum] = 
"2b469e2d7dd403f7f7f79227fe5ad551ee1e76f8bb300ae935209884b93c7c1b"
 
 inherit pypi setuptools
 
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-sqlalchemy: update to version 1.1.10

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-sqlalchemy.inc | 4 ++--
 .../{python-sqlalchemy_1.1.9.bb => python-sqlalchemy_1.1.10.bb}   | 0
 .../{python3-sqlalchemy_1.1.9.bb => python3-sqlalchemy_1.1.10.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-sqlalchemy_1.1.9.bb => 
python-sqlalchemy_1.1.10.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.1.9.bb => 
python3-sqlalchemy_1.1.10.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-sqlalchemy.inc 
b/meta-python/recipes-devtools/python/python-sqlalchemy.inc
index 07e70d7..d2a7be5 100644
--- a/meta-python/recipes-devtools/python/python-sqlalchemy.inc
+++ b/meta-python/recipes-devtools/python/python-sqlalchemy.inc
@@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=452f4b8adb0feba42e5be5f1fbfbf538"
 PYPI_PACKAGE = "SQLAlchemy"
 inherit pypi
 
-SRC_URI[md5sum] = "938b1e5ca2372c3ec9a586996a3b5653"
-SRC_URI[sha256sum] = 
"b65cdc73cd348448ef0164f6c77d45a9f27ca575d3c5d71ccc33adf684bc6ef0"
+SRC_URI[md5sum] = "64b9a3bf34e17944f844cbf460bd14e6"
+SRC_URI[sha256sum] = 
"dbd92b8af2306d600efa98ed36262d73aad227440a758c8dc3a067ca30096bd3"
 
 RDEPENDS_${PN} += " \
 ${PYTHON_PN}-json \
diff --git a/meta-python/recipes-devtools/python/python-sqlalchemy_1.1.9.bb 
b/meta-python/recipes-devtools/python/python-sqlalchemy_1.1.10.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-sqlalchemy_1.1.9.bb
rename to meta-python/recipes-devtools/python/python-sqlalchemy_1.1.10.bb
diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.1.9.bb 
b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.1.10.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.1.9.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.1.10.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-setuptools-scm: update to version 1.15.6

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-setuptools-scm.inc | 4 ++--
 ...ython-setuptools-scm_1.15.0.bb => python-setuptools-scm_1.15.6.bb} | 0
 ...hon3-setuptools-scm_1.15.0.bb => python3-setuptools-scm_1.15.6.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-setuptools-scm_1.15.0.bb => 
python-setuptools-scm_1.15.6.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-setuptools-scm_1.15.0.bb 
=> python3-setuptools-scm_1.15.6.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-setuptools-scm.inc 
b/meta-python/recipes-devtools/python/python-setuptools-scm.inc
index 3249870..81bbf33 100644
--- a/meta-python/recipes-devtools/python/python-setuptools-scm.inc
+++ b/meta-python/recipes-devtools/python/python-setuptools-scm.inc
@@ -2,8 +2,8 @@ SUMMARY = "the blessed package to manage your versions by scm 
tags"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=838c366f69b72c5df05c96dff79b35f2"
 
-SRC_URI[md5sum] = "b6916c78ed6253d6602444fad4279c5b"
-SRC_URI[sha256sum] = 
"daf12d05aa2155a46aa357453757ffdc47d87f839e62114f042bceac6a619e2f"
+SRC_URI[md5sum] = "f17493d53f0d842bb0152f214775640b"
+SRC_URI[sha256sum] = 
"49ab4685589986a42da85706b3311a2f74f1af567d39fee6cb1e088d7a75fb5f"
 
 PYPI_PACKAGE = "setuptools_scm"
 inherit pypi
diff --git 
a/meta-python/recipes-devtools/python/python-setuptools-scm_1.15.0.bb 
b/meta-python/recipes-devtools/python/python-setuptools-scm_1.15.6.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-setuptools-scm_1.15.0.bb
rename to meta-python/recipes-devtools/python/python-setuptools-scm_1.15.6.bb
diff --git 
a/meta-python/recipes-devtools/python/python3-setuptools-scm_1.15.0.bb 
b/meta-python/recipes-devtools/python/python3-setuptools-scm_1.15.6.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-setuptools-scm_1.15.0.bb
rename to meta-python/recipes-devtools/python/python3-setuptools-scm_1.15.6.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-gevent: update to version 1.2.2

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-gevent.inc   | 6 +++---
 .../python/{python-gevent_1.2.1.bb => python-gevent_1.2.2.bb}   | 0
 .../python/{python3-gevent_1.2.1.bb => python3-gevent_1.2.2.bb} | 0
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python-gevent_1.2.1.bb => 
python-gevent_1.2.2.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-gevent_1.2.1.bb => 
python3-gevent_1.2.2.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-gevent.inc 
b/meta-python/recipes-devtools/python/python-gevent.inc
index deeceae..8889cfb 100644
--- a/meta-python/recipes-devtools/python/python-gevent.inc
+++ b/meta-python/recipes-devtools/python/python-gevent.inc
@@ -3,7 +3,7 @@ DESCRIPTION = "gevent is a coroutine-based Python networking 
library that uses g
 a high-level synchronous API on top of the libevent event loop."
 HOMEPAGE = "http://www.gevent.org";
 LICENSE = "MIT & Python-2.0 & BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=2dbb33d00e1fd31c7041460a81ac0bd2 \
+LIC_FILES_CHKSUM = "file://LICENSE;md5=4de99aac27b470c29c6c309e0c279b65 \
 file://NOTICE;md5=5966cd2c6582656d28ab3c33da3860f8 \
 
file://deps/libev/LICENSE;md5=d6ad416afd040c90698edcdf1cbee347"
 DEPENDS += "libevent"
@@ -20,8 +20,8 @@ SRC_URI_append = " \
 file://libev-conf.patch;patch=1;pnum=1 \
 "
 
-SRC_URI[md5sum] = "6700a2433c8e0635425e6798760efc81"
-SRC_URI[sha256sum] = 
"3de300d0e32c31311e426e4d5d73b36777ed99c2bac3f8fbad939eeb2c29fa7c"
+SRC_URI[md5sum] = "7f0baf355384fe5ff2ecf66853422554"
+SRC_URI[sha256sum] = 
"4791c8ae9c57d6f153354736e1ccab1e2baf6c8d9ae5a77a9ac90f41e2966b2d"
 
 # The python-gevent has no autoreconf ability
 # and the logic for detecting a cross compile is flawed
diff --git a/meta-python/recipes-devtools/python/python-gevent_1.2.1.bb 
b/meta-python/recipes-devtools/python/python-gevent_1.2.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-gevent_1.2.1.bb
rename to meta-python/recipes-devtools/python/python-gevent_1.2.2.bb
diff --git a/meta-python/recipes-devtools/python/python3-gevent_1.2.1.bb 
b/meta-python/recipes-devtools/python/python3-gevent_1.2.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-gevent_1.2.1.bb
rename to meta-python/recipes-devtools/python/python3-gevent_1.2.2.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-serpent: update to version 1.22

2017-06-16 Thread Derek Straka
Verify the license terms have not changed and update checksum based on the
latest PKG-INFO

Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-serpent.inc  | 6 +++---
 .../python/{python-serpent_1.19.bb => python-serpent_1.22.bb}   | 0
 .../python/{python3-serpent_1.19.bb => python3-serpent_1.22.bb} | 0
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python-serpent_1.19.bb => 
python-serpent_1.22.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-serpent_1.19.bb => 
python3-serpent_1.22.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-serpent.inc 
b/meta-python/recipes-devtools/python/python-serpent.inc
index 0b1aa91..8b98043 100644
--- a/meta-python/recipes-devtools/python/python-serpent.inc
+++ b/meta-python/recipes-devtools/python/python-serpent.inc
@@ -1,9 +1,9 @@
 SUMMARY = "Serialization based on ast.literal_eval"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=3773e39c491bb1f9ccc98389d57169d7"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=dd6e89638fc70146d17dd7087fa817ae"
 
-SRC_URI[md5sum] = "cdef596f727cb6b4176c89769d2d41ee"
-SRC_URI[sha256sum] = 
"946b2c837f889971df3575af9dadd8f09bfe48549ebc1b9f6434263b653707ce"
+SRC_URI[md5sum] = "6950f234edcacfa1d31b6655ac3c6256"
+SRC_URI[sha256sum] = 
"a67ca57082b00ea734854d751ab19e8a49d4ea0d4be7194985da35863fb9fb19"
 
 inherit pypi
 
diff --git a/meta-python/recipes-devtools/python/python-serpent_1.19.bb 
b/meta-python/recipes-devtools/python/python-serpent_1.22.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-serpent_1.19.bb
rename to meta-python/recipes-devtools/python/python-serpent_1.22.bb
diff --git a/meta-python/recipes-devtools/python/python3-serpent_1.19.bb 
b/meta-python/recipes-devtools/python/python3-serpent_1.22.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-serpent_1.19.bb
rename to meta-python/recipes-devtools/python/python3-serpent_1.22.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-selectors34: update to version 1.2

2017-06-16 Thread Derek Straka
Verify the license remains the same and update the checksum

Signed-off-by: Derek Straka 
---
 .../recipes-devtools/python/python-selectors34_1.1.bb| 12 
 .../recipes-devtools/python/python-selectors34_1.2.bb| 12 
 2 files changed, 12 insertions(+), 12 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python/python-selectors34_1.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python-selectors34_1.2.bb

diff --git a/meta-python/recipes-devtools/python/python-selectors34_1.1.bb 
b/meta-python/recipes-devtools/python/python-selectors34_1.1.bb
deleted file mode 100644
index 1982418..000
--- a/meta-python/recipes-devtools/python/python-selectors34_1.1.bb
+++ /dev/null
@@ -1,12 +0,0 @@
-SUMMARY = "Backport of the selectors module from Python 3.4"
-LICENSE = "PSF"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=1cfbbf590d8d5b7fe937516217b778b3"
-
-SRC_URI[md5sum] = "403194b10f35a5258e0642712fdd3753"
-SRC_URI[sha256sum] = 
"84b3743b9046461aebbcd13c15e79ab91e79acfb6e030b54a0ec6360ae0bbc52"
-
-inherit pypi setuptools
-
-RDEPENDS_${PN} += "\
-${PYTHON_PN}-six \
-"
diff --git a/meta-python/recipes-devtools/python/python-selectors34_1.2.bb 
b/meta-python/recipes-devtools/python/python-selectors34_1.2.bb
new file mode 100644
index 000..69545eb
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-selectors34_1.2.bb
@@ -0,0 +1,12 @@
+SUMMARY = "Backport of the selectors module from Python 3.4"
+LICENSE = "PSF"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=2fae0222c31d6c10488d4ab93a863af7"
+
+SRC_URI[md5sum] = "bc855a1c8839a811476c019dc07d92dd"
+SRC_URI[sha256sum] = 
"09f5066337f8a76fb5233f267873f89a27a17c10bf79575954894bb71686451c"
+
+inherit pypi setuptools
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-six \
+"
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-py: update to version 1.4.34

2017-06-16 Thread Derek Straka
Verify the license terms remain the same and update the checksum

Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-py.inc   | 6 +++---
 .../python/{python-py_1.4.32.bb => python-py_1.4.34.bb} | 0
 .../python/{python3-py_1.4.32.bb => python3-py_1.4.34.bb}   | 0
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python-py_1.4.32.bb => 
python-py_1.4.34.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-py_1.4.32.bb => 
python3-py_1.4.34.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-py.inc 
b/meta-python/recipes-devtools/python/python-py.inc
index 4ac502e..cfead95 100644
--- a/meta-python/recipes-devtools/python/python-py.inc
+++ b/meta-python/recipes-devtools/python/python-py.inc
@@ -1,8 +1,8 @@
 SUMMARY = "Library with cross-python path, ini-parsing, io, code, log 
facilities"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=a6bb0320b04a0a503f12f69fea479de9"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=b506f3df287708b2f99588b5cc351091"
 
-SRC_URI[md5sum] = "68ee0b5867282595d0b410a7f3c03ab3"
-SRC_URI[sha256sum] = 
"c4b89fd1ff1162375115608d01f77c38cca1d0f28f37fd718005e19b28be41a7"
+SRC_URI[md5sum] = "d9c3d8f734b0819ff48e355d77bf1730"
+SRC_URI[sha256sum] = 
"0f2d585d22050e90c7d293b6451c83db097df77871974d90efd5a30dc12fcde3"
 
 BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python-py_1.4.32.bb 
b/meta-python/recipes-devtools/python/python-py_1.4.34.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-py_1.4.32.bb
rename to meta-python/recipes-devtools/python/python-py_1.4.34.bb
diff --git a/meta-python/recipes-devtools/python/python3-py_1.4.32.bb 
b/meta-python/recipes-devtools/python/python3-py_1.4.34.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-py_1.4.32.bb
rename to meta-python/recipes-devtools/python/python3-py_1.4.34.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-isort: update to version 4.2.15

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python-isort_4.2.5.bb => python-isort_4.2.15.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-isort_4.2.5.bb => 
python-isort_4.2.15.bb} (66%)

diff --git a/meta-python/recipes-devtools/python/python-isort_4.2.5.bb 
b/meta-python/recipes-devtools/python/python-isort_4.2.15.bb
similarity index 66%
rename from meta-python/recipes-devtools/python/python-isort_4.2.5.bb
rename to meta-python/recipes-devtools/python/python-isort_4.2.15.bb
index e365dc6..b310fda 100644
--- a/meta-python/recipes-devtools/python/python-isort_4.2.5.bb
+++ b/meta-python/recipes-devtools/python/python-isort_4.2.15.bb
@@ -4,8 +4,8 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
 
-SRC_URI[md5sum] = "71489ebd936429d5bda2af7ae662ed78"
-SRC_URI[sha256sum] = 
"56b20044f43cf6e6783fe95d054e754acca52dd43fbe9277c1bdff835537ea5c"
+SRC_URI[md5sum] = "34915a2ce60e6fe3dbcbf5982deef9b4"
+SRC_URI[sha256sum] = 
"79f46172d3a4e2e53e7016e663cc7a8b538bec525c36675fcfd2767df30b3983"
 
 inherit setuptools pypi
 
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-unidiff: update to version 0.5.4

2017-06-16 Thread Derek Straka
Remove do_install_append that no longer applies

Signed-off-by: Derek Straka 
---
 .../recipes-devtools/python/python-unidiff_0.5.3.bb   | 15 ---
 .../recipes-devtools/python/python-unidiff_0.5.4.bb   |  9 +
 2 files changed, 9 insertions(+), 15 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-unidiff_0.5.3.bb
 create mode 100644 meta-python/recipes-devtools/python/python-unidiff_0.5.4.bb

diff --git a/meta-python/recipes-devtools/python/python-unidiff_0.5.3.bb 
b/meta-python/recipes-devtools/python/python-unidiff_0.5.3.bb
deleted file mode 100644
index 6d40cca..000
--- a/meta-python/recipes-devtools/python/python-unidiff_0.5.3.bb
+++ /dev/null
@@ -1,15 +0,0 @@
-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] = "31a61729e64ee409135a2ccec80c7104"
-SRC_URI[sha256sum] = 
"79b4be3e5479dfc6d77747d23ec98200559ca6a842fad1f92c2a7eb56b99195b"
-
-inherit  pypi setuptools
-
-U = "${D}${LIBDIR}${PYTHON_SITEPACKAGES_DIR}"
-
-do_install_append (){
-mv ${U}/tests ${U}/unidiff/
-}
diff --git a/meta-python/recipes-devtools/python/python-unidiff_0.5.4.bb 
b/meta-python/recipes-devtools/python/python-unidiff_0.5.4.bb
new file mode 100644
index 000..ceb80bd
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-unidiff_0.5.4.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] = "c8099edf89d2e3bac16123766625a38b"
+SRC_URI[sha256sum] = 
"a7baf71846a68c5305a7d6005dfb5eca8798f13861176355a285cbda3206824d"
+
+inherit  pypi setuptools
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-gsocketpool: update to version 0.1.6

2017-06-16 Thread Derek Straka
Remove patch that has been applied upstream in this release

Signed-off-by: Derek Straka 
---
 .../files/0001-fix_setup_py.patch  | 35 --
 .../python-gsocketpool/python-gsocketpool.inc  |  8 ++---
 ...etpool_0.1.5.bb => python-gsocketpool_0.1.6.bb} |  0
 ...tpool_0.1.5.bb => python3-gsocketpool_0.1.6.bb} |  0
 4 files changed, 2 insertions(+), 41 deletions(-)
 delete mode 100644 
meta-python/recipes-connectivity/python-gsocketpool/files/0001-fix_setup_py.patch
 rename 
meta-python/recipes-connectivity/python-gsocketpool/{python-gsocketpool_0.1.5.bb
 => python-gsocketpool_0.1.6.bb} (100%)
 rename 
meta-python/recipes-connectivity/python-gsocketpool/{python3-gsocketpool_0.1.5.bb
 => python3-gsocketpool_0.1.6.bb} (100%)

diff --git 
a/meta-python/recipes-connectivity/python-gsocketpool/files/0001-fix_setup_py.patch
 
b/meta-python/recipes-connectivity/python-gsocketpool/files/0001-fix_setup_py.patch
deleted file mode 100644
index a9135a3..000
--- 
a/meta-python/recipes-connectivity/python-gsocketpool/files/0001-fix_setup_py.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 2d47a5df58802173bf90d760b1d6f520aeea76fc Mon Sep 17 00:00:00 2001
-From: Andrej Rode 
-Date: Mon, 10 Apr 2017 16:47:41 -0700
-Subject: [PATCH] setup: remove find_packages since that would install tests as
- a package as well
-
-Signed-off-by: Andrej Rode 

- setup.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index 6b37016..a1f11a7 100644
 a/setup.py
-+++ b/setup.py
-@@ -1,6 +1,6 @@
- # -*- coding: utf-8 -*-
- 
--from setuptools import setup, find_packages
-+from setuptools import setup
- 
- setup(
- name='gsocketpool',
-@@ -9,7 +9,7 @@ setup(
- author='Studio Ousia',
- author_email='ik...@ousia.jp',
- url='http://github.com/studio-ousia/gsocketpool',
--packages=find_packages(),
-+packages=['gsocketpool'],
- license=open('LICENSE').read(),
- include_package_data=True,
- classifiers=(
--- 
-2.10.2
-
diff --git 
a/meta-python/recipes-connectivity/python-gsocketpool/python-gsocketpool.inc 
b/meta-python/recipes-connectivity/python-gsocketpool/python-gsocketpool.inc
index 54dd49f..11971dc 100644
--- a/meta-python/recipes-connectivity/python-gsocketpool/python-gsocketpool.inc
+++ b/meta-python/recipes-connectivity/python-gsocketpool/python-gsocketpool.inc
@@ -6,11 +6,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=4ba825394aec026b5f94edca44426859"
 DEPENDS += "${PYTHON_PN}-gevent"
 RDEPENDS_${PN} += "${PYTHON_PN}-gevent"
 
-SRC_URI_append = " \
-file://0001-fix_setup_py.patch;patch=1;pnum=1 \
-"
-
-SRC_URI[md5sum] = "04f618864b18d6b06f774994f172ef49"
-SRC_URI[sha256sum] = 
"b6b73deab9bcbc428d4813697eebe5c3b9c40a971f62e13607b881aa749af9d0"
+SRC_URI[md5sum] = "49f5f292ef1b60944ae92ca426a5e550"
+SRC_URI[sha256sum] = 
"f2e2749aceadce6b27ca52e2b0a64af99797746a8681e1a2963f72007c14cb14"
 
 inherit pypi
diff --git 
a/meta-python/recipes-connectivity/python-gsocketpool/python-gsocketpool_0.1.5.bb
 
b/meta-python/recipes-connectivity/python-gsocketpool/python-gsocketpool_0.1.6.bb
similarity index 100%
rename from 
meta-python/recipes-connectivity/python-gsocketpool/python-gsocketpool_0.1.5.bb
rename to 
meta-python/recipes-connectivity/python-gsocketpool/python-gsocketpool_0.1.6.bb
diff --git 
a/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.5.bb
 
b/meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
similarity index 100%
rename from 
meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.5.bb
rename to 
meta-python/recipes-connectivity/python-gsocketpool/python3-gsocketpool_0.1.6.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-zopeinterface: update to version 4.4.2

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-zopeinterface.inc  | 4 ++--
 .../{python-zopeinterface_4.3.3.bb => python-zopeinterface_4.4.2.bb}  | 0
 ...{python3-zopeinterface_4.3.3.bb => python3-zopeinterface_4.4.2.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-zopeinterface_4.3.3.bb => 
python-zopeinterface_4.4.2.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-zopeinterface_4.3.3.bb => 
python3-zopeinterface_4.4.2.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-zopeinterface.inc 
b/meta-python/recipes-devtools/python/python-zopeinterface.inc
index 1ea6114..8cc613b 100644
--- a/meta-python/recipes-devtools/python/python-zopeinterface.inc
+++ b/meta-python/recipes-devtools/python/python-zopeinterface.inc
@@ -2,8 +2,8 @@ SUMMARY = "Interface definitions for Zope products"
 LICENSE = "ZPL-2.1"
 LIC_FILES_CHKSUM = 
"file://PKG-INFO;beginline=8;endline=8;md5=e54fd776274c1b7423ec128974bd9d46"
 
-SRC_URI[md5sum] = "ba3f32eacaea66094b7e2ae2788cec89"
-SRC_URI[sha256sum] = 
"8780ef68ca8c3fe1abb30c058a59015129d6e04a6b02c2e56b9c7de6078dfa88"
+SRC_URI[md5sum] = "d69131352ef06753388c3da09cd8c8aa"
+SRC_URI[sha256sum] = 
"4e59e427200201f69ef82956ddf9e527891becf5b7cde8ec3ce39e1d0e262eb0"
 
 PYPI_PACKAGE = "zope.interface"
 
diff --git a/meta-python/recipes-devtools/python/python-zopeinterface_4.3.3.bb 
b/meta-python/recipes-devtools/python/python-zopeinterface_4.4.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-zopeinterface_4.3.3.bb
rename to meta-python/recipes-devtools/python/python-zopeinterface_4.4.2.bb
diff --git a/meta-python/recipes-devtools/python/python3-zopeinterface_4.3.3.bb 
b/meta-python/recipes-devtools/python/python3-zopeinterface_4.4.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-zopeinterface_4.3.3.bb
rename to meta-python/recipes-devtools/python/python3-zopeinterface_4.4.2.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-urllib3: update to version 1.21.1

2017-06-16 Thread Derek Straka
Verify license terms remain the same and update checksum

Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-urllib3.inc  | 6 +++---
 .../python/{python-urllib3_1.2.bb => python-urllib3_1.21.1.bb}  | 0
 .../python/{python3-urllib3_1.2.bb => python3-urllib3_1.21.1.bb}| 0
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python-urllib3_1.2.bb => 
python-urllib3_1.21.1.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-urllib3_1.2.bb => 
python3-urllib3_1.21.1.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-urllib3.inc 
b/meta-python/recipes-devtools/python/python-urllib3.inc
index 485f57f..8f31c27 100644
--- a/meta-python/recipes-devtools/python/python-urllib3.inc
+++ b/meta-python/recipes-devtools/python/python-urllib3.inc
@@ -1,10 +1,10 @@
 SUMMARY = "Python HTTP library with thread-safe connection pooling, file post 
support, sanity friendly, and more"
 HOMEPAGE = "https://github.com/shazow/urllib3";
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=06dfcbb88fb0787a2039e26af11276f5"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ea114851ad9a8c311aac8728a681a067"
 
-SRC_URI[md5sum] = "e62d42006807308fea9556c17af8e250"
-SRC_URI[sha256sum] = 
"cc49b66adcb45e19c6944cff35eedb60ee2228f0afba51f4da29c47e7a398f15"
+SRC_URI[md5sum] = "ef6c72c79b9c6bcd68c204f9b92abc86"
+SRC_URI[sha256sum] = 
"b14486978518ca0901a76ba973d7821047409d7f726f22156b24e83fd71382a5"
 
 RDEPENDS_${PN} += "\
 ${PYTHON_PN}-certifi \
diff --git a/meta-python/recipes-devtools/python/python-urllib3_1.2.bb 
b/meta-python/recipes-devtools/python/python-urllib3_1.21.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-urllib3_1.2.bb
rename to meta-python/recipes-devtools/python/python-urllib3_1.21.1.bb
diff --git a/meta-python/recipes-devtools/python/python3-urllib3_1.2.bb 
b/meta-python/recipes-devtools/python/python3-urllib3_1.21.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-urllib3_1.2.bb
rename to meta-python/recipes-devtools/python/python3-urllib3_1.21.1.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH 1/2] python-cryptography-vectors: update to version 1.9

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-cryptography-vectors.inc   | 4 ++--
 ...yptography-vectors_1.8.1.bb => python-cryptography-vectors_1.9.bb} | 0
 ...ptography-vectors_1.8.1.bb => python3-cryptography-vectors_1.9.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename 
meta-python/recipes-devtools/python/{python-cryptography-vectors_1.8.1.bb => 
python-cryptography-vectors_1.9.bb} (100%)
 rename 
meta-python/recipes-devtools/python/{python3-cryptography-vectors_1.8.1.bb => 
python3-cryptography-vectors_1.9.bb} (100%)

diff --git 
a/meta-python/recipes-devtools/python/python-cryptography-vectors.inc 
b/meta-python/recipes-devtools/python/python-cryptography-vectors.inc
index 4481c1d..1aa7dfa 100644
--- a/meta-python/recipes-devtools/python/python-cryptography-vectors.inc
+++ b/meta-python/recipes-devtools/python/python-cryptography-vectors.inc
@@ -7,8 +7,8 @@ DEPENDS += " \
 ${PYTHON_PN}-cryptography \
 "
 
-SRC_URI[md5sum] = "e6ee71f1cc9950e3df026bef69e5fdcb"
-SRC_URI[sha256sum] = 
"2fd61facea08800ca98ac923f6d02f48a7ae6648025b29cdeb51987c1532add6"
+SRC_URI[md5sum] = "85630ca5c06573ef21ec0e7d6f9ba142"
+SRC_URI[sha256sum] = 
"bbf767727ad1b9d4cb684fb2b36db4cc78bd420fa6999e7e6ca1aab8c30d78f3"
 
 PYPI_PACKAGE = "cryptography_vectors"
 
diff --git 
a/meta-python/recipes-devtools/python/python-cryptography-vectors_1.8.1.bb 
b/meta-python/recipes-devtools/python/python-cryptography-vectors_1.9.bb
similarity index 100%
rename from 
meta-python/recipes-devtools/python/python-cryptography-vectors_1.8.1.bb
rename to meta-python/recipes-devtools/python/python-cryptography-vectors_1.9.bb
diff --git 
a/meta-python/recipes-devtools/python/python3-cryptography-vectors_1.8.1.bb 
b/meta-python/recipes-devtools/python/python3-cryptography-vectors_1.9.bb
similarity index 100%
rename from 
meta-python/recipes-devtools/python/python3-cryptography-vectors_1.8.1.bb
rename to 
meta-python/recipes-devtools/python/python3-cryptography-vectors_1.9.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH 2/2] python-cryptography: update to version 1.9

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-cryptography.inc   | 4 ++--
 .../{python-cryptography_1.8.1.bb => python-cryptography_1.9.bb}  | 0
 .../{python3-cryptography_1.8.1.bb => python3-cryptography_1.9.bb}| 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-cryptography_1.8.1.bb => 
python-cryptography_1.9.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-cryptography_1.8.1.bb => 
python3-cryptography_1.9.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-cryptography.inc 
b/meta-python/recipes-devtools/python/python-cryptography.inc
index 5339e6a..9a74e8e 100644
--- a/meta-python/recipes-devtools/python/python-cryptography.inc
+++ b/meta-python/recipes-devtools/python/python-cryptography.inc
@@ -9,8 +9,8 @@ DEPENDS += " \
 ${PYTHON_PN}-six \
 "
 
-SRC_URI[md5sum] = "9f28a9c141995cd2300d0976b4fac3fb"
-SRC_URI[sha256sum] = 
"323524312bb467565ebca7e50c8ae5e9674e544951d28a2904a50012a8828190"
+SRC_URI[md5sum] = "1529f12fb403c9a0045277cb73df766c"
+SRC_URI[sha256sum] = 
"5518337022718029e367d982642f3e3523541e098ad671672a90b82474c84882"
 
 RDEPENDS_${PN} += " \
 ${PYTHON_PN}-cffi \
diff --git a/meta-python/recipes-devtools/python/python-cryptography_1.8.1.bb 
b/meta-python/recipes-devtools/python/python-cryptography_1.9.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-cryptography_1.8.1.bb
rename to meta-python/recipes-devtools/python/python-cryptography_1.9.bb
diff --git a/meta-python/recipes-devtools/python/python3-cryptography_1.8.1.bb 
b/meta-python/recipes-devtools/python/python3-cryptography_1.9.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-cryptography_1.8.1.bb
rename to meta-python/recipes-devtools/python/python3-cryptography_1.9.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python3-multidict: update to version 2.1.6

2017-06-16 Thread Derek Straka
Drop patch incorporated in upstream release

Signed-off-by: Derek Straka 
---
 ...w-calling-make-clean-without-sphinx-build.patch | 34 --
 .../python/python3-multidict_2.1.4.bb  | 11 ---
 .../python/python3-multidict_2.1.6.bb  |  9 ++
 3 files changed, 9 insertions(+), 45 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python/python3-multidict/0001-Allow-calling-make-clean-without-sphinx-build.patch
 delete mode 100644 
meta-python/recipes-devtools/python/python3-multidict_2.1.4.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-multidict_2.1.6.bb

diff --git 
a/meta-python/recipes-devtools/python/python3-multidict/0001-Allow-calling-make-clean-without-sphinx-build.patch
 
b/meta-python/recipes-devtools/python/python3-multidict/0001-Allow-calling-make-clean-without-sphinx-build.patch
deleted file mode 100644
index d1d7ef5..000
--- 
a/meta-python/recipes-devtools/python/python3-multidict/0001-Allow-calling-make-clean-without-sphinx-build.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 39e13b4e3f7a1d1dd748e80cee241d511865d4e8 Mon Sep 17 00:00:00 2001
-From: Pascal Bach 
-Date: Mon, 16 Jan 2017 21:29:12 +0100
-Subject: [PATCH] Allow calling make clean without sphinx-build
-
-Currently make clean fails without sphinx-build installed
-However sphinx-build is not really necessary to do a clean.
-This trick makes the docs/Makefile use the false binary instead of
-sphinx-build for the check when a clean is done.
-
-Upstream-Status: Submitted https://github.com/aio-libs/multidict/pull/41
-

- Makefile | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 8f525f3..6d601e5 100644
 a/Makefile
-+++ b/Makefile
-@@ -51,8 +51,8 @@ clean:
-   rm -rf coverage
-   rm -rf build
-   rm -rf cover
--  make -C docs clean
--  python setup.py clean
-+  make -C docs clean SPHINXBUILD=false
-+  python3 setup.py clean
-   rm -f multidict/_multidict.html
-   rm -f multidict/_multidict.c
-   rm -f multidict/_multidict.*.so
--- 
-2.7.4
-
diff --git a/meta-python/recipes-devtools/python/python3-multidict_2.1.4.bb 
b/meta-python/recipes-devtools/python/python3-multidict_2.1.4.bb
deleted file mode 100644
index 62895d2..000
--- a/meta-python/recipes-devtools/python/python3-multidict_2.1.4.bb
+++ /dev/null
@@ -1,11 +0,0 @@
-SUMMARY = "Multidicts are useful for working with HTTP headers, URL query args 
etc."
-HOMEPAGE = "https://github.com/aio-libs/multidict/";
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
-
-inherit pypi setuptools3
-
-SRC_URI += "file://0001-Allow-calling-make-clean-without-sphinx-build.patch"
-
-SRC_URI[md5sum] = "051d92edec87fd98e43ea83f3ce6072d"
-SRC_URI[sha256sum] = 
"a77aa8c9f68846c3b5db43ff8ed2a7a884dbe845d01f55113a3fba78518c4cd7"
diff --git a/meta-python/recipes-devtools/python/python3-multidict_2.1.6.bb 
b/meta-python/recipes-devtools/python/python3-multidict_2.1.6.bb
new file mode 100644
index 000..646cb77
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-multidict_2.1.6.bb
@@ -0,0 +1,9 @@
+SUMMARY = "Multidicts are useful for working with HTTP headers, URL query args 
etc."
+HOMEPAGE = "https://github.com/aio-libs/multidict/";
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=e74c98abe0de8f798ca609137f9cef4a"
+
+inherit pypi setuptools3
+
+SRC_URI[md5sum] = "7837353cf71008484e99737ccf55a4ea"
+SRC_URI[sha256sum] = 
"9ec33a1da4d2096949e29ddd66a352aae57fad6b5483087d54566a2f6345ae10"
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-pybind11: update to version 2.1.1

2017-06-16 Thread Derek Straka
Verify the license terms are the same and update the checksum

Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-pybind11.inc| 7 +++
 .../python/{python-pybind11_2.0.1.bb => python-pybind11_2.1.1.bb}  | 0
 .../{python3-pybind11_2.0.1.bb => python3-pybind11_2.1.1.bb}   | 0
 3 files changed, 3 insertions(+), 4 deletions(-)
 rename meta-python/recipes-devtools/python/{python-pybind11_2.0.1.bb => 
python-pybind11_2.1.1.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-pybind11_2.0.1.bb => 
python3-pybind11_2.1.1.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-pybind11.inc 
b/meta-python/recipes-devtools/python/python-pybind11.inc
index 6d36d87..adaf289 100644
--- a/meta-python/recipes-devtools/python/python-pybind11.inc
+++ b/meta-python/recipes-devtools/python/python-pybind11.inc
@@ -1,8 +1,7 @@
 SUMMARY = "Seamless operability between C++11 and Python"
 HOMEPAGE = "https://github.com/wjakob/pybind11";
 LICENSE = "BSD-2-Clause"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=485d9f8aa1ab513bec0de2f55cd69672"
-PR = "r0"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=ee5f0682c5afe930bd8ae42c96fe7bd3"
 
-SRC_URI[md5sum] = "c96103168e9abceaa6d46f6074dcaf38"
-SRC_URI[sha256sum] = 
"1b1a4824aad88b1073fe8dbd21683e1e5228f3ed3b29c2785fbf5dea6bf1063c"
+SRC_URI[md5sum] = "67752f9da3ce822b5bd6c55b41b89d3e"
+SRC_URI[sha256sum] = 
"c169a384ea046a1672ac83e9aed30660133e9bad3afd82fa99b794df7b416f6d"
diff --git a/meta-python/recipes-devtools/python/python-pybind11_2.0.1.bb 
b/meta-python/recipes-devtools/python/python-pybind11_2.1.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-pybind11_2.0.1.bb
rename to meta-python/recipes-devtools/python/python-pybind11_2.1.1.bb
diff --git a/meta-python/recipes-devtools/python/python3-pybind11_2.0.1.bb 
b/meta-python/recipes-devtools/python/python3-pybind11_2.1.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-pybind11_2.0.1.bb
rename to meta-python/recipes-devtools/python/python3-pybind11_2.1.1.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-flask: update to version 0.12.2

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-flask.inc  | 4 ++--
 .../python/{python-flask_0.12.bb => python-flask_0.12.2.bb}   | 0
 .../python/{python3-flask_0.12.bb => python3-flask_0.12.2.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-flask_0.12.bb => 
python-flask_0.12.2.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-flask_0.12.bb => 
python3-flask_0.12.2.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-flask.inc 
b/meta-python/recipes-devtools/python/python-flask.inc
index 04935a6..76b5fba 100644
--- a/meta-python/recipes-devtools/python/python-flask.inc
+++ b/meta-python/recipes-devtools/python/python-flask.inc
@@ -6,8 +6,8 @@ HOMEPAGE = "https://github.com/mitsuhiko/flask/";
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=19866b76b054ab30c270c0eb9d7e43d7"
 
-SRC_URI[md5sum] = "c1d30f51cff4a38f9454b23328a15c5a"
-SRC_URI[sha256sum] = 
"93e803cdbe326a61ebd5c5d353959397c85f829bec610d59cb635c9f97d7ca8b"
+SRC_URI[md5sum] = "97278dfdafda98ba7902e890b0289177"
+SRC_URI[sha256sum] = 
"49f44461237b69ecd901cc7ce66feea0319b9158743dd27a2899962ab214dac1"
 
 CLEANBROKEN = "1"
 
diff --git a/meta-python/recipes-devtools/python/python-flask_0.12.bb 
b/meta-python/recipes-devtools/python/python-flask_0.12.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-flask_0.12.bb
rename to meta-python/recipes-devtools/python/python-flask_0.12.2.bb
diff --git a/meta-python/recipes-devtools/python/python3-flask_0.12.bb 
b/meta-python/recipes-devtools/python/python3-flask_0.12.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-flask_0.12.bb
rename to meta-python/recipes-devtools/python/python3-flask_0.12.2.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-flask-pymongo: update to version 0.5.1

2017-06-16 Thread Derek Straka
Verify the license terms remain the same and update checksum

Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-flask-pymongo.inc| 6 +++---
 ...{python-flask-pymongo_0.4.1.bb => python-flask-pymongo_0.5.1.bb} | 0
 ...ython3-flask-pymongo_0.4.1.bb => python3-flask-pymongo_0.5.1.bb} | 0
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python-flask-pymongo_0.4.1.bb => 
python-flask-pymongo_0.5.1.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-flask-pymongo_0.4.1.bb => 
python3-flask-pymongo_0.5.1.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-flask-pymongo.inc 
b/meta-python/recipes-devtools/python/python-flask-pymongo.inc
index 6d54837..e11283e 100644
--- a/meta-python/recipes-devtools/python/python-flask-pymongo.inc
+++ b/meta-python/recipes-devtools/python/python-flask-pymongo.inc
@@ -3,10 +3,10 @@ DESCRIPTION = "PyMongo support for Flask applications."
 HOMEPAGE = "https://github.com/mitsuhiko/flask/";
 SECTION = "devel/python"
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = 
"file://flask_pymongo/wrappers.py;startline=1;endline=24;md5=dff998d5a8469503612ee7757f3a2052"
+LIC_FILES_CHKSUM = 
"file://flask_pymongo/wrappers.py;startline=1;endline=24;md5=424c4e1047d28e01b4e4634a069c019d"
 
-SRC_URI[md5sum] = "cbf5fbcd22719d8393e481bcac36be05"
-SRC_URI[sha256sum] = 
"75862daece1c979a9eab5f9d1e32eb781775842273b629ae5d1cb28e6953df78"
+SRC_URI[md5sum] = "d7a1b717f27154e1f3a355f8ec2467d6"
+SRC_URI[sha256sum] = 
"2baaa2ba5107d72b3a8bd4b5c0c8881316e35340ad1ae979cc13f1f3c8843b3d"
 
 PYPI_PACKAGE = "Flask-PyMongo"
 
diff --git a/meta-python/recipes-devtools/python/python-flask-pymongo_0.4.1.bb 
b/meta-python/recipes-devtools/python/python-flask-pymongo_0.5.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-flask-pymongo_0.4.1.bb
rename to meta-python/recipes-devtools/python/python-flask-pymongo_0.5.1.bb
diff --git a/meta-python/recipes-devtools/python/python3-flask-pymongo_0.4.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-pymongo_0.5.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-flask-pymongo_0.4.1.bb
rename to meta-python/recipes-devtools/python/python3-flask-pymongo_0.5.1.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-lazy-object-proxy: update to version 1.3.1

2017-06-16 Thread Derek Straka
Verify license terms and update the checksum

Signed-off-by: Derek Straka 
---
 .../recipes-devtools/python/python-lazy-object-proxy_1.2.2.bb  | 10 --
 .../recipes-devtools/python/python-lazy-object-proxy_1.3.1.bb  | 10 ++
 2 files changed, 10 insertions(+), 10 deletions(-)
 delete mode 100644 
meta-python/recipes-devtools/python/python-lazy-object-proxy_1.2.2.bb
 create mode 100644 
meta-python/recipes-devtools/python/python-lazy-object-proxy_1.3.1.bb

diff --git 
a/meta-python/recipes-devtools/python/python-lazy-object-proxy_1.2.2.bb 
b/meta-python/recipes-devtools/python/python-lazy-object-proxy_1.2.2.bb
deleted file mode 100644
index ded9cfa..000
--- a/meta-python/recipes-devtools/python/python-lazy-object-proxy_1.2.2.bb
+++ /dev/null
@@ -1,10 +0,0 @@
-SUMMARY = "A fast and thorough lazy object proxy"
-HOMEPAGE = "https://python-lazy-object-proxy.readthedocs.io/";
-LICENSE = "BSD"
-SECTION = "devel/python"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=96b1673d10167cb31b78e64f561c3286"
-
-SRC_URI[md5sum] = "841b5592bc12c6ef7e48ed1d7a5f9066"
-SRC_URI[sha256sum] = 
"ddd4cf1c74279c349cb7b9c54a2efa5105854f57de5f2d35829ee93631564268"
-
-inherit setuptools pypi
diff --git 
a/meta-python/recipes-devtools/python/python-lazy-object-proxy_1.3.1.bb 
b/meta-python/recipes-devtools/python/python-lazy-object-proxy_1.3.1.bb
new file mode 100644
index 000..0db5e6e
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-lazy-object-proxy_1.3.1.bb
@@ -0,0 +1,10 @@
+SUMMARY = "A fast and thorough lazy object proxy"
+HOMEPAGE = "https://python-lazy-object-proxy.readthedocs.io/";
+LICENSE = "BSD"
+SECTION = "devel/python"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=ec680df42d8ad56427a83308817658cc"
+
+SRC_URI[md5sum] = "e128152b76eb5b9ba759504936139fd0"
+SRC_URI[sha256sum] = 
"eb91be369f945f10d3a49f5f9be8b3d0b93a4c2be8f8a5b83b0571b8123e0a7a"
+
+inherit setuptools pypi
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-mprpc: update to version 0.1.14

2017-06-16 Thread Derek Straka
Remove patch incorporated in upstream release

Signed-off-by: Derek Straka 
---
 .../python-mprpc/files/0001-fix_setup_py.patch | 34 --
 .../python-mprpc/python-mprpc.inc  |  8 ++---
 ...thon-mprpc_0.1.13.bb => python-mprpc_0.1.14.bb} |  0
 ...on3-mprpc_0.1.13.bb => python3-mprpc_0.1.14.bb} |  0
 4 files changed, 2 insertions(+), 40 deletions(-)
 delete mode 100644 
meta-python/recipes-connectivity/python-mprpc/files/0001-fix_setup_py.patch
 rename meta-python/recipes-connectivity/python-mprpc/{python-mprpc_0.1.13.bb 
=> python-mprpc_0.1.14.bb} (100%)
 rename meta-python/recipes-connectivity/python-mprpc/{python3-mprpc_0.1.13.bb 
=> python3-mprpc_0.1.14.bb} (100%)

diff --git 
a/meta-python/recipes-connectivity/python-mprpc/files/0001-fix_setup_py.patch 
b/meta-python/recipes-connectivity/python-mprpc/files/0001-fix_setup_py.patch
deleted file mode 100644
index f5df9b9..000
--- 
a/meta-python/recipes-connectivity/python-mprpc/files/0001-fix_setup_py.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From bda99eab9036d46e7bb06b446d11cab0b1dd8093 Mon Sep 17 00:00:00 2001
-From: Andrej Rode 
-Date: Mon, 10 Apr 2017 16:49:50 -0700
-Subject: [PATCH] setup: remove find_packages and only install mprpc
-
-Signed-off-by: Andrej Rode 

- setup.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index 5001d0c..4c0ba75 100644
 a/setup.py
-+++ b/setup.py
-@@ -1,6 +1,6 @@
- # -*- coding: utf-8 -*-
- 
--from setuptools import setup, Extension, find_packages
-+from setuptools import setup, Extension
- 
- setup(
- name='mprpc',
-@@ -10,7 +10,7 @@ setup(
- author='Studio Ousia',
- author_email='ik...@ousia.jp',
- url='http://github.com/studio-ousia/mprpc',
--packages=find_packages(),
-+packages=['mprpc'],
- ext_modules=[
- Extension('mprpc.client', ['mprpc/client.c']),
- Extension('mprpc.server', ['mprpc/server.c'])
--- 
-2.10.2
-
diff --git a/meta-python/recipes-connectivity/python-mprpc/python-mprpc.inc 
b/meta-python/recipes-connectivity/python-mprpc/python-mprpc.inc
index 3a1c0be..b9535fc 100644
--- a/meta-python/recipes-connectivity/python-mprpc/python-mprpc.inc
+++ b/meta-python/recipes-connectivity/python-mprpc/python-mprpc.inc
@@ -7,11 +7,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=4ba825394aec026b5f94edca44426859"
 DEPENDS += "${PYTHON_PN}-gevent"
 RDEPENDS_${PN} += "${PYTHON_PN}-gevent ${PYTHON_PN}-msgpack 
${PYTHON_PN}-gsocketpool"
 
-SRC_URI_append = " \
-file://0001-fix_setup_py.patch;patch=1;pnum=1 \
-"
-
-SRC_URI[md5sum] = "449e6239eb5ff07b9cceb86e1ab0c2ee"
-SRC_URI[sha256sum] = 
"5881cc7fbb8de814e2b4aa5958bfe147c5c301e46749190f0e6abf373cf56d82"
+SRC_URI[md5sum] = "66e6cf367ea71cfed8938a27e9c183c3"
+SRC_URI[sha256sum] = 
"5ccada6526d48ac4d95a7bbdc093586663841560337032a503f57ccfae69d7bf"
 
 inherit pypi
diff --git 
a/meta-python/recipes-connectivity/python-mprpc/python-mprpc_0.1.13.bb 
b/meta-python/recipes-connectivity/python-mprpc/python-mprpc_0.1.14.bb
similarity index 100%
rename from meta-python/recipes-connectivity/python-mprpc/python-mprpc_0.1.13.bb
rename to meta-python/recipes-connectivity/python-mprpc/python-mprpc_0.1.14.bb
diff --git 
a/meta-python/recipes-connectivity/python-mprpc/python3-mprpc_0.1.13.bb 
b/meta-python/recipes-connectivity/python-mprpc/python3-mprpc_0.1.14.bb
similarity index 100%
rename from 
meta-python/recipes-connectivity/python-mprpc/python3-mprpc_0.1.13.bb
rename to meta-python/recipes-connectivity/python-mprpc/python3-mprpc_0.1.14.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-parse: update to version 1.8.2

2017-06-16 Thread Derek Straka
Verify the license terms and update the start, stop, and checksum

Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-parse_1.8.0.bb | 13 -
 meta-python/recipes-devtools/python/python-parse_1.8.2.bb | 13 +
 2 files changed, 13 insertions(+), 13 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-parse_1.8.0.bb
 create mode 100644 meta-python/recipes-devtools/python/python-parse_1.8.2.bb

diff --git a/meta-python/recipes-devtools/python/python-parse_1.8.0.bb 
b/meta-python/recipes-devtools/python/python-parse_1.8.0.bb
deleted file mode 100644
index 0fd905b..000
--- a/meta-python/recipes-devtools/python/python-parse_1.8.0.bb
+++ /dev/null
@@ -1,13 +0,0 @@
-SUMMARY = "Parse strings using a specification based on the Python format() 
syntax"
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = 
"file://parse.py;md5=083d8ef8f98a3035dbf890a808498fde;startline=1189;endline=1208"
-
-SRC_URI[md5sum] = "6ea7e32cb35810113137f6073fb30639"
-SRC_URI[sha256sum] = 
"8b4f28bbe7c0f24981669ea92b2ba704ee63b5346027e82be30118bb5788ff10"
-
-inherit pypi setuptools
-
-RDEPENDS_${PN} += "\
-${PYTHON_PN}-datetime \
-${PYTHON_PN}-logging \
-"
diff --git a/meta-python/recipes-devtools/python/python-parse_1.8.2.bb 
b/meta-python/recipes-devtools/python/python-parse_1.8.2.bb
new file mode 100644
index 000..037221a
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-parse_1.8.2.bb
@@ -0,0 +1,13 @@
+SUMMARY = "Parse strings using a specification based on the Python format() 
syntax"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = 
"file://parse.py;md5=a84b494563bba466a2f02b05f2e6ad4a;startline=1191;endline=1210"
+
+SRC_URI[md5sum] = "42002338551bdfa0f01bbe4e679a17dd"
+SRC_URI[sha256sum] = 
"8048dde3f5ca07ad7ac7350460952d83b63eaacecdac1b37f45fd74870d849d2"
+
+inherit pypi setuptools
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-datetime \
+${PYTHON_PN}-logging \
+"
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-prompt-toolkit: update to version 1.0.14

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-prompt-toolkit.inc | 4 ++--
 ...ython-prompt-toolkit_1.0.13.bb => python-prompt-toolkit_1.0.14.bb} | 0
 ...hon3-prompt-toolkit_1.0.13.bb => python3-prompt-toolkit_1.0.14.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-prompt-toolkit_1.0.13.bb => 
python-prompt-toolkit_1.0.14.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-prompt-toolkit_1.0.13.bb 
=> python3-prompt-toolkit_1.0.14.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-prompt-toolkit.inc 
b/meta-python/recipes-devtools/python/python-prompt-toolkit.inc
index 30c2c81..b5bb0c5 100644
--- a/meta-python/recipes-devtools/python/python-prompt-toolkit.inc
+++ b/meta-python/recipes-devtools/python/python-prompt-toolkit.inc
@@ -2,8 +2,8 @@ SUMMARY = "Library for building powerful interactive command 
lines in Python"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b2cde7da89f0c1f3e49bf968d00d554f"
 
-SRC_URI[md5sum] = "427b496d2c147bd3819bc3a7f6e0d493"
-SRC_URI[sha256sum] = 
"33d68ca09f76cd73287fde7df5748ffacf26a8238dd61ee81ac50860ea7c6776"
+SRC_URI[md5sum] = "f24061ae133ed32c6b764e92bd48c496"
+SRC_URI[sha256sum] = 
"cc66413b1b4b17021675d9f2d15d57e640b06ddfd99bb724c73484126d22622f"
 
 PYPI_PACKAGE = "prompt_toolkit"
 
diff --git 
a/meta-python/recipes-devtools/python/python-prompt-toolkit_1.0.13.bb 
b/meta-python/recipes-devtools/python/python-prompt-toolkit_1.0.14.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-prompt-toolkit_1.0.13.bb
rename to meta-python/recipes-devtools/python/python-prompt-toolkit_1.0.14.bb
diff --git 
a/meta-python/recipes-devtools/python/python3-prompt-toolkit_1.0.13.bb 
b/meta-python/recipes-devtools/python/python3-prompt-toolkit_1.0.14.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-prompt-toolkit_1.0.13.bb
rename to meta-python/recipes-devtools/python/python3-prompt-toolkit_1.0.14.bb
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-pytest: update to version 3.1.2

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 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(-)
 rename meta-python/recipes-devtools/python/{python-pytest_3.0.6.bb => 
python-pytest_3.1.2.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-pytest_3.0.6.bb => 
python3-pytest_3.1.2.bb} (100%)

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] = 
"643434a9f1a188271da35e20064cb8b6c5440976c5bb541dc7b5b0e3cf75d940"
+SRC_URI[md5sum] = "c4d179f89043cc925e1c169d03128e02"
+SRC_URI[sha256sum] = 
"795ec29fbba70b22a593691ce8bcd4bdde2dc96e8099731f73c7d8bb3ce879bf"
 
 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
-- 
2.7.4

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


[oe] [meta-python][PATCH] python-paho-mqtt: update to version 1.2.3

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-paho-mqtt.inc  | 4 ++--
 .../python/{python-paho-mqtt_1.2.bb => python-paho-mqtt_1.2.3.bb} | 0
 .../python/{python3-paho-mqtt_1.2.bb => python3-paho-mqtt_1.2.3.bb}   | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-paho-mqtt_1.2.bb => 
python-paho-mqtt_1.2.3.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-paho-mqtt_1.2.bb => 
python3-paho-mqtt_1.2.3.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-paho-mqtt.inc 
b/meta-python/recipes-devtools/python/python-paho-mqtt.inc
index 7ff3fb2..545985c 100644
--- a/meta-python/recipes-devtools/python/python-paho-mqtt.inc
+++ b/meta-python/recipes-devtools/python/python-paho-mqtt.inc
@@ -4,8 +4,8 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=eb48c6ee2cb9f5b8b9fe75e6f817bdfc"
 SRCNAME = "paho-mqtt"
 
 inherit pypi
-SRC_URI[md5sum] = "241150b3fcb920ddca4d33181f3238b1"
-SRC_URI[sha256sum] = 
"9100a6aa706ab699d414ec02705a21eb66f436184691d0bf1f2a85a6213c6c1f"
+SRC_URI[md5sum] = "4bd192ea24e7aa347f6d240101ef82f6"
+SRC_URI[sha256sum] = 
"0fd746d8650563290f1bd0fec01e74cb57c3ab7406bdb58e5d9252bb5fa5ca44"
 
 RDEPENDS_${PN} = "\
${PYTHON_PN}-math \
diff --git a/meta-python/recipes-devtools/python/python-paho-mqtt_1.2.bb 
b/meta-python/recipes-devtools/python/python-paho-mqtt_1.2.3.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-paho-mqtt_1.2.bb
rename to meta-python/recipes-devtools/python/python-paho-mqtt_1.2.3.bb
diff --git a/meta-python/recipes-devtools/python/python3-paho-mqtt_1.2.bb 
b/meta-python/recipes-devtools/python/python3-paho-mqtt_1.2.3.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-paho-mqtt_1.2.bb
rename to meta-python/recipes-devtools/python/python3-paho-mqtt_1.2.3.bb
-- 
2.7.4

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


[oe] [meta-webserver][PATCH] nginx: update to version 1.13.1

2017-06-16 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../recipes-httpd/nginx/{nginx_1.13.0.bb => nginx_1.13.1.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-webserver/recipes-httpd/nginx/{nginx_1.13.0.bb => nginx_1.13.1.bb} 
(64%)

diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.13.0.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.13.1.bb
similarity index 64%
rename from meta-webserver/recipes-httpd/nginx/nginx_1.13.0.bb
rename to meta-webserver/recipes-httpd/nginx/nginx_1.13.1.bb
index a999acc..d0d162e 100644
--- a/meta-webserver/recipes-httpd/nginx/nginx_1.13.0.bb
+++ b/meta-webserver/recipes-httpd/nginx/nginx_1.13.1.bb
@@ -6,5 +6,5 @@ DEFAULT_PREFERENCE = "-1"
 
 LIC_FILES_CHKSUM = "file://LICENSE;md5=903753de5f86a1ee0341fd2f9491b282"
 
-SRC_URI[md5sum] = "0ff7057465d5622c5b1279e91b273e96"
-SRC_URI[sha256sum] = 
"79f52ab6550f854e14439369808105b5780079769d7b8db3856be03c683605d7"
+SRC_URI[md5sum] = "5c2fe93447140b8b1a815a13bc89355b"
+SRC_URI[sha256sum] = 
"a5856c72a6609a4dc68c88a7f3c33b79e6693343b62952e021e043fe347b6776"
-- 
2.7.4

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


Re: [oe] [meta-browser][WIP][PATCH] chromium(-wayland): Fix build with gcc7

2017-06-16 Thread Martin Jansa
I've tested this with chromium, but for chromium-wayland few more changes
are needed from that v8 change.

On Fri, Jun 16, 2017 at 4:06 PM, Martin Jansa 
wrote:

> * add 2 patches to fix issues detected by gcc7
>
> Signed-off-by: Martin Jansa 
> ---
>  recipes-browser/chromium/chromium-browser.inc  |  2 ++
>  .../files/0001-v8-fix-build-with-gcc7.patch| 20 ++
>  .../files/0002-WebKit-fix-build-with-gcc7.patch| 31
> ++
>  3 files changed, 53 insertions(+)
>  create mode 100644 recipes-browser/chromium/files/0001-v8-fix-build-with-
> gcc7.patch
>  create mode 100644 recipes-browser/chromium/files/0002-WebKit-fix-build-
> with-gcc7.patch
>
> diff --git a/recipes-browser/chromium/chromium-browser.inc
> b/recipes-browser/chromium/chromium-browser.inc
> index ad8e497..08853b1 100644
> --- a/recipes-browser/chromium/chromium-browser.inc
> +++ b/recipes-browser/chromium/chromium-browser.inc
> @@ -26,6 +26,8 @@ SRC_URI = "\
>  ${@bb.utils.contains('PACKAGECONFIG',
> 'disable-api-keys-info-bar', 'file://api-keys.patch;patchdir=${WORKDIR}',
> '', d)} \
>  file://google-chrome.desktop \
>  file://unset-madv-free.patch \
> +file://0001-v8-fix-build-with-gcc7.patch \
> +file://0002-WebKit-fix-build-with-gcc7.patch \
>  "
>
>  S = "${WORKDIR}/chromium-${PV}"
> diff --git a/recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch
> b/recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch
> new file mode 100644
> index 000..0fc5bfb
> --- /dev/null
> +++ b/recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch
> @@ -0,0 +1,20 @@
> +Use the fix from nodejs:
> +https://github.com/nodejs/node/commit/2a2a5565c298639b823250b571101f
> 51210c50e8
> +
> +* fixes:
> +| ../../git/src/v8/src/objects-body-descriptors.h: In static member
> function 'static void v8::internal::FixedBodyDescriptor end_offset, size>::IterateBody(v8::internal::HeapObject*, int)':
> +| ../../git/src/v8/src/objects-body-descriptors.h:102:20: error: no
> matching function for call to 'v8::internal::FixedBodyDescriptor end_offset, size>::IterateBody(v8::internal::HeapObject*&)'
> +|  IterateBody(obj);
> +| ^
> +
> +--- chromium-54.0.2810.2.orig/v8/src/objects-body-descriptors.h
> 2016-07-28 12:17:37.0 -1000
>  chromium-54.0.2810.2/v8/src/objects-body-descriptors.h
>  2017-06-16 01:20:50.026665439 -1000
> +@@ -99,7 +99,7 @@
> +
> +   template 
> +   static inline void IterateBody(HeapObject* obj, int object_size) {
> +-IterateBody(obj);
> ++IterateBody(obj);
> +   }
> + };
> +
> diff --git 
> a/recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch
> b/recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch
> new file mode 100644
> index 000..284a83c
> --- /dev/null
> +++ b/recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch
> @@ -0,0 +1,31 @@
> +Based on qtwebengine-opensource-src-5.8.0-wtf-gcc7.patch from
> +http://git.net/ml/scm-fedora-commits/2017-03/msg15697.html
> +
> +* Fixes:
> +In file included from ../../git/src/third_party/
> WebKit/Source/platform/heap/ThreadingTraits.h:14:0,
> + from ../../git/src/third_party/
> WebKit/Source/platform/heap/ThreadState.h:37,
> + from ../../git/src/third_party/
> WebKit/Source/platform/heap/GarbageCollected.h:8,
> + from ../../git/src/third_party/
> WebKit/Source/platform/heap/Visitor.h:35,
> + from ../../git/src/third_party/
> WebKit/Source/platform/heap/GCInfo.h:8,
> + from ../../git/src/third_party/
> WebKit/Source/platform/heap/Heap.h:35,
> + from ../../git/src/third_party/
> WebKit/Source/platform/heap/Handle.h:34,
> + from ../../git/src/third_party/WebKit/public/platform/
> WebPrivatePtr.h:38,
> + from ../../git/src/third_party/WebKit/public/platform/
> WebString.h:35,
> + from ../../git/src/third_party/WebKit/Source/platform/
> exported/FilePathConversion.cpp:8:
> +../../git/src/third_party/WebKit/Source/wtf/LinkedHashSet.h: In member
> function 'void WTF::LinkedHashSet Allocator>::swap(WTF::LinkedHashSet Allocator>&)':
> +../../git/src/third_party/WebKit/Source/wtf/LinkedHashSet.h:549:5:
> error: there are no arguments to 'swapAnchor' that depend on a template
> parameter, so a declaration of 'swapAnchor' must be available [-fpermissive]
> + swapAnchor(m_anchor, other.m_anchor);
> + ^~
> +../../git/src/third_party/WebKit/Source/wtf/LinkedHashSet.h:549:5: note:
> (if you use '-fpermissive', G++ will accept your code, but allowing the use
> of an undeclared name is deprecated)
> +
> +--- chromium-54.0.2810.2.orig/third_party/WebKit/Source/wtf/LinkedHashSet.h
>   2016-07-28 12:16:12.0 -1000
>  chromium-54.0.2810.2/third_party/WebKit/Source/wtf/LinkedHashSet.h
> 2017-06-16 02:19:37.928797121 -1000
> +@@ -542,6 +542,8 @@
> + return *th

Re: [oe] [meta-browser][WIP][PATCH] chromium(-wayland): Fix build with gcc7

2017-06-16 Thread Khem Raj
On Fri, Jun 16, 2017 at 7:06 AM, Martin Jansa  wrote:
> * add 2 patches to fix issues detected by gcc7
>

both patches look ok to me

> Signed-off-by: Martin Jansa 
> ---
>  recipes-browser/chromium/chromium-browser.inc  |  2 ++
>  .../files/0001-v8-fix-build-with-gcc7.patch| 20 ++
>  .../files/0002-WebKit-fix-build-with-gcc7.patch| 31 
> ++
>  3 files changed, 53 insertions(+)
>  create mode 100644 
> recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch
>  create mode 100644 
> recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch
>
> diff --git a/recipes-browser/chromium/chromium-browser.inc 
> b/recipes-browser/chromium/chromium-browser.inc
> index ad8e497..08853b1 100644
> --- a/recipes-browser/chromium/chromium-browser.inc
> +++ b/recipes-browser/chromium/chromium-browser.inc
> @@ -26,6 +26,8 @@ SRC_URI = "\
>  ${@bb.utils.contains('PACKAGECONFIG', 'disable-api-keys-info-bar', 
> 'file://api-keys.patch;patchdir=${WORKDIR}', '', d)} \
>  file://google-chrome.desktop \
>  file://unset-madv-free.patch \
> +file://0001-v8-fix-build-with-gcc7.patch \
> +file://0002-WebKit-fix-build-with-gcc7.patch \
>  "
>
>  S = "${WORKDIR}/chromium-${PV}"
> diff --git a/recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch 
> b/recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch
> new file mode 100644
> index 000..0fc5bfb
> --- /dev/null
> +++ b/recipes-browser/chromium/files/0001-v8-fix-build-with-gcc7.patch
> @@ -0,0 +1,20 @@
> +Use the fix from nodejs:
> +https://github.com/nodejs/node/commit/2a2a5565c298639b823250b571101f51210c50e8
> +
> +* fixes:
> +| ../../git/src/v8/src/objects-body-descriptors.h: In static member function 
> 'static void v8::internal::FixedBodyDescriptor size>::IterateBody(v8::internal::HeapObject*, int)':
> +| ../../git/src/v8/src/objects-body-descriptors.h:102:20: error: no matching 
> function for call to 'v8::internal::FixedBodyDescriptor end_offset, size>::IterateBody(v8::internal::HeapObject*&)'
> +|  IterateBody(obj);
> +| ^
> +
> +--- chromium-54.0.2810.2.orig/v8/src/objects-body-descriptors.h
> 2016-07-28 12:17:37.0 -1000
>  chromium-54.0.2810.2/v8/src/objects-body-descriptors.h 2017-06-16 
> 01:20:50.026665439 -1000
> +@@ -99,7 +99,7 @@
> +
> +   template 
> +   static inline void IterateBody(HeapObject* obj, int object_size) {
> +-IterateBody(obj);
> ++IterateBody(obj);
> +   }
> + };
> +
> diff --git 
> a/recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch 
> b/recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch
> new file mode 100644
> index 000..284a83c
> --- /dev/null
> +++ b/recipes-browser/chromium/files/0002-WebKit-fix-build-with-gcc7.patch
> @@ -0,0 +1,31 @@
> +Based on qtwebengine-opensource-src-5.8.0-wtf-gcc7.patch from
> +http://git.net/ml/scm-fedora-commits/2017-03/msg15697.html
> +
> +* Fixes:
> +In file included from 
> ../../git/src/third_party/WebKit/Source/platform/heap/ThreadingTraits.h:14:0,
> + from 
> ../../git/src/third_party/WebKit/Source/platform/heap/ThreadState.h:37,
> + from 
> ../../git/src/third_party/WebKit/Source/platform/heap/GarbageCollected.h:8,
> + from 
> ../../git/src/third_party/WebKit/Source/platform/heap/Visitor.h:35,
> + from 
> ../../git/src/third_party/WebKit/Source/platform/heap/GCInfo.h:8,
> + from 
> ../../git/src/third_party/WebKit/Source/platform/heap/Heap.h:35,
> + from 
> ../../git/src/third_party/WebKit/Source/platform/heap/Handle.h:34,
> + from 
> ../../git/src/third_party/WebKit/public/platform/WebPrivatePtr.h:38,
> + from 
> ../../git/src/third_party/WebKit/public/platform/WebString.h:35,
> + from 
> ../../git/src/third_party/WebKit/Source/platform/exported/FilePathConversion.cpp:8:
> +../../git/src/third_party/WebKit/Source/wtf/LinkedHashSet.h: In member 
> function 'void WTF::LinkedHashSet Allocator>::swap(WTF::LinkedHashSet Allocator>&)':
> +../../git/src/third_party/WebKit/Source/wtf/LinkedHashSet.h:549:5: error: 
> there are no arguments to 'swapAnchor' that depend on a template parameter, 
> so a declaration of 'swapAnchor' must be available [-fpermissive]
> + swapAnchor(m_anchor, other.m_anchor);
> + ^~
> +../../git/src/third_party/WebKit/Source/wtf/LinkedHashSet.h:549:5: note: (if 
> you use '-fpermissive', G++ will accept your code, but allowing the use of an 
> undeclared name is deprecated)
> +
> +--- chromium-54.0.2810.2.orig/third_party/WebKit/Source/wtf/LinkedHashSet.h  
>   2016-07-28 12:16:12.0 -1000
>  chromium-54.0.2810.2/third_party/WebKit/Source/wtf/LinkedHashSet.h 
> 2017-06-16 02:19:37.928797121 -1000
> +@@ -542,6 +542,8 @@
> + return *this;
> + }
> +
> ++inline void swapAnchor(LinkedHashSetNodeBase& a, Li

[oe] [meta-oe][PATCH] libvncserver: upgrade to 0.9.11

2017-06-16 Thread Kyle Russell
- Updates the SRC_URI to pull from the github project instead of debian
- Removes the need for the configure.ac patch since the github archive
  still contains the webclient directory, no impact to built packages
- sha1.c patch now included on 0.9.11
- adds systemd dependency for distros building with systemd
- removes conf flag for libva since that support has been removed in
  0.9.11
---
 .../0001-remove-webclients-build.patch |  28 --
 .../libvncserver/0002-common-add-sha1.patch| 524 -
 ...bvncserver_0.9.10.bb => libvncserver_0.9.11.bb} |  18 +-
 3 files changed, 7 insertions(+), 563 deletions(-)
 delete mode 100644 
meta-oe/recipes-graphics/libvncserver/libvncserver/0001-remove-webclients-build.patch
 delete mode 100644 
meta-oe/recipes-graphics/libvncserver/libvncserver/0002-common-add-sha1.patch
 rename meta-oe/recipes-graphics/libvncserver/{libvncserver_0.9.10.bb => 
libvncserver_0.9.11.bb} (53%)

diff --git 
a/meta-oe/recipes-graphics/libvncserver/libvncserver/0001-remove-webclients-build.patch
 
b/meta-oe/recipes-graphics/libvncserver/libvncserver/0001-remove-webclients-build.patch
deleted file mode 100644
index 8f4365c..000
--- 
a/meta-oe/recipes-graphics/libvncserver/libvncserver/0001-remove-webclients-build.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git a/Makefile.am b/Makefile.am
-index 5c2a94d..f98038a 100644
 a/Makefile.am
-+++ b/Makefile.am
-@@ -1,7 +1,7 @@
- ACLOCAL_AMFLAGS = -I m4
- 
--SUBDIRS=libvncserver examples libvncclient webclients client_examples test
--DIST_SUBDIRS=libvncserver examples libvncclient webclients client_examples 
test
-+SUBDIRS=libvncserver examples libvncclient client_examples test
-+DIST_SUBDIRS=libvncserver examples libvncclient client_examples test
- EXTRA_DIST = CMakeLists.txt rfb/rfbint.h.cmake rfb/rfbconfig.h.cmake
- 
- bin_SCRIPTS = libvncserver-config
-diff --git a/configure.ac b/configure.ac
-index ca9f3b3..9b464cf 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -600,9 +600,6 @@ AC_CONFIG_FILES([Makefile
-   libvncserver/Makefile
-   examples/Makefile
-   examples/android/Makefile
--  webclients/Makefile
--  webclients/java-applet/Makefile
--  webclients/java-applet/ssl/Makefile
-   libvncclient/Makefile
-   client_examples/Makefile
-   test/Makefile
diff --git 
a/meta-oe/recipes-graphics/libvncserver/libvncserver/0002-common-add-sha1.patch 
b/meta-oe/recipes-graphics/libvncserver/libvncserver/0002-common-add-sha1.patch
deleted file mode 100644
index 8b70d2f..000
--- 
a/meta-oe/recipes-graphics/libvncserver/libvncserver/0002-common-add-sha1.patch
+++ /dev/null
@@ -1,524 +0,0 @@
-diff --git a/common/sha1.c b/common/sha1.c
-new file mode 100644
-index 000..988b188
 /dev/null
-+++ b/common/sha1.c
-@@ -0,0 +1,411 @@
-+/*
-+ * Copyright (C) The Internet Society (2001).  All Rights Reserved.
-+ *
-+ * This document and translations of it may be copied and furnished to
-+ * others, and derivative works that comment on or otherwise explain it
-+ * or assist in its implementation may be prepared, copied, published
-+ * and distributed, in whole or in part, without restriction of any
-+ * kind, provided that the above copyright notice and this paragraph are
-+ * included on all such copies and derivative works.  However, this
-+ * document itself may not be modified in any way, such as by removing
-+ * the copyright notice or references to the Internet Society or other
-+ * Internet organizations, except as needed for the purpose of
-+ * developing Internet standards in which case the procedures for
-+ * copyrights defined in the Internet Standards process must be
-+ * followed, or as required to translate it into languages other than
-+ * English.
-+ *
-+ * The limited permissions granted above are perpetual and will not be
-+ * revoked by the Internet Society or its successors or assigns.
-+ *
-+ * This document and the information contained herein is provided on an
-+ * "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
-+ * TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
-+ * BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
-+ * HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
-+ * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-+ */
-+
-+/*
-+ *  sha1.c
-+ *
-+ *  Description:
-+ *  This file implements the Secure Hashing Algorithm 1 as
-+ *  defined in FIPS PUB 180-1 published April 17, 1995.
-+ *
-+ *  The SHA-1, produces a 160-bit message digest for a given
-+ *  data stream.  It should take about 2**n steps to find a
-+ *  message with the same digest as a given message and
-+ *  2**(n/2) to find any two messages with the same digest,
-+ *  when n is the digest size in bits.  Therefore, this
-+ *  algorithm can serve as a means of providing a
-+ *  "fingerprint" for a message.
-+ *
-+ *  Portability Issues:
-+ *  SHA-1 is defined in terms of 32-bi