Re: [oe] [meta-oe][PATCH] kselftest: Add a recipe on kernel selftest

2018-07-10 Thread Hongzhi, Song

Please ignore this.


On 2018年07月11日 10:50, Hongzhi, Song wrote:

Is this the report you sent ?

http://lists.openembedded.org/pipermail/openembedded-devel/2018-July/119308.html 




Sorry, I don't find accurate link. Could you give me a more clear 
direction?



-- Hongzhi


On 2018年07月10日 15:43, Khem Raj wrote:
Look at the report I sent to oe Devel earlier it should have link to 
full logs


On Mon, Jul 9, 2018 at 10:51 PM Hongzhi, Song 
mailto:hongzhi.s...@windriver.com>> wrote:


    Could you attach building arguments, conf/local.conf,
    log.do_compile for me?

    The text you pasted is not enough.

    -- Hongzhi


    On 2018年07月10日 12:11, Khem Raj wrote:
    > This is failing to build here
    >
    > | DEBUG: Executing shell function do_compile
    > | NOTE: make -j 16 CROSS_COMPILE=x86_64-bec-linux- ARCH=x86
    > CC=x86_64-bec-linux-gcc  -m64 -march=core2 -mtune=core2 -msse3
    > -mfpmath=sse -fstack-protector-strong -D_FORTIFY_SOURCE=2 -Wformat
    > -Wformat-security -Werror=format-security
    >
--sysroot=/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/recipe-sysroot
    > AR=x86_64-bec-linux-ar LD=x86_64-bec-linux-ld
    >
--sysroot=/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/recipe-sysroot
    >
DESTDIR=/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/image
    > -C
/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/kernel-selftest-1.0/tools/testing/selftests/bpf
    > | make: Entering directory
    >
'/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/kernel-selftest-1.0/tools/testing/selftests/bpf'
    > | Makefile:19: *** recipe commences before first target.  Stop.
    > | make: Leaving directory
    >
'/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/kernel-selftest-1.0/tools/testing/selftests/bpf'
    > | ERROR: oe_runmake failed
    > On Sat, Jul 7, 2018 at 11:05 PM Hongzhi.Song
    mailto:hongzhi.s...@windriver.com>>
    wrote:
    >> The recipe builds the framework for kernel-selftest. Now, it just
    >> contains two sets of testcase, bpf and vm. We are appending 
others

    >> to the recipe.
    >>
    >> It needs some features which will be written into relevant 
recipe.

    >> But now, you should add them to conf/local.conf manually.
    >> KERNEL_FEATURES_append += "features/bpf/bpf.scc"
    >>
    >> Signed-off-by: Dengke Du mailto:dengke...@windriver.com>>
    >> Signed-off-by: Hongzhi.Song mailto:hongzhi.s...@windriver.com>>
    >> ---
    >>   .../recipes-kernel/kselftest/kernel-selftest.bb
       | 94 ++
    >>   1 file changed, 94 insertions(+)
    >>   create mode 100644
    meta-oe/recipes-kernel/kselftest/kernel-selftest.bb
    
    >>
    >> diff --git
    a/meta-oe/recipes-kernel/kselftest/kernel-selftest.bb
    
    b/meta-oe/recipes-kernel/kselftest/kernel-selftest.bb
    
    >> new file mode 100644
    >> index 000..6f20bd3
    >> --- /dev/null
    >> +++ b/meta-oe/recipes-kernel/kselftest/kernel-selftest.bb
    
    >> @@ -0,0 +1,94 @@
    >> +SUMMARY = "Kernel selftest for Linux"
    >> +DESCRIPTION = "Kernel selftest for Linux"
    >> +LICENSE = "GPLv2"
    >> +
    >> +# for bpf and vm
    >> +DEPENDS = " \
    >> +    elfutils \
    >> +    libcap \
    >> +    libcap-ng \
    >> +    fuse \
    >> +    util-linux \
    >> +    rsync-native \
    >> +"
    >> +# for vm
    >> +RDEPENDS_${PN} += "libgcc \
    >> +                   bash \
    >> +"
    >> +
    >> +do_configure[depends] += "virtual/kernel:do_shared_workdir"
    >> +
    >> +inherit linux-kernel-base kernel-arch
    >> +
    >> +do_populate_lic[depends] += "virtual/kernel:do_patch"
    >> +
    >> +S = "${WORKDIR}/${BP}"
    >> +
    >> +# now we just test bpf and vm
    >> +# we will append other kernel selftest in the future
    >> +TEST_LIST = "bpf \
    >> +             vm \
    >> +"
    >> +
    >> +EXTRA_OEMAKE = '\
    >> +    CROSS_COMPILE=${TARGET_PREFIX} \
    >> +    ARCH=${ARCH} \
    >> +    CC="${CC}" \
    >> +    AR="${AR}" \
    >> +    LD="${LD}" \
    >> +'
    >> +
    >> +EXTRA_OEMAKE += "\
    >> +    'DESTDIR=${D}' \
    >> +"
    >> +
    >> +KERNEL_SELFTEST_SRC ?= "Makefile \
    >> +                        include \
    >> +                        tools \
    >> +                        scripts \
    >> +                        arch \
    >> +"
    >> +
    >> +do_compile() {
    >> +    for i in ${TEST_LIST}
    >> +    do
    >> +        oe_runmake -C ${S}/tools/testing/selftests/${i}
    >> +    done
    >> +}
    >> +
    >> +do_install() {
    >> +    for i in ${TEST_LIST}
    >> +    do
    >> +        oe_runmake -C ${S}/tools/testing/selftests/${i}
    INSTALL_PATH=${D}/opt/kselftest/${i} install
    >> +    done
    >> +
    >> +    chown root:root  -R ${D}/opt/kselftest
    

Re: [oe] [meta-oe][PATCH] kselftest: Add a recipe on kernel selftest

2018-07-10 Thread Hongzhi, Song

Is this the report you sent ?

http://lists.openembedded.org/pipermail/openembedded-devel/2018-July/119308.html


Sorry, I don't find accurate link. Could you give me a more clear direction?


-- Hongzhi


On 2018年07月10日 15:43, Khem Raj wrote:
Look at the report I sent to oe Devel earlier it should have link to 
full logs


On Mon, Jul 9, 2018 at 10:51 PM Hongzhi, Song 
mailto:hongzhi.s...@windriver.com>> wrote:


Could you attach building arguments, conf/local.conf,
log.do_compile for me?

The text you pasted is not enough.

-- Hongzhi


On 2018年07月10日 12:11, Khem Raj wrote:
> This is failing to build here
>
> | DEBUG: Executing shell function do_compile
> | NOTE: make -j 16 CROSS_COMPILE=x86_64-bec-linux- ARCH=x86
> CC=x86_64-bec-linux-gcc  -m64 -march=core2 -mtune=core2 -msse3
> -mfpmath=sse -fstack-protector-strong -D_FORTIFY_SOURCE=2 -Wformat
> -Wformat-security -Werror=format-security
>

--sysroot=/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/recipe-sysroot
> AR=x86_64-bec-linux-ar LD=x86_64-bec-linux-ld
>

--sysroot=/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/recipe-sysroot
>

DESTDIR=/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/image
> -C

/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/kernel-selftest-1.0/tools/testing/selftests/bpf
> | make: Entering directory
>

'/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/kernel-selftest-1.0/tools/testing/selftests/bpf'
> | Makefile:19: *** recipe commences before first target.  Stop.
> | make: Leaving directory
>

'/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/kernel-selftest-1.0/tools/testing/selftests/bpf'
> | ERROR: oe_runmake failed
> On Sat, Jul 7, 2018 at 11:05 PM Hongzhi.Song
mailto:hongzhi.s...@windriver.com>>
wrote:
>> The recipe builds the framework for kernel-selftest. Now, it just
>> contains two sets of testcase, bpf and vm. We are appending others
>> to the recipe.
>>
>> It needs some features which will be written into relevant recipe.
>> But now, you should add them to conf/local.conf manually.
>> KERNEL_FEATURES_append += "features/bpf/bpf.scc"
>>
>> Signed-off-by: Dengke Du mailto:dengke...@windriver.com>>
>> Signed-off-by: Hongzhi.Song mailto:hongzhi.s...@windriver.com>>
>> ---
>>   .../recipes-kernel/kselftest/kernel-selftest.bb
   | 94 ++
>>   1 file changed, 94 insertions(+)
>>   create mode 100644
meta-oe/recipes-kernel/kselftest/kernel-selftest.bb

>>
>> diff --git
a/meta-oe/recipes-kernel/kselftest/kernel-selftest.bb

b/meta-oe/recipes-kernel/kselftest/kernel-selftest.bb

>> new file mode 100644
>> index 000..6f20bd3
>> --- /dev/null
>> +++ b/meta-oe/recipes-kernel/kselftest/kernel-selftest.bb

>> @@ -0,0 +1,94 @@
>> +SUMMARY = "Kernel selftest for Linux"
>> +DESCRIPTION = "Kernel selftest for Linux"
>> +LICENSE = "GPLv2"
>> +
>> +# for bpf and vm
>> +DEPENDS = " \
>> +    elfutils \
>> +    libcap \
>> +    libcap-ng \
>> +    fuse \
>> +    util-linux \
>> +    rsync-native \
>> +"
>> +# for vm
>> +RDEPENDS_${PN} += "libgcc \
>> +                   bash \
>> +"
>> +
>> +do_configure[depends] += "virtual/kernel:do_shared_workdir"
>> +
>> +inherit linux-kernel-base kernel-arch
>> +
>> +do_populate_lic[depends] += "virtual/kernel:do_patch"
>> +
>> +S = "${WORKDIR}/${BP}"
>> +
>> +# now we just test bpf and vm
>> +# we will append other kernel selftest in the future
>> +TEST_LIST = "bpf \
>> +             vm \
>> +"
>> +
>> +EXTRA_OEMAKE = '\
>> +    CROSS_COMPILE=${TARGET_PREFIX} \
>> +    ARCH=${ARCH} \
>> +    CC="${CC}" \
>> +    AR="${AR}" \
>> +    LD="${LD}" \
>> +'
>> +
>> +EXTRA_OEMAKE += "\
>> +    'DESTDIR=${D}' \
>> +"
>> +
>> +KERNEL_SELFTEST_SRC ?= "Makefile \
>> +                        include \
>> +                        tools \
>> +                        scripts \
>> +                        arch \
>> +"
>> +
>> +do_compile() {
>> +    for i in ${TEST_LIST}
>> +    do
>> +        oe_runmake -C ${S}/tools/testing/selftests/${i}
>> +    done
>> +}
>> +
>> +do_install() {
>> +    for i in ${TEST_LIST}
>> +    do
>> +        oe_runmake -C ${S}/tools/testing/selftests/${i}
INSTALL_PATH=${D}/opt/kselftest/${i} install
>> +    done
>> +
>> +    chown root:root  -R ${D}/opt/kselftest
>> +}
>> +
>> +do_configure() {

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

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

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

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

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

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


[oe] [meta-python][PATCH] python-migrate: update to version 2.2.1

2018-07-10 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-flask-migrate.inc  | 4 ++--
 .../{python-flask-migrate_2.1.1.bb => python-flask-migrate_2.2.1.bb}  | 0
 ...{python3-flask-migrate_2.1.1.bb => python3-flask-migrate_2.2.1.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-flask-migrate_2.1.1.bb => 
python-flask-migrate_2.2.1.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-flask-migrate_2.1.1.bb => 
python3-flask-migrate_2.2.1.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-flask-migrate.inc 
b/meta-python/recipes-devtools/python/python-flask-migrate.inc
index 7af4fe1..dfb20e9 100644
--- a/meta-python/recipes-devtools/python/python-flask-migrate.inc
+++ b/meta-python/recipes-devtools/python/python-flask-migrate.inc
@@ -2,8 +2,8 @@ DESCRIPTION = "SQLAlchemy database migrations for Flask 
applications using Alemb
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
 
-SRC_URI[md5sum] = "def4106c80897b7fad2afb3bc05360e4"
-SRC_URI[sha256sum] = 
"b709ca8642559c3c5a81a33ab10839fa052177accd5ba821047a99db635255ed"
+SRC_URI[md5sum] = "aaeee55431d0287063657122ff41a0e6"
+SRC_URI[sha256sum] = 
"cd1b4e6cb829eeb41c02ad9202d83bef5f4b7a036dd9fad72ce96ad1e22efb07"
 
 PYPI_PACKAGE = "Flask-Migrate"
 
diff --git a/meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb 
b/meta-python/recipes-devtools/python/python-flask-migrate_2.2.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
rename to meta-python/recipes-devtools/python/python-flask-migrate_2.2.1.bb
diff --git a/meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-migrate_2.2.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb
rename to meta-python/recipes-devtools/python/python3-flask-migrate_2.2.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 1.0.2

2018-07-10 Thread Derek Straka
License-Update: Copyright authors changed along with formatting of the license.

License terms remain the same

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

diff --git a/meta-python/recipes-devtools/python/python-flask.inc 
b/meta-python/recipes-devtools/python/python-flask.inc
index ecf5619..66ad1a6 100644
--- a/meta-python/recipes-devtools/python/python-flask.inc
+++ b/meta-python/recipes-devtools/python/python-flask.inc
@@ -4,10 +4,10 @@ Flask is a microframework for Python based on Werkzeug, Jinja 
2 and good \
 intentions. And before you ask: It’s BSD licensed!"
 HOMEPAGE = "https://github.com/mitsuhiko/flask/;
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=19866b76b054ab30c270c0eb9d7e43d7"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c011883ac26229b8ba3084f55c7664c6"
 
-SRC_URI[md5sum] = "97278dfdafda98ba7902e890b0289177"
-SRC_URI[sha256sum] = 
"49f44461237b69ecd901cc7ce66feea0319b9158743dd27a2899962ab214dac1"
+SRC_URI[md5sum] = "824f0f20aae1f44c9c7dc4054adb7969"
+SRC_URI[sha256sum] = 
"2271c0070dbcb5275fad4a82e29f23ab92682dc45f9dfbc22c02ba9b9322ce48"
 
 CLEANBROKEN = "1"
 
diff --git a/meta-python/recipes-devtools/python/python-flask_0.12.2.bb 
b/meta-python/recipes-devtools/python/python-flask_1.0.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-flask_0.12.2.bb
rename to meta-python/recipes-devtools/python/python-flask_1.0.2.bb
diff --git a/meta-python/recipes-devtools/python/python3-flask_0.12.2.bb 
b/meta-python/recipes-devtools/python/python3-flask_1.0.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-flask_0.12.2.bb
rename to meta-python/recipes-devtools/python/python3-flask_1.0.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-django: update to version 1.11.14

2018-07-10 Thread Derek Straka
Update the upstream check regex to restrict to version 1.X.Y

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

diff --git a/meta-python/recipes-devtools/python/python-django.inc 
b/meta-python/recipes-devtools/python/python-django.inc
index 4ef2d7f..ee3aee6 100644
--- a/meta-python/recipes-devtools/python/python-django.inc
+++ b/meta-python/recipes-devtools/python/python-django.inc
@@ -3,12 +3,14 @@ HOMEPAGE = "http://www.djangoproject.com/;
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f09eb47206614a4954c51db8a94840fa"
 
-SRC_URI[md5sum] = "f306015e16a8d5024dbac923ac34fffb"
-SRC_URI[sha256sum] = 
"22383567385a9c406d8a5ce080a2694c82c6b733e157922197e8b393bb3aacd9"
+SRC_URI[md5sum] = "38e82b59a1c27bbf98ccf0564ead7426"
+SRC_URI[sha256sum] = 
"eb9271f0874f53106a2719c0c35ce67631f6cc27cf81a60c6f8c9817b35a3f6e"
 
 PYPI_PACKAGE = "Django"
 inherit pypi
 
+UPSTREAM_CHECK_REGEX = "(?P1(\.\d+)+)"
+
 FILES_${PN} += "${datadir}/django"
 
 BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python-django_1.11.10.bb 
b/meta-python/recipes-devtools/python/python-django_1.11.14.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-django_1.11.10.bb
rename to meta-python/recipes-devtools/python/python-django_1.11.14.bb
diff --git a/meta-python/recipes-devtools/python/python3-django_1.11.10.bb 
b/meta-python/recipes-devtools/python/python3-django_1.11.14.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-django_1.11.10.bb
rename to meta-python/recipes-devtools/python/python3-django_1.11.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-astroid: update to version 1.6.5

2018-07-10 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-astroid.inc| 4 ++--
 .../python/{python-astroid_1.6.3.bb => python-astroid_1.6.5.bb}   | 0
 .../python/{python3-astroid_1.6.3.bb => python3-astroid_1.6.5.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-astroid_1.6.3.bb => 
python-astroid_1.6.5.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-astroid_1.6.3.bb => 
python3-astroid_1.6.5.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-astroid.inc 
b/meta-python/recipes-devtools/python/python-astroid.inc
index ead2b6e..fae0f13 100644
--- a/meta-python/recipes-devtools/python/python-astroid.inc
+++ b/meta-python/recipes-devtools/python/python-astroid.inc
@@ -4,8 +4,8 @@ SECTION = "devel/python"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
 
-SRC_URI[md5sum] = "7d7dc000b25f0cbfcca20cb9a8dc0310"
-SRC_URI[sha256sum] = 
"35cfae47aac19c7b407b7095410e895e836f2285ccf1220336afba744cc4c5f2"
+SRC_URI[md5sum] = "2dd01ef0d5b5f0fc754c1ba40137b61c"
+SRC_URI[sha256sum] = 
"fc9b582dba0366e63540982c3944a9230cbc6f303641c51483fa547dcc22393a"
 
 inherit pypi
 
diff --git a/meta-python/recipes-devtools/python/python-astroid_1.6.3.bb 
b/meta-python/recipes-devtools/python/python-astroid_1.6.5.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-astroid_1.6.3.bb
rename to meta-python/recipes-devtools/python/python-astroid_1.6.5.bb
diff --git a/meta-python/recipes-devtools/python/python3-astroid_1.6.3.bb 
b/meta-python/recipes-devtools/python/python3-astroid_1.6.5.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-astroid_1.6.3.bb
rename to meta-python/recipes-devtools/python/python3-astroid_1.6.5.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-pyroute2: update to version 0.5.2

2018-07-10 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-pyroute2.inc   | 4 ++--
 .../python/{python-pyroute2_0.4.21.bb => python-pyroute2_0.5.2.bb}| 0
 .../python/{python3-pyroute2_0.4.21.bb => python3-pyroute2_0.5.2.bb}  | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-pyroute2_0.4.21.bb => 
python-pyroute2_0.5.2.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-pyroute2_0.4.21.bb => 
python3-pyroute2_0.5.2.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-pyroute2.inc 
b/meta-python/recipes-devtools/python/python-pyroute2.inc
index 9ec9866..ed1981e 100644
--- a/meta-python/recipes-devtools/python/python-pyroute2.inc
+++ b/meta-python/recipes-devtools/python/python-pyroute2.inc
@@ -3,8 +3,8 @@ LICENSE = "GPLv2 & Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.GPL.v2;md5=b234ee4d69f5fce4486a80fdaf4a4263 
\
 
file://LICENSE.Apache.v2;md5=34281e312165f843a2b7d1f114fe65ce"
 
-SRC_URI[md5sum] = "9c251543c4282a2f8b1a8d6aa8afc688"
-SRC_URI[sha256sum] = 
"7afad28ee0a0f3e7c34adaa9f953d00560ed9910203e93f107833b6e8d151171"
+SRC_URI[md5sum] = "2f6f951e94356ae9d224f417dc6ebed2"
+SRC_URI[sha256sum] = 
"42bf74495d95a0196a74dd171357f660175aba2bfc23f9b5f63e3830ccbef9ac"
 
 FILESEXTRAPATHS_prepend := "${THISDIR}/python-pyroute2:"
 
diff --git a/meta-python/recipes-devtools/python/python-pyroute2_0.4.21.bb 
b/meta-python/recipes-devtools/python/python-pyroute2_0.5.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-pyroute2_0.4.21.bb
rename to meta-python/recipes-devtools/python/python-pyroute2_0.5.2.bb
diff --git a/meta-python/recipes-devtools/python/python3-pyroute2_0.4.21.bb 
b/meta-python/recipes-devtools/python/python3-pyroute2_0.5.2.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-pyroute2_0.4.21.bb
rename to meta-python/recipes-devtools/python/python3-pyroute2_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-setuptools-scm: update to version 2.1.0

2018-07-10 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-setuptools-scm.inc | 4 ++--
 ...python-setuptools-scm_1.15.7.bb => python-setuptools-scm_2.1.0.bb} | 0
 ...thon3-setuptools-scm_1.15.7.bb => python3-setuptools-scm_2.1.0.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-setuptools-scm_1.15.7.bb => 
python-setuptools-scm_2.1.0.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-setuptools-scm_1.15.7.bb 
=> python3-setuptools-scm_2.1.0.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 eb66580..98883ec 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://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
 
-SRC_URI[md5sum] = "1b55f9cedde4a33ab5d286c5f30e86db"
-SRC_URI[sha256sum] = 
"e163e8a12d2121f77575773cfc2b5988275dc1f1d2541fdf780127c29dbbea9c"
+SRC_URI[md5sum] = "cfec5d2dbbd0a85c40066f79035b5878"
+SRC_URI[sha256sum] = 
"a767141fecdab1c0b3c8e4c788ac912d7c94a0d6c452d40777ba84f918316379"
 
 PYPI_PACKAGE = "setuptools_scm"
 inherit pypi
diff --git 
a/meta-python/recipes-devtools/python/python-setuptools-scm_1.15.7.bb 
b/meta-python/recipes-devtools/python/python-setuptools-scm_2.1.0.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-setuptools-scm_1.15.7.bb
rename to meta-python/recipes-devtools/python/python-setuptools-scm_2.1.0.bb
diff --git 
a/meta-python/recipes-devtools/python/python3-setuptools-scm_1.15.7.bb 
b/meta-python/recipes-devtools/python/python3-setuptools-scm_2.1.0.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-setuptools-scm_1.15.7.bb
rename to meta-python/recipes-devtools/python/python3-setuptools-scm_2.1.0.bb
-- 
2.7.4

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


[oe] [PATCH][meta-python] python3-bandit: add the Bandit security scanner

2018-07-10 Thread Ross Burton
Bandit is a security scanner for Python code.

Signed-off-by: Ross Burton 
---
 meta-python/recipes-devtools/python/python3-bandit_1.4.0.bb | 12 
 1 file changed, 12 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-bandit_1.4.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-bandit_1.4.0.bb 
b/meta-python/recipes-devtools/python/python3-bandit_1.4.0.bb
new file mode 100644
index 00..2d24c8b0f7
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-bandit_1.4.0.bb
@@ -0,0 +1,12 @@
+SUMMARY = "Security oriented static analyser for python code."
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
+
+SRC_URI[md5sum] = "f74155cb9921be857693b32d2531e857"
+SRC_URI[sha256sum] = 
"cb977045497f83ec3a02616973ab845c829cdab8144ce2e757fe031104a9abd4"
+
+DEPENDS = "python3-pyyaml python3-six python3-stevedore"
+
+inherit setuptools3 pypi
+
+BBCLASSEXTEND = "native"
-- 
2.11.0

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


[oe] [PATCH][meta-python] python-stevedore: add Py2 and Py3 recipes for stevedore

2018-07-10 Thread Ross Burton
Based on a recipe from meta-openstack, but with the rmargparse class removed
(which doesn't appear to be needed anymore) and Python 3 support added.

Signed-off-by: Ross Burton 
---
 meta-python/recipes-devtools/python/python-stevedore.inc| 13 +
 .../recipes-devtools/python/python-stevedore_1.28.0.bb  |  2 ++
 .../recipes-devtools/python/python3-stevedore_1.28.0.bb |  2 ++
 3 files changed, 17 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-stevedore.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-stevedore_1.28.0.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-stevedore_1.28.0.bb

diff --git a/meta-python/recipes-devtools/python/python-stevedore.inc 
b/meta-python/recipes-devtools/python/python-stevedore.inc
new file mode 100644
index 00..b23fb4c8c5
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-stevedore.inc
@@ -0,0 +1,13 @@
+DESCRIPTION = "Manage dynamic plugins for Python applications"
+HOMEPAGE = "https://github.com/dreamhost/stevedore;
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
+
+SRC_URI[md5sum] = "b736a71431a2ff5831bbff4a6ccec0c1"
+SRC_URI[sha256sum] = 
"f1c7518e7b160336040fee272174f1f7b29a46febb3632502a8f2055f973d60b"
+
+inherit pypi
+
+RDEPENDS_${PN} += "${PYTHON_PN}-pbr ${PYTHON_PN}-six"
+
+BBCLASSEXTEND = "native"
diff --git a/meta-python/recipes-devtools/python/python-stevedore_1.28.0.bb 
b/meta-python/recipes-devtools/python/python-stevedore_1.28.0.bb
new file mode 100644
index 00..70a00c1315
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-stevedore_1.28.0.bb
@@ -0,0 +1,2 @@
+inherit setuptools
+require python-stevedore.inc
diff --git a/meta-python/recipes-devtools/python/python3-stevedore_1.28.0.bb 
b/meta-python/recipes-devtools/python/python3-stevedore_1.28.0.bb
new file mode 100644
index 00..3f557f2cbf
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-stevedore_1.28.0.bb
@@ -0,0 +1,2 @@
+inherit setuptools3
+require python-stevedore.inc
-- 
2.11.0

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


[oe] [meta-oe][PATCH] libkcapi: Add new recipe for v1.1.1

2018-07-10 Thread Krzysztof Kozlowski
Add new recipe with libkcapi v1.1.1, Linux Kernel Crypto API User Space
Interface Library.

Signed-off-by: Krzysztof Kozlowski 
---
 meta-oe/recipes-crypto/libkcapi/libkcapi_git.bb | 24 
 1 file changed, 24 insertions(+)
 create mode 100644 meta-oe/recipes-crypto/libkcapi/libkcapi_git.bb

diff --git a/meta-oe/recipes-crypto/libkcapi/libkcapi_git.bb 
b/meta-oe/recipes-crypto/libkcapi/libkcapi_git.bb
new file mode 100644
index ..be25d6e390ea
--- /dev/null
+++ b/meta-oe/recipes-crypto/libkcapi/libkcapi_git.bb
@@ -0,0 +1,24 @@
+SUMMARY = "Linux Kernel Crypto API User Space Interface Library"
+HOMEPAGE = "http://www.chronox.de/libkcapi.html;
+LICENSE = "BSD | GPL-2.0"
+LIC_FILES_CHKSUM = "file://COPYING;md5=d0421cf231423bda10cea691b613e866"
+
+DEPENDS = "libtool"
+
+S = "${WORKDIR}/git"
+# Use v1.1.1 with changes on top for building in OE
+SRCREV = "342b50fc9225a991c224126c13c188ad9f1ef9f9"
+PV = "1.1.1+git${SRCPV}"
+SRC_URI = "git://github.com/smuellerDD/libkcapi.git"
+
+inherit autotools
+
+PACKAGECONFIG ??= ""
+PACKAGECONFIG[testapp] = "--enable-kcapi-test,,,"
+PACKAGECONFIG[apps] = "--enable-kcapi-speed --enable-kcapi-hasher 
--enable-kcapi-rngapp --enable-kcapi-encapp --enable-kcapi-dgstapp,,,"
+
+do_install_append() {
+# bindir contains testapp and apps.  However it is always created, even
+# when no binaries are installed (empty bin_PROGRAMS in Makefile.am),
+rmdir --ignore-fail-on-non-empty ${D}${bindir}
+}
-- 
2.14.1

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


[oe] [PATCH] php: actually enable openssl

2018-07-10 Thread Ross Burton
The PHP recipe depends on OpenSSL but support is disabled unless you pass
--with-openssl.  Add a PACKAGECONFIG for openssl and enable it by default.

Also for clarity pass --enable-opcache when the opcache is enabled.

Signed-off-by: Ross Burton 
---
 meta-oe/recipes-devtools/php/php.inc | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-oe/recipes-devtools/php/php.inc 
b/meta-oe/recipes-devtools/php/php.inc
index f262d60d15..9ac1dc46f0 100644
--- a/meta-oe/recipes-devtools/php/php.inc
+++ b/meta-oe/recipes-devtools/php/php.inc
@@ -5,8 +5,7 @@ SECTION = "console/network"
 LICENSE = "PHP-3.0"
 
 BBCLASSEXTEND = "native"
-DEPENDS = "zlib bzip2 libxml2 virtual/libiconv php-native lemon-native \
-   openssl"
+DEPENDS = "zlib bzip2 libxml2 virtual/libiconv php-native lemon-native"
 DEPENDS_class-native = "zlib-native libxml2-native"
 
 PHP_MAJOR_VERSION = "${@d.getVar('PV', True).split('.')[0]}"
@@ -68,7 +67,7 @@ EXTRA_OECONF_class-native = " \
 ${COMMON_EXTRA_OECONF} \
 "
 
-PACKAGECONFIG ??= "mysql sqlite3 imap opcache \
+PACKAGECONFIG ??= "mysql sqlite3 imap opcache openssl \
${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 pam', d)} \
 "
 PACKAGECONFIG_class-native = ""
@@ -92,7 +91,8 @@ PACKAGECONFIG[imap] = "--with-imap=${STAGING_DIR_HOST} \
,--without-imap --without-imap-ssl \
,uw-imap"
 PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
-PACKAGECONFIG[opcache] = ",--disable-opcache"
+PACKAGECONFIG[opcache] = "--enable-opcache,--disable-opcache"
+PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl"
 
 export PHP_NATIVE_DIR = "${STAGING_BINDIR_NATIVE}"
 export PHP_PEAR_PHP_BIN = "${STAGING_BINDIR_NATIVE}/php"
-- 
2.11.0

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


[oe] [PATCH][meta-python] python-pbr: add python3-pbr variant

2018-07-10 Thread Ross Burton
Signed-off-by: Ross Burton 
---
 meta-python/recipes-devtools/python/python-pbr.inc | 14 ++
 .../recipes-devtools/python/python-pbr_3.1.1.bb| 18 ++
 .../recipes-devtools/python/python3-pbr_3.1.1.bb   |  2 ++
 3 files changed, 18 insertions(+), 16 deletions(-)
 create mode 100644 meta-python/recipes-devtools/python/python-pbr.inc
 create mode 100644 meta-python/recipes-devtools/python/python3-pbr_3.1.1.bb

diff --git a/meta-python/recipes-devtools/python/python-pbr.inc 
b/meta-python/recipes-devtools/python/python-pbr.inc
new file mode 100644
index 00..d8847f6502
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pbr.inc
@@ -0,0 +1,14 @@
+DESCRIPTION = "Python Build Reasonableness: PBR is a library that injects some 
useful and sensible default behaviors into your setuptools run"
+HOMEPAGE = "https://pypi.python.org/pypi/pbr;
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
+
+SRC_URI[md5sum] = "4e82c2e07af544c56a5b71c801525b00"
+SRC_URI[sha256sum] = 
"05f61c71aaefc02d8e37c0a3eeb9815ff526ea28b3b76324769e6158d7f95be1"
+
+inherit pypi
+
+RDEPENDS_${PN} += "${PYTHON_PN}-pip"
+
+BBCLASSEXTEND = "native"
diff --git a/meta-python/recipes-devtools/python/python-pbr_3.1.1.bb 
b/meta-python/recipes-devtools/python/python-pbr_3.1.1.bb
index bdff867f30..8f7f924dab 100644
--- a/meta-python/recipes-devtools/python/python-pbr_3.1.1.bb
+++ b/meta-python/recipes-devtools/python/python-pbr_3.1.1.bb
@@ -1,16 +1,2 @@
-DESCRIPTION = "Python Build Reasonableness: PBR is a library that injects some 
useful and sensible default behaviors into your setuptools run"
-HOMEPAGE = "https://pypi.python.org/pypi/pbr;
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
-
-SRC_URI[md5sum] = "4e82c2e07af544c56a5b71c801525b00"
-SRC_URI[sha256sum] = 
"05f61c71aaefc02d8e37c0a3eeb9815ff526ea28b3b76324769e6158d7f95be1"
-
-inherit pypi setuptools
-
-RDEPENDS_${PN}_class-target += " \
-python-pip \
-"
-
-BBCLASSEXTEND = "native"
+inherit setuptools
+require python-pbr.inc
diff --git a/meta-python/recipes-devtools/python/python3-pbr_3.1.1.bb 
b/meta-python/recipes-devtools/python/python3-pbr_3.1.1.bb
new file mode 100644
index 00..97e7361b16
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pbr_3.1.1.bb
@@ -0,0 +1,2 @@
+inherit setuptools3
+require python-pbr.inc
-- 
2.11.0

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


[oe] [meta-python][PATCH] python3-scapy: update to version 0.25

2018-07-10 Thread Derek Straka
License-Update: Update PKG-INFO checksum and verify GPLv2 remains

Signed-off-by: Derek Straka 
---
 .../python/{python3-scapy_0.23.bb => python3-scapy_0.25.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-scapy_0.23.bb => 
python3-scapy_0.25.bb} (55%)

diff --git a/meta-python/recipes-devtools/python/python3-scapy_0.23.bb 
b/meta-python/recipes-devtools/python/python3-scapy_0.25.bb
similarity index 55%
rename from meta-python/recipes-devtools/python/python3-scapy_0.23.bb
rename to meta-python/recipes-devtools/python/python3-scapy_0.25.bb
index 3e7baf4..f785a2f 100644
--- a/meta-python/recipes-devtools/python/python3-scapy_0.23.bb
+++ b/meta-python/recipes-devtools/python/python3-scapy_0.25.bb
@@ -3,11 +3,11 @@ based on scapy with python3 compatibility"
 SECTION = "devel/python"
 HOMEPAGE = "https://github.com/phaethon/scapy;
 LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=95ea6ecfc360eb47fe6f470ad736d7cd"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=a4282d4d80227fa599a99e77fdd95e71"
 
 inherit pypi setuptools3
 
 PYPI_PACKAGE = "scapy-python3"
 
-SRC_URI[md5sum] = "8642d09ca727e7e2b455223ae94059b7"
-SRC_URI[sha256sum] = 
"8760991a67162f43af4d9e64828bcefc100ba88859b75177ae9f7ace56e58186"
+SRC_URI[md5sum] = "c9003d39def73c028cb8c71bcbb42629"
+SRC_URI[sha256sum] = 
"2ae1b3bd9759844e830a6cc3ba11c3f25b08433a8ee3e7eddc08224905e5ef2b"
-- 
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-vobject: update to version 0.9.6

2018-07-10 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../python/{python-vobject_0.9.5.bb => python-vobject_0.9.6.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-vobject_0.9.5.bb => 
python-vobject_0.9.6.bb} (71%)

diff --git a/meta-python/recipes-devtools/python/python-vobject_0.9.5.bb 
b/meta-python/recipes-devtools/python/python-vobject_0.9.6.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python-vobject_0.9.5.bb
rename to meta-python/recipes-devtools/python/python-vobject_0.9.6.bb
index d2f343e..d92c137 100644
--- a/meta-python/recipes-devtools/python/python-vobject_0.9.5.bb
+++ b/meta-python/recipes-devtools/python/python-vobject_0.9.6.bb
@@ -4,8 +4,8 @@ HOMEPAGE = "http://vobject.skyhouseconsulting.com/;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = 
"file://LICENSE-2.0.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-SRC_URI[md5sum] = "aa629d6ae95db5edfd5b2402eb1073cb"
-SRC_URI[sha256sum] = 
"0f56cae196303d875682b9648b4bb43ffc769d2f0f800958e0a506af867b1243"
+SRC_URI[md5sum] = "1da0747914fe440329c0b37e4be9040d"
+SRC_URI[sha256sum] = 
"cd9ede4363f83c06ba8d8f1541c736efa5c46f9a431430002b2f84f4f4e674d8"
 
 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-pandas: update to version 0.23.3

2018-07-10 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-pandas.inc | 4 ++--
 .../python/{python-pandas_0.23.1.bb => python-pandas_0.23.3.bb}   | 0
 .../python/{python3-pandas_0.23.1.bb => python3-pandas_0.23.3.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-pandas_0.23.1.bb => 
python-pandas_0.23.3.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-pandas_0.23.1.bb => 
python3-pandas_0.23.3.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-pandas.inc 
b/meta-python/recipes-devtools/python/python-pandas.inc
index 9b8e4dc..8b4914f 100644
--- a/meta-python/recipes-devtools/python/python-pandas.inc
+++ b/meta-python/recipes-devtools/python/python-pandas.inc
@@ -6,8 +6,8 @@ HOMEPAGE = "http://pandas.pydata.org/;
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=ee0470f2de336c370a71c2f8d5e81c11"
 
-SRC_URI[md5sum] = "95554bdc5991831030055dc26393554f"
-SRC_URI[sha256sum] = 
"50b52af2af2e15f4aeb2fe196da073a8c131fa02e433e105d95ce40016df5690"
+SRC_URI[md5sum] = "ed532e0cdc2aebe190f01e2ae84162f6"
+SRC_URI[sha256sum] = 
"9cd3614b4e31a0889388ff1bd19ae857ad52658b33f776065793c293a29cf612"
 
 inherit pypi
 
diff --git a/meta-python/recipes-devtools/python/python-pandas_0.23.1.bb 
b/meta-python/recipes-devtools/python/python-pandas_0.23.3.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-pandas_0.23.1.bb
rename to meta-python/recipes-devtools/python/python-pandas_0.23.3.bb
diff --git a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb 
b/meta-python/recipes-devtools/python/python3-pandas_0.23.3.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
rename to meta-python/recipes-devtools/python/python3-pandas_0.23.3.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.3.4

2018-07-10 Thread Derek Straka
License-Update: Update the checksum to include a file added in the latest 
release

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

diff --git a/meta-python/recipes-devtools/python/python-gevent.inc 
b/meta-python/recipes-devtools/python/python-gevent.inc
index 13513f2..074e62f 100644
--- a/meta-python/recipes-devtools/python/python-gevent.inc
+++ b/meta-python/recipes-devtools/python/python-gevent.inc
@@ -4,7 +4,7 @@ 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=4de99aac27b470c29c6c309e0c279b65 \
-file://NOTICE;md5=5966cd2c6582656d28ab3c33da3860f8 \
+file://NOTICE;md5=18108df3583462cafd457f024b9b09b5 \
 
file://deps/libev/LICENSE;md5=d6ad416afd040c90698edcdf1cbee347"
 DEPENDS += "libevent"
 DEPENDS += "${PYTHON_PN}-greenlet"
@@ -19,8 +19,8 @@ SRC_URI_append = " \
 file://libev-conf.patch;patch=1;pnum=1 \
 "
 
-SRC_URI[md5sum] = "7f0baf355384fe5ff2ecf66853422554"
-SRC_URI[sha256sum] = 
"4791c8ae9c57d6f153354736e1ccab1e2baf6c8d9ae5a77a9ac90f41e2966b2d"
+SRC_URI[md5sum] = "97deaf53196ba430808e8f18b731112a"
+SRC_URI[sha256sum] = 
"53c4dc705886d028f5d81e698b1d1479994a421498cd6529cb9711b5e2a84f74"
 
 # 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.2.bb 
b/meta-python/recipes-devtools/python/python-gevent_1.3.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-gevent_1.2.2.bb
rename to meta-python/recipes-devtools/python/python-gevent_1.3.4.bb
diff --git a/meta-python/recipes-devtools/python/python3-gevent_1.2.2.bb 
b/meta-python/recipes-devtools/python/python3-gevent_1.3.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-gevent_1.2.2.bb
rename to meta-python/recipes-devtools/python/python3-gevent_1.3.4.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] hiawatha: use the correct CMAKE flag to disable TLS

2018-07-10 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-webserver/recipes-httpd/hiawatha/hiawatha_10.7.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-webserver/recipes-httpd/hiawatha/hiawatha_10.7.bb 
b/meta-webserver/recipes-httpd/hiawatha/hiawatha_10.7.bb
index 4c3ca55..a6926d8 100644
--- a/meta-webserver/recipes-httpd/hiawatha/hiawatha_10.7.bb
+++ b/meta-webserver/recipes-httpd/hiawatha/hiawatha_10.7.bb
@@ -23,7 +23,7 @@ inherit cmake update-rc.d systemd
 EXTRA_OECMAKE = " -DENABLE_IPV6=OFF \
   -DENABLE_CACHE=OFF \
   -DENABLE_DEBUG=OFF \
-  -DENABLE_SSL=OFF \
+  -DENABLE_TLS=OFF \
   -DENABLE_TOOLKIT=OFF \
   -DENABLE_CHROOT=OFF \
   -DENABLE_XSLT=ON \
-- 
2.7.4

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


Re: [oe] [PATCH] kernel-devicetree.bbclass: DTB make targets may contain path components

2018-07-10 Thread Jonathan Haigh
> This patch is fine however, you should rebase it on top of master as of today.
> secondly, this should be sent to oe-core mailing list since its
> changing that layer


Ah, okay, I'll do that. Thanks Khem.


From: Khem Raj 
Sent: 07 July 2018 03:38:48
To: akuster808
Cc: Jeremy Johnson; Jonathan Haigh; openembeded-devel
Subject: Re: [oe] [PATCH] kernel-devicetree.bbclass: DTB make targets may 
contain path components



On Fri, Jul 6, 2018 at 6:13 PM akuster808 
mailto:akuster...@gmail.com>> wrote:


On 07/06/2018 02:25 PM, Khem Raj wrote:
> On Fri, Jul 6, 2018 at 12:02 PM Jonathan Haigh 
> mailto:jonathan.ha...@arm.com>> wrote:
>> normalize_dtb() turns DTS and DTB paths into values that can be used as
>> make targets. These make targets sometimes contain some directory components
>> so 'basename' is not suitable for turning the paths into make targets -
>> we should only strip off leading directory components of the path up to
>> and including the 'dts' directory (if it exists). For example:
>> * 'overlays/at86rf233.dtbo' should not be changed.
>> * 'some/directory/path/dts/overlays/at86rf233.dtbo' should be changed to
>>   'overlays/at86rf233.dtbo' rather than just 'at86rf233.dtbo'
>>
>> Signed-off-by: Jonathan Haigh 
>> mailto:jonathan.ha...@arm.com>>
>> ---
>>  meta/classes/kernel-devicetree.bbclass | 5 +++--
>>  1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta/classes/kernel-devicetree.bbclass 
>> b/meta/classes/kernel-devicetree.bbclass
>> index 9866d84..0ffa8e9 100644
>> --- a/meta/classes/kernel-devicetree.bbclass
>> +++ b/meta/classes/kernel-devicetree.bbclass
>> @@ -12,9 +12,10 @@ KERNEL_DEVICETREE_BUNDLE ?= "0"
>>  normalize_dtb () {
>>  DTB="$1"
>>  if echo ${DTB} | grep -q '/dts/'; then
>> -   bbwarn "${DTB} contains the full path to the the dts file, 
>> but only the dtb name should be used."
>> +   bbwarn "${DTB} contains the full path to the the dts file, 
>> but the path should be relative to the dts directory."
>> +   DTB=`echo "${DTB}" | sed 's,^.*/dts/,,'`
>>  fi
>> -   DTB=`basename ${DTB} | sed 's,\.dts$,.dtb,g'`
>> +   DTB=`echo "${DTB}" | sed 's,\.dts$,.dtb,g'`
> This patch is fine however, you should rebase it on top of master as of today.
> secondly, this should be sent to oe-core mailing list since its
> changing that layer

this landed in master already. patch was posted earlier this week.

http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=8b9264824689e99fb257901be3c0f91f79f920ef
>

They are different patches

>>  echo "${DTB}"
>>  }
>>
>> --
>> 2.7.4
>>
>>
>> IMPORTANT NOTICE: The contents of this email and any attachments are 
>> confidential and may also be privileged. If you are not the intended 
>> recipient, please notify the sender immediately and do not disclose the 
>> contents to any other person, use it for any purpose, or store or copy the 
>> information in any medium. Thank you.
>> --
>> ___
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

IMPORTANT NOTICE: The contents of this email and any attachments are 
confidential and may also be privileged. If you are not the intended recipient, 
please notify the sender immediately and do not disclose the contents to any 
other person, use it for any purpose, or store or copy the information in any 
medium. Thank you.
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] openjdk: correct the typo mistake

2018-07-10 Thread Richard Leitner
Hi,
this is a note to let you know that I've just added this patch to the
master-next branch of the meta-java repository at
git://git.yoctoproject.org/meta-java

As soon as it has gone through some more testing it will likely be
merged to the master branch.

If you have any questions, please let me know.

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


Re: [oe] [meta-oe][PATCH] kselftest: Add a recipe on kernel selftest

2018-07-10 Thread Khem Raj
Look at the report I sent to oe Devel earlier it should have link to full
logs

On Mon, Jul 9, 2018 at 10:51 PM Hongzhi, Song 
wrote:

> Could you attach building arguments, conf/local.conf, log.do_compile for
> me?
>
> The text you pasted is not enough.
>
> -- Hongzhi
>
>
> On 2018年07月10日 12:11, Khem Raj wrote:
> > This is failing to build here
> >
> > | DEBUG: Executing shell function do_compile
> > | NOTE: make -j 16 CROSS_COMPILE=x86_64-bec-linux- ARCH=x86
> > CC=x86_64-bec-linux-gcc  -m64 -march=core2 -mtune=core2 -msse3
> > -mfpmath=sse -fstack-protector-strong  -D_FORTIFY_SOURCE=2 -Wformat
> > -Wformat-security -Werror=format-security
> >
> --sysroot=/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/recipe-sysroot
> > AR=x86_64-bec-linux-ar LD=x86_64-bec-linux-ld
> >
> --sysroot=/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/recipe-sysroot
> >
> DESTDIR=/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/image
> > -C
> /mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/kernel-selftest-1.0/tools/testing/selftests/bpf
> > | make: Entering directory
> >
> '/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/kernel-selftest-1.0/tools/testing/selftests/bpf'
> > | Makefile:19: *** recipe commences before first target.  Stop.
> > | make: Leaving directory
> >
> '/mnt/a/oe/build/tmp/work/qemux86_64-bec-linux/kernel-selftest/1.0-r0/kernel-selftest-1.0/tools/testing/selftests/bpf'
> > | ERROR: oe_runmake failed
> > On Sat, Jul 7, 2018 at 11:05 PM Hongzhi.Song 
> wrote:
> >> The recipe builds the framework for kernel-selftest. Now, it just
> >> contains two sets of testcase, bpf and vm. We are appending others
> >> to the recipe.
> >>
> >> It needs some features which will be written into relevant recipe.
> >> But now, you should add them to conf/local.conf manually.
> >> KERNEL_FEATURES_append += "features/bpf/bpf.scc"
> >>
> >> Signed-off-by: Dengke Du 
> >> Signed-off-by: Hongzhi.Song 
> >> ---
> >>   .../recipes-kernel/kselftest/kernel-selftest.bb| 94
> ++
> >>   1 file changed, 94 insertions(+)
> >>   create mode 100644 meta-oe/recipes-kernel/kselftest/
> kernel-selftest.bb
> >>
> >> diff --git a/meta-oe/recipes-kernel/kselftest/kernel-selftest.bb
> b/meta-oe/recipes-kernel/kselftest/kernel-selftest.bb
> >> new file mode 100644
> >> index 000..6f20bd3
> >> --- /dev/null
> >> +++ b/meta-oe/recipes-kernel/kselftest/kernel-selftest.bb
> >> @@ -0,0 +1,94 @@
> >> +SUMMARY = "Kernel selftest for Linux"
> >> +DESCRIPTION = "Kernel selftest for Linux"
> >> +LICENSE = "GPLv2"
> >> +
> >> +# for bpf and vm
> >> +DEPENDS = " \
> >> +elfutils \
> >> +libcap \
> >> +libcap-ng \
> >> +fuse \
> >> +util-linux \
> >> +rsync-native \
> >> +"
> >> +# for vm
> >> +RDEPENDS_${PN} += "libgcc \
> >> +   bash \
> >> +"
> >> +
> >> +do_configure[depends] += "virtual/kernel:do_shared_workdir"
> >> +
> >> +inherit linux-kernel-base kernel-arch
> >> +
> >> +do_populate_lic[depends] += "virtual/kernel:do_patch"
> >> +
> >> +S = "${WORKDIR}/${BP}"
> >> +
> >> +# now we just test bpf and vm
> >> +# we will append other kernel selftest in the future
> >> +TEST_LIST = "bpf \
> >> + vm \
> >> +"
> >> +
> >> +EXTRA_OEMAKE = '\
> >> +CROSS_COMPILE=${TARGET_PREFIX} \
> >> +ARCH=${ARCH} \
> >> +CC="${CC}" \
> >> +AR="${AR}" \
> >> +LD="${LD}" \
> >> +'
> >> +
> >> +EXTRA_OEMAKE += "\
> >> +'DESTDIR=${D}' \
> >> +"
> >> +
> >> +KERNEL_SELFTEST_SRC ?= "Makefile \
> >> +include \
> >> +tools \
> >> +scripts \
> >> +arch \
> >> +"
> >> +
> >> +do_compile() {
> >> +for i in ${TEST_LIST}
> >> +do
> >> +oe_runmake -C ${S}/tools/testing/selftests/${i}
> >> +done
> >> +}
> >> +
> >> +do_install() {
> >> +for i in ${TEST_LIST}
> >> +do
> >> +oe_runmake -C ${S}/tools/testing/selftests/${i}
> INSTALL_PATH=${D}/opt/kselftest/${i} install
> >> +done
> >> +
> >> +chown root:root  -R ${D}/opt/kselftest
> >> +}
> >> +
> >> +do_configure() {
> >> +:
> >> +}
> >> +
> >> +do_configure[prefuncs] += "copy_kselftest_source_from_kernel
> remove_clang_related"
> >> +python copy_kselftest_source_from_kernel() {
> >> +sources = (d.getVar("KERNEL_SELFTEST_SRC") or "").split()
> >> +src_dir = d.getVar("STAGING_KERNEL_DIR")
> >> +dest_dir = d.getVar("S")
> >> +bb.utils.mkdirhier(dest_dir)
> >> +for s in sources:
> >> +src = oe.path.join(src_dir, s)
> >> +dest = oe.path.join(dest_dir, s)
> >> +if os.path.isdir(src):
> >> +oe.path.copytree(src, dest)
> >> +else:
> >> +bb.utils.copyfile(src, dest)
> >> +}
> >> +
> >> +remove_clang_related() {
> >> +   sed -i -e '/test_pkt_access/d' -e '/test_pkt_md_access/d'
> ${S}/tools/testing/selftests/bpf/Makefile
> >> +}