Re: [oe] [meta-oe][PATCH] xrdp: enable cpliboard

2018-02-11 Thread Anuj Mittal
On 02/12/2018 07:36 PM, zhengrq wrote:
> Add --enable-fuse option to enable cpliboard when copying from window OS to 
> linux.
> 
> Signed-off-by: Zheng Ruoqin 
> ---
>  meta-oe/recipes-support/xrdp/xrdp_0.9.4.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-oe/recipes-support/xrdp/xrdp_0.9.4.bb 
> b/meta-oe/recipes-support/xrdp/xrdp_0.9.4.bb
> index 86a8023..d848f1d 100644
> --- a/meta-oe/recipes-support/xrdp/xrdp_0.9.4.bb
> +++ b/meta-oe/recipes-support/xrdp/xrdp_0.9.4.bb
> @@ -37,7 +37,7 @@ FILES_${PN}-dev += "${libdir}/xrdp/libcommon.so \
>  ${libdir}/xrdp/libscp.so \
>  ${libdir}/xrdp/libxrdpapi.so "
>  
> -EXTRA_OECONF = "--enable-pam-config=suse"
> +EXTRA_OECONF = "--enable-pam-config=suse --enable-fuse"

Shouldn't this be done using a PACKAGECONFIG so a DEPENDS is added on
fuse when enabled?

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


Re: [oe] [meta-networking][PATCH] waf-samba.bbclass: No longer inherit waf.bbclass

2018-02-11 Thread Joshua Watt
On Feb 11, 2018 20:29, "Robert Yang"  wrote:



On 02/12/2018 05:51 AM, Joshua Watt wrote:

> waf-samba.bbclass uses waf in a very different way than the "standard"
> method that waf.bbclass targets and ends getting very little useful
> functionality from that class.
>
> Signed-off-by: Joshua Watt 
> ---
>   meta-networking/classes/waf-samba.bbclass | 29
> +++--
>   1 file changed, 27 insertions(+), 2 deletions(-)
>
> diff --git a/meta-networking/classes/waf-samba.bbclass
> b/meta-networking/classes/waf-samba.bbclass
> index e49017624..4b1499fd4 100644
> --- a/meta-networking/classes/waf-samba.bbclass
> +++ b/meta-networking/classes/waf-samba.bbclass
> @@ -1,7 +1,7 @@
>   # waf is a build system which is used by samba related project.
>   # Obtain details from https://wiki.samba.org/index.php/Waf
> -#
> -inherit qemu pythonnative waf
> +#
> +inherit qemu pythonnative
> DEPENDS += "qemu-native libxslt-native docbook-xsl-stylesheets-native
> python"
>   @@ -21,6 +21,31 @@ CONFIGUREOPTS = " --prefix=${prefix} \
> ${PACKAGECONFIG_CONFARGS} \
>   "
>   +# avoids build breaks when using no-static-libs.inc
> +DISABLE_STATIC = ""
> +
> +def get_waf_parallel_make(d):
> +pm = d.getVar('PARALLEL_MAKE')
> +if pm:
> +# look for '-j' and throw other options (e.g. '-l') away
> +# because they might have different meaning in bjam
> +pm = pm.split()
> +while pm:
> +v = None
> +opt = pm.pop(0)
> +if opt == '-j':
> +v = pm.pop(0)
> +elif opt.startswith('-j'):
> +v = opt[2:].strip()
> +else:
> +v = None
>

The "else:" block isn't needed ? The first line already set v to None.


True. This is a straight copy from waf.bbclass, but we can optimize. I'm
planning on proposing a or.utils.get_parallel_make(), because this code is
copied (with minor variants) several places.



// Robert


+
> +if v:
> +v = min(64, int(v))
> +return '-j' + str(v)
> +
> +return ""
> +
>   # Three methods for waf cross compile:
>   # 1. answers:
>   #Only --cross-answers - try the cross-answers file, and if
>
>
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] xrdp: enable cpliboard

2018-02-11 Thread zhengrq
Add --enable-fuse option to enable cpliboard when copying from window OS to 
linux.

Signed-off-by: Zheng Ruoqin 
---
 meta-oe/recipes-support/xrdp/xrdp_0.9.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/xrdp/xrdp_0.9.4.bb 
b/meta-oe/recipes-support/xrdp/xrdp_0.9.4.bb
index 86a8023..d848f1d 100644
--- a/meta-oe/recipes-support/xrdp/xrdp_0.9.4.bb
+++ b/meta-oe/recipes-support/xrdp/xrdp_0.9.4.bb
@@ -37,7 +37,7 @@ FILES_${PN}-dev += "${libdir}/xrdp/libcommon.so \
 ${libdir}/xrdp/libscp.so \
 ${libdir}/xrdp/libxrdpapi.so "
 
-EXTRA_OECONF = "--enable-pam-config=suse"
+EXTRA_OECONF = "--enable-pam-config=suse --enable-fuse"
 
 do_configure_prepend() {
 cd ${S}
-- 
2.7.4



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


Re: [oe] [meta-networking][PATCH] waf-samba.bbclass: No longer inherit waf.bbclass

2018-02-11 Thread Robert Yang



On 02/12/2018 05:51 AM, Joshua Watt wrote:

waf-samba.bbclass uses waf in a very different way than the "standard"
method that waf.bbclass targets and ends getting very little useful
functionality from that class.

Signed-off-by: Joshua Watt 
---
  meta-networking/classes/waf-samba.bbclass | 29 +++--
  1 file changed, 27 insertions(+), 2 deletions(-)

diff --git a/meta-networking/classes/waf-samba.bbclass 
b/meta-networking/classes/waf-samba.bbclass
index e49017624..4b1499fd4 100644
--- a/meta-networking/classes/waf-samba.bbclass
+++ b/meta-networking/classes/waf-samba.bbclass
@@ -1,7 +1,7 @@
  # waf is a build system which is used by samba related project.
  # Obtain details from https://wiki.samba.org/index.php/Waf
-#
-inherit qemu pythonnative waf
+#
+inherit qemu pythonnative
  
  DEPENDS += "qemu-native libxslt-native docbook-xsl-stylesheets-native python"
  
@@ -21,6 +21,31 @@ CONFIGUREOPTS = " --prefix=${prefix} \

${PACKAGECONFIG_CONFARGS} \
  "
  
+# avoids build breaks when using no-static-libs.inc

+DISABLE_STATIC = ""
+
+def get_waf_parallel_make(d):
+pm = d.getVar('PARALLEL_MAKE')
+if pm:
+# look for '-j' and throw other options (e.g. '-l') away
+# because they might have different meaning in bjam
+pm = pm.split()
+while pm:
+v = None
+opt = pm.pop(0)
+if opt == '-j':
+v = pm.pop(0)
+elif opt.startswith('-j'):
+v = opt[2:].strip()
+else:
+v = None


The "else:" block isn't needed ? The first line already set v to None.

// Robert


+
+if v:
+v = min(64, int(v))
+return '-j' + str(v)
+
+return ""
+
  # Three methods for waf cross compile:
  # 1. answers:
  #Only --cross-answers - try the cross-answers file, and if


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


[oe] [meta-oe][PATCH] tomoyo-tools: 20140601 -> 20170102

2018-02-11 Thread Huang Qiyu
Upgrade tomoyo-tools from 2.5.0-20140601 to 2.5.0-20170102.

Signed-off-by: Huang Qiyu 
---
 meta-oe/recipes-support/tomoyo-tools/tomoyo-tools_2.5.0.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-oe/recipes-support/tomoyo-tools/tomoyo-tools_2.5.0.bb 
b/meta-oe/recipes-support/tomoyo-tools/tomoyo-tools_2.5.0.bb
index 4a1b4ce..f362775 100644
--- a/meta-oe/recipes-support/tomoyo-tools/tomoyo-tools_2.5.0.bb
+++ b/meta-oe/recipes-support/tomoyo-tools/tomoyo-tools_2.5.0.bb
@@ -5,9 +5,9 @@ being useful purely as a system analysis tool."
 HOMEPAGE = "http://tomoyo.sourceforge.jp/;
 SECTION = "System Environment/Kernel"
 
-SRC_URI = "http://jaist.dl.sourceforge.jp/tomoyo/53357/${BP}-20140601.tar.gz;
-SRC_URI[md5sum] = "69b793127f00d6439a3246598b83"
-SRC_URI[sha256sum] = 
"118ef6ba1fbf7c0b83018c3a0d4d5485dfb9b5b7f647f37ce9f63841a3133c2a"
+SRC_URI = "http://jaist.dl.sourceforge.jp/tomoyo/53357/${BP}-20170102.tar.gz;
+SRC_URI[md5sum] = "04d58742452fe213a68f7eadd0ad"
+SRC_URI[sha256sum] = 
"00fedfac5e514321250bbe69eaccc732c8a8158596f77a785c2e3ae9f9968283"
 
 S = "${WORKDIR}/${BPN}"
 
-- 
2.7.4



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


Re: [oe] [meta-networking][PATCH] waf-samba: skip waf_preconfigure() prefunc from waf.bbclass

2018-02-11 Thread Kyle Russell
That seems reasonable to me.  I didn't really like how this change
implicitly depended on the base waf class setup either, but I wasn't sure
if the breakage was on anyone's radar.  I'll try out your other patch
tomorrow.

Thanks!

On Sun, Feb 11, 2018 at 4:30 PM, Joshua Watt  wrote:

> On Sat, Feb 10, 2018 at 9:39 AM, Kyle Russell 
> wrote:
> > waf_preconfigure() fails in samba packages because wafbin is packaged
> > differently, and we already pass bindir and libdir through
> > CONFIGUREOPTS.
> >
> > Signed-off-by: Kyle Russell 
> > ---
> >  meta-networking/classes/waf-samba.bbclass | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/meta-networking/classes/waf-samba.bbclass
> b/meta-networking/classes/waf-samba.bbclass
> > index e490176..94ecf4a 100644
> > --- a/meta-networking/classes/waf-samba.bbclass
> > +++ b/meta-networking/classes/waf-samba.bbclass
> > @@ -42,6 +42,7 @@ CONFIGUREOPTS = " --prefix=${prefix} \
> >  # to help generate the cross answer when adding new board support.
> >  CROSS_METHOD ?= "answer"
> >
> > +do_configure[prefuncs] = ""
>
> Hmm, I'm not sure we want to unconditionally remove all prefuncs.
>
> This breaking samba was brought up to me (since I wrote the patch that
> broke samba), and I actually think a better approach would be to make
> waf-samba no longer inherit from waf.bbclass. The samba method of
> using waf is so different from a "standard" waf usage, that the
> inheritance doesn't really make sense IHMO. I'm preparing a patch to
> do this, and it appears that the only two things that
> waf-samba.bbclass actually needs from waf.bbclass are
> get_waf_parallel_make() and DISABLE_STATIC = "", neither of which it
> can't implement itself.
>
> >  do_configure() {
> >
> >  # Prepare the cross-answers file
> > --
> > 2.7.4
> >
> > --
> > ___
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-networking][PATCH] waf-samba.bbclass: No longer inherit waf.bbclass

2018-02-11 Thread Joshua Watt
waf-samba.bbclass uses waf in a very different way than the "standard"
method that waf.bbclass targets and ends getting very little useful
functionality from that class.

Signed-off-by: Joshua Watt 
---
 meta-networking/classes/waf-samba.bbclass | 29 +++--
 1 file changed, 27 insertions(+), 2 deletions(-)

diff --git a/meta-networking/classes/waf-samba.bbclass 
b/meta-networking/classes/waf-samba.bbclass
index e49017624..4b1499fd4 100644
--- a/meta-networking/classes/waf-samba.bbclass
+++ b/meta-networking/classes/waf-samba.bbclass
@@ -1,7 +1,7 @@
 # waf is a build system which is used by samba related project.
 # Obtain details from https://wiki.samba.org/index.php/Waf
-# 
-inherit qemu pythonnative waf
+#
+inherit qemu pythonnative
 
 DEPENDS += "qemu-native libxslt-native docbook-xsl-stylesheets-native python"
 
@@ -21,6 +21,31 @@ CONFIGUREOPTS = " --prefix=${prefix} \
   ${PACKAGECONFIG_CONFARGS} \
 "
 
+# avoids build breaks when using no-static-libs.inc
+DISABLE_STATIC = ""
+
+def get_waf_parallel_make(d):
+pm = d.getVar('PARALLEL_MAKE')
+if pm:
+# look for '-j' and throw other options (e.g. '-l') away
+# because they might have different meaning in bjam
+pm = pm.split()
+while pm:
+v = None
+opt = pm.pop(0)
+if opt == '-j':
+v = pm.pop(0)
+elif opt.startswith('-j'):
+v = opt[2:].strip()
+else:
+v = None
+
+if v:
+v = min(64, int(v))
+return '-j' + str(v)
+
+return ""
+
 # Three methods for waf cross compile:
 # 1. answers:
 #Only --cross-answers - try the cross-answers file, and if
-- 
2.14.3

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


Re: [oe] [meta-networking][PATCH] waf-samba: skip waf_preconfigure() prefunc from waf.bbclass

2018-02-11 Thread Joshua Watt
On Sat, Feb 10, 2018 at 9:39 AM, Kyle Russell  wrote:
> waf_preconfigure() fails in samba packages because wafbin is packaged
> differently, and we already pass bindir and libdir through
> CONFIGUREOPTS.
>
> Signed-off-by: Kyle Russell 
> ---
>  meta-networking/classes/waf-samba.bbclass | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/meta-networking/classes/waf-samba.bbclass 
> b/meta-networking/classes/waf-samba.bbclass
> index e490176..94ecf4a 100644
> --- a/meta-networking/classes/waf-samba.bbclass
> +++ b/meta-networking/classes/waf-samba.bbclass
> @@ -42,6 +42,7 @@ CONFIGUREOPTS = " --prefix=${prefix} \
>  # to help generate the cross answer when adding new board support.
>  CROSS_METHOD ?= "answer"
>
> +do_configure[prefuncs] = ""

Hmm, I'm not sure we want to unconditionally remove all prefuncs.

This breaking samba was brought up to me (since I wrote the patch that
broke samba), and I actually think a better approach would be to make
waf-samba no longer inherit from waf.bbclass. The samba method of
using waf is so different from a "standard" waf usage, that the
inheritance doesn't really make sense IHMO. I'm preparing a patch to
do this, and it appears that the only two things that
waf-samba.bbclass actually needs from waf.bbclass are
get_waf_parallel_make() and DISABLE_STATIC = "", neither of which it
can't implement itself.

>  do_configure() {
>
>  # Prepare the cross-answers file
> --
> 2.7.4
>
> --
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH] python-webcolors: update to version 1.8

2018-02-11 Thread Derek Straka
Update license checksum for copyright date change and verify
terms remain the same

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

diff --git a/meta-python/recipes-devtools/python/python-webcolors.inc 
b/meta-python/recipes-devtools/python/python-webcolors.inc
index fe1ab95..a67b32f 100644
--- a/meta-python/recipes-devtools/python/python-webcolors.inc
+++ b/meta-python/recipes-devtools/python/python-webcolors.inc
@@ -1,9 +1,9 @@
 SUMMARY = "Simple Python module for working with HTML/CSS color definitions."
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=358df7e9eb65e1843dbb36abd476c5c0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=197add016087e6884a012b0f185d44ad"
 
-SRC_URI[md5sum] = "4733fa1077f680bbdd918cdef1e32c11"
-SRC_URI[sha256sum] = 
"e47e68644d41c0b1f1e4d939cfe4039bdf1ab31234df63c7a4f59d4766487206"
+SRC_URI[md5sum] = "d7a17135f8b8374a75c2f1d08253c026"
+SRC_URI[sha256sum] = 
"da3cb551060f46f417341b041b36d329d699c125a13a4412dde5c2e310d63344"
 
 RDEPENDS_${PN}_class-target = "\
 ${PYTHON_PN}-stringold \
diff --git a/meta-python/recipes-devtools/python/python-webcolors_1.7.bb 
b/meta-python/recipes-devtools/python/python-webcolors_1.8.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-webcolors_1.7.bb
rename to meta-python/recipes-devtools/python/python-webcolors_1.8.bb
diff --git a/meta-python/recipes-devtools/python/python3-webcolors_1.7.bb 
b/meta-python/recipes-devtools/python/python3-webcolors_1.8.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-webcolors_1.7.bb
rename to meta-python/recipes-devtools/python/python3-webcolors_1.8.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-django: update to version 1.11.10

2018-02-11 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-django.inc| 5 +++--
 .../python/{python-django_1.11.9.bb => python-django_1.11.10.bb} | 0
 .../python/{python3-django_1.11.9.bb => python3-django_1.11.10.bb}   | 0
 3 files changed, 3 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-django_1.11.9.bb => 
python-django_1.11.10.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-django_1.11.9.bb => 
python3-django_1.11.10.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-django.inc 
b/meta-python/recipes-devtools/python/python-django.inc
index ac0808e..4ef2d7f 100644
--- a/meta-python/recipes-devtools/python/python-django.inc
+++ b/meta-python/recipes-devtools/python/python-django.inc
@@ -3,8 +3,8 @@ HOMEPAGE = "http://www.djangoproject.com/;
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f09eb47206614a4954c51db8a94840fa"
 
-SRC_URI[md5sum] = "08ad028fc50ee961dea35e1e1f657b65"
-SRC_URI[sha256sum] = 
"353d129f22e1d24980d6061666f435781141c2dfd852f14ffc8a670175821034"
+SRC_URI[md5sum] = "f306015e16a8d5024dbac923ac34fffb"
+SRC_URI[sha256sum] = 
"22383567385a9c406d8a5ce080a2694c82c6b733e157922197e8b393bb3aacd9"
 
 PYPI_PACKAGE = "Django"
 inherit pypi
@@ -20,6 +20,7 @@ RDEPENDS_${PN} += "\
 ${PYTHON_PN}-email \
 ${PYTHON_PN}-html \
 ${PYTHON_PN}-json \
+${PYTHON_PN}-logging \
 ${PYTHON_PN}-multiprocessing \
 ${PYTHON_PN}-netserver \
 ${PYTHON_PN}-numbers \
diff --git a/meta-python/recipes-devtools/python/python-django_1.11.9.bb 
b/meta-python/recipes-devtools/python/python-django_1.11.10.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-django_1.11.9.bb
rename to meta-python/recipes-devtools/python/python-django_1.11.10.bb
diff --git a/meta-python/recipes-devtools/python/python3-django_1.11.9.bb 
b/meta-python/recipes-devtools/python/python3-django_1.11.10.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-django_1.11.9.bb
rename to meta-python/recipes-devtools/python/python3-django_1.11.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-greenlet: update to version 0.4.13

2018-02-11 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-greenlet.inc   | 4 ++--
 .../python/{python-greenlet_0.4.12.bb => python-greenlet_0.4.13.bb}   | 0
 .../python/{python3-greenlet_0.4.12.bb => python3-greenlet_0.4.13.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-greenlet_0.4.12.bb => 
python-greenlet_0.4.13.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-greenlet_0.4.12.bb => 
python3-greenlet_0.4.13.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-greenlet.inc 
b/meta-python/recipes-devtools/python/python-greenlet.inc
index 35820db..7a42240 100644
--- a/meta-python/recipes-devtools/python/python-greenlet.inc
+++ b/meta-python/recipes-devtools/python/python-greenlet.inc
@@ -3,7 +3,7 @@ LICENSE = "MIT & PSF"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=03143d7a1a9f5d8a0fee825f24ca9c36 \
 file://LICENSE.PSF;md5=c106931d9429eda0492617f037b8f69a"
 
-SRC_URI[md5sum] = "e8637647d58a26c4a1f51ca393e53c00"
-SRC_URI[sha256sum] = 
"e4c99c6010a5d153d481fdaf63b8a0782825c0721506d880403a3b9b82ae347e"
+SRC_URI[md5sum] = "6e0b9dd5385f81d478451ec8ed1d62b3"
+SRC_URI[sha256sum] = 
"0fef83d43bf87a5196c91e73cb9772f945a4caaff91242766c5916d1dd1381e4"
 
 inherit pypi
diff --git a/meta-python/recipes-devtools/python/python-greenlet_0.4.12.bb 
b/meta-python/recipes-devtools/python/python-greenlet_0.4.13.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-greenlet_0.4.12.bb
rename to meta-python/recipes-devtools/python/python-greenlet_0.4.13.bb
diff --git a/meta-python/recipes-devtools/python/python3-greenlet_0.4.12.bb 
b/meta-python/recipes-devtools/python/python3-greenlet_0.4.13.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-greenlet_0.4.12.bb
rename to meta-python/recipes-devtools/python/python3-greenlet_0.4.13.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-msgpack: update to version 0.5.2

2018-02-11 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-msgpack.inc| 4 ++--
 .../python/{python-msgpack_0.5.1.bb => python-msgpack_0.5.2.bb}   | 0
 .../python/{python3-msgpack_0.5.1.bb => python3-msgpack_0.5.2.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-msgpack_0.5.1.bb => 
python-msgpack_0.5.2.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-msgpack_0.5.1.bb => 
python3-msgpack_0.5.2.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-msgpack.inc 
b/meta-python/recipes-devtools/python/python-msgpack.inc
index 2729c6a..e6f6681 100644
--- a/meta-python/recipes-devtools/python/python-msgpack.inc
+++ b/meta-python/recipes-devtools/python/python-msgpack.inc
@@ -2,8 +2,8 @@ SUMMARY = "MessagePack (de)serializer"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://COPYING;md5=cd9523181d9d4fbf7ffca52eaa2a5751"
 
-SRC_URI[md5sum] = "29ef230aab635b7d3daaa349c735a1a0"
-SRC_URI[sha256sum] = 
"69aa1eb0e13be1d3bd495ca937eae66df4431126f5cfd5491dc40370e5644853"
+SRC_URI[md5sum] = "b7759a382dc6309b35e0a0eecc1f23f1"
+SRC_URI[sha256sum] = 
"23f688905bb9fbf00faa7346e72a72e670e68f3f5d94aeea5c123dd0e07de49c"
 
 PYPI_PACKAGE = "msgpack-python"
 inherit pypi
diff --git a/meta-python/recipes-devtools/python/python-msgpack_0.5.1.bb 
b/meta-python/recipes-devtools/python/python-msgpack_0.5.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-msgpack_0.5.1.bb
rename to meta-python/recipes-devtools/python/python-msgpack_0.5.2.bb
diff --git a/meta-python/recipes-devtools/python/python3-msgpack_0.5.1.bb 
b/meta-python/recipes-devtools/python/python3-msgpack_0.5.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-msgpack_0.5.1.bb
rename to meta-python/recipes-devtools/python/python3-msgpack_0.5.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-pycryptodome: update to version 3.4.11

2018-02-11 Thread Derek Straka
Update RDEPENDS to work on minimal python distribution
Create a test package for unit tests

Signed-off-by: Derek Straka 
---
 .../recipes-devtools/python/python-pycryptodome.inc  | 20 ++--
 ...todome_3.4.8.bb => python-pycryptodome_3.4.11.bb} |  0
 ...odome_3.4.8.bb => python3-pycryptodome_3.4.11.bb} |  0
 3 files changed, 18 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-pycryptodome_3.4.8.bb => 
python-pycryptodome_3.4.11.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-pycryptodome_3.4.8.bb => 
python3-pycryptodome_3.4.11.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-pycryptodome.inc 
b/meta-python/recipes-devtools/python/python-pycryptodome.inc
index 1efe1eb..c4969f9 100644
--- a/meta-python/recipes-devtools/python/python-pycryptodome.inc
+++ b/meta-python/recipes-devtools/python/python-pycryptodome.inc
@@ -5,9 +5,25 @@ HOMEPAGE = "http://www.pycryptodome.org;
 LICENSE = "PD & BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=775fe77831c03bf82f35abc0e230d4c1"
 
-SRC_URI[md5sum] = "030c40da6377bbc82deef8e884fa22cd"
-SRC_URI[sha256sum] = 
"ede7f1f44b0895feb8ddbf882d1a7eb504deb3fa34fcc4860d6065c25cbdf175"
+SRC_URI[md5sum] = "a2587b6381b0ef4eb960cea1e7507d04"
+SRC_URI[sha256sum] = 
"c5dd29e9f1b733e74311bf95d0e544e91bd1d14bc0366e8f443562d8d9920b7d"
 
 inherit pypi
 
+RDEPENDS_${PN} += " \
+${PYTHON_PN}-io \
+${PYTHON_PN}-math \
+"
+
+RDEPENDS_${PN}-tests += " \
+${PYTHON_PN}-unittest \
+"
+
+PACKAGES =+ "${PN}-tests"
+
+FILES_${PN}-tests += " \
+${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/ \
+${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/__pycache__/ \
+"
+
 BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python-pycryptodome_3.4.8.bb 
b/meta-python/recipes-devtools/python/python-pycryptodome_3.4.11.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-pycryptodome_3.4.8.bb
rename to meta-python/recipes-devtools/python/python-pycryptodome_3.4.11.bb
diff --git a/meta-python/recipes-devtools/python/python3-pycryptodome_3.4.8.bb 
b/meta-python/recipes-devtools/python/python3-pycryptodome_3.4.11.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-pycryptodome_3.4.8.bb
rename to meta-python/recipes-devtools/python/python3-pycryptodome_3.4.11.bb
-- 
2.7.4

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