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

2018-07-09 Thread Hongzhi, Song

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
+}
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+INHIBIT_PACKAGE_DEBUG_SPLIT="1"
+FILES_${PN} += "/opt/kselftest/"
--
2.8.1

--
___
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] [PATCH][meta-oe] phoronix-test-suite: upgrade 7.8.0 -> 8.0.1

2018-07-09 Thread Khem Raj
A similar patch is already queued up in master-next
On Mon, Jul 9, 2018 at 8:20 PM  wrote:
>
> From: Changqing Li 
>
> Signed-off-by: Changqing Li 
> ---
>  .../{phoronix-test-suite_7.8.0.bb => phoronix-test-suite_8.0.1.bb}| 4 
> ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>  rename 
> meta-oe/recipes-benchmark/phoronix-test-suite/{phoronix-test-suite_7.8.0.bb 
> => phoronix-test-suite_8.0.1.bb} (90%)
>
> diff --git 
> a/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb 
> b/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_8.0.1.bb
> similarity index 90%
> rename from 
> meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb
> rename to 
> meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_8.0.1.bb
> index 1f90a71..402779e 100644
> --- 
> a/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb
> +++ 
> b/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_8.0.1.bb
> @@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = 
> "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
>  SECTION = "console/tests"
>
>  SRC_URI = "http://www.phoronix-test-suite.com/releases/${BP}.tar.gz;
> -SRC_URI[md5sum] = "850843bd9252823e7e24bc0849773000"
> -SRC_URI[sha256sum] = 
> "cd6c869841f28e4ac1e8a5e4cda05fafce9a523a6b4f0f3a47805efd30494d88"
> +SRC_URI[md5sum] = "3dc3a0e490e909f188379a9e05fd4780"
> +SRC_URI[sha256sum] = 
> "6306549109c7254baf31edb385265b19557b5692217d2dfcf96f6fb17de8e842"
>
>  S = "${WORKDIR}/phoronix-test-suite"
>
> --
> 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


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

2018-07-09 Thread Khem Raj
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
> +}
> +
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +INHIBIT_PACKAGE_DEBUG_SPLIT="1"
> +FILES_${PN} += "/opt/kselftest/"
> --
> 2.8.1
>
> --
> ___
> 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] State of the world, 2018-07-09

2018-07-09 Thread Khem Raj
http://www.openembedded.org/wiki/Bitbake_World_Status

== Number of issues - stats ==
{| class='wikitable'
!|Date !!colspan='4'|Failed tasks!!|Signatures
!!colspan='15'|QA !!Comment
|-
|| ||qemuarm ||qemuarm64 ||qemux86 ||qemux86_64 ||all
||already-stripped ||libdir ||textrel ||build-deps ||file-rdeps
||version-going-backwards ||host-user-contaminated
||installed-vs-shipped ||unknown-configure-option ||symlink-to-sysroot
||invalid-pkgconfig ||pkgname ||ldflags ||compile-host-path
||qa_pseudo ||
|-

||2018-07-09 ||8 ||7 ||21 ||5 ||0 ||0 ||0 ||7 ||3 ||0 ||32 ||0 ||1 ||0
||0 ||0 ||0 ||0 ||0 ||0 ||
|}

== Failed tasks 2018-07-09 ==

INFO: jenkins-job.sh-1.8.45 Complete log available at
http://logs.nslu2-linux.org/buildlogs/oe/world/thud/log.report.20180709_180314.log

=== common (4) ===
* 
sources/meta-openembedded/meta-networking/recipes-support/ntop/ntop_5.0.1.bb:do_compile
* 
sources/meta-openembedded/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb:do_compile
* 
sources/meta-openembedded/meta-oe/recipes-kernel/kselftest/kernel-selftest.bb:do_compile
* 
sources/openembedded-core/meta/recipes-graphics/mesa/mesa_18.1.3.bb:do_compile

=== common-x86 (1) ===
* 
sources/meta-openembedded/meta-webserver/recipes-httpd/hiawatha/hiawatha_10.7.bb:do_package_qa

=== qemuarm (4) ===
* 
sources/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/libgnome-keyring_3.12.0.bb:do_compile
* 
sources/meta-openembedded/meta-networking/recipes-connectivity/mbedtls/mbedtls_2.9.0.bb:do_package_qa
* 
sources/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb:do_compile
* 
sources/meta-openembedded/meta-oe/recipes-extended/redis/redis_4.0.8.bb:do_compile

=== qemuarm64 (3) ===
* 
sources/openembedded-core/meta/recipes-devtools/glide/glide_0.13.1.bb:do_package_qa
* sources/openembedded-core/meta/recipes-devtools/go/go_1.9.bb:do_package_qa
* 
sources/openembedded-core/meta/recipes-devtools/go/go-dep_0.4.1.bb:do_package_qa

=== qemux86 (14) ===
* 
sources/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist_6.1.5.bb:do_package
* 
sources/meta-openembedded/meta-networking/recipes-daemons/opensaf/opensaf_5.18.04.bb:do_compile
* 
sources/meta-openembedded/meta-networking/recipes-daemons/vsftpd/vsftpd_3.0.3.bb:do_compile
* 
sources/meta-openembedded/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh_0.17.bb:do_compile
* 
sources/meta-openembedded/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb:do_compile
* 
sources/meta-openembedded/meta-networking/recipes-netkit/netkit-telnet/netkit-telnet_0.17.bb:do_configure
* 
sources/meta-openembedded/meta-networking/recipes-protocols/tsocks/tsocks_1.8beta5.bb:do_compile
* 
sources/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvdial_1.61.bb:do_compile
* 
sources/meta-openembedded/meta-oe/recipes-kernel/crash/crash_7.2.0.bb:do_compile
* 
sources/meta-openembedded/meta-oe/recipes-kernel/minicoredumper/minicoredumper_2.0.0.bb:do_compile
* 
sources/meta-openembedded/meta-oe/recipes-multimedia/alsa/alsa-oss_1.0.28.bb:do_compile
* 
sources/meta-openembedded/meta-oe/recipes-test/pm-qa/pm-qa_git.bb:do_compile
* 
sources/openembedded-core/meta/recipes-multimedia/x264/x264_git.bb:do_package_qa
* 
sources/openembedded-core/meta/recipes-support/libunwind/libunwind_1.2.1.bb:do_compile

=== qemux86_64 (0) ===

=== Number of failed tasks (41) ===
{| class=wikitable
|-
|| qemuarm || 8 ||
http://logs.nslu2-linux.org/buildlogs/oe/world/thud/log.world.qemuarm.20180709_054120.log/
||
|-
|| qemuarm64 || 7 ||
http://logs.nslu2-linux.org/buildlogs/oe/world/thud/log.world.qemuarm64.20180709_065312.log/
||
|-
|| qemux86 || 21 ||
http://logs.nslu2-linux.org/buildlogs/oe/world/thud/log.world.qemux86.20180709_054129.log/
||
|-
|| qemux86_64 || 5 ||
http://logs.nslu2-linux.org/buildlogs/oe/world/thud/log.world.qemux86-64.20180709_065147.log/
||
|}

=== PNBLACKLISTs (0) ===

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



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

Complete log: 
http://logs.nslu2-linux.org/buildlogs/oe/world/thud/log.signatures.20180709_080715.log/


* ERROR: Nothing RPROVIDES 'libconfig-general-perl' (but
/home/jenkins/oe/world/oe-build/sources/meta-openembedded/meta-networking/recipes-support/tgt/tgt_git.bb
RDEPENDS on or otherwise requires it)
* ERROR: Required build target 'meta-world-pkgdata' has no
buildable providers.
* ERROR: no sigdata files were generated for MACHINE qemux86copy
in 

[oe] [PATCH][meta-oe] xrdb: upgrade 1.1.0 -> 1.1.1

2018-07-09 Thread changqing.li
From: Upgrade Helper 

Signed-off-by: Changqing Li 

---
 meta-oe/recipes-graphics/xorg-app/{xrdb_1.1.0.bb => xrdb_1.1.1.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-graphics/xorg-app/{xrdb_1.1.0.bb => xrdb_1.1.1.bb} (60%)

diff --git a/meta-oe/recipes-graphics/xorg-app/xrdb_1.1.0.bb 
b/meta-oe/recipes-graphics/xorg-app/xrdb_1.1.1.bb
similarity index 60%
rename from meta-oe/recipes-graphics/xorg-app/xrdb_1.1.0.bb
rename to meta-oe/recipes-graphics/xorg-app/xrdb_1.1.1.bb
index 85957e056..e50c082d8 100644
--- a/meta-oe/recipes-graphics/xorg-app/xrdb_1.1.0.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xrdb_1.1.1.bb
@@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=d1167c4f586bd41f0c62166db4384a69"
 
 DEPENDS += "libxmu"
 
-SRC_URI[md5sum] = "b54c7e3e53b4f332d41ed435433fbda0"
-SRC_URI[sha256sum] = 
"73827b6bbfc9d27ca287d95a1224c306d7053cd7b8156641698d7dc541ca565b"
+SRC_URI[md5sum] = "96f9423eab4d0641c70848d665737d2e"
+SRC_URI[sha256sum] = 
"2d23ade7cdbb487996bf77cbb32cbe9bdb34d004748a53de7a4a97660d2217b7"
-- 
2.13.0

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


[oe] [PATCH][meta-oe] php: upgrade 5.6.35 -> 5.6.36

2018-07-09 Thread changqing.li
From: Changqing Li 

Signed-off-by: Changqing Li 
---
 meta-oe/recipes-devtools/php/{php_5.6.35.bb => php_5.6.36.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-devtools/php/{php_5.6.35.bb => php_5.6.36.bb} (85%)

diff --git a/meta-oe/recipes-devtools/php/php_5.6.35.bb 
b/meta-oe/recipes-devtools/php/php_5.6.36.bb
similarity index 85%
rename from meta-oe/recipes-devtools/php/php_5.6.35.bb
rename to meta-oe/recipes-devtools/php/php_5.6.36.bb
index c17c0d6..ab3 100644
--- a/meta-oe/recipes-devtools/php/php_5.6.35.bb
+++ b/meta-oe/recipes-devtools/php/php_5.6.36.bb
@@ -15,8 +15,8 @@ SRC_URI_append_class-target = " \
 
file://php5-0001-opcache-config.m4-enable-opcache.patch \
 "
 
-SRC_URI[md5sum] = "905ae5f586351f3ca29d044c9484d475"
-SRC_URI[sha256sum] = 
"ee78a7e9ca21d8ea394d037c55e477a49dbae31c7753c547036f5bd73b92"
+SRC_URI[md5sum] = "6ca12a0e52dcd99cf4d5b2d74c6cde6f"
+SRC_URI[sha256sum] = 
"626a0e3f5d8a0e686a2b930f0dd3a0601fe3dcb5e43dd0e8c3fab631e64e172a"
 
 DEPENDS += "libmcrypt"
 EXTRA_OECONF += "--with-mcrypt=${STAGING_DIR_TARGET}${exec_prefix} \
-- 
2.7.4

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


[oe] [PATCH][meta-oe] satyr: upgrade 0.23 -> 0.26

2018-07-09 Thread changqing.li
From: Changqing Li 

Signed-off-by: Changqing Li 
---
 .../satyr/files/0001-do-not-support-python2.patch  | 84 --
 ...ix-compile-failure-against-musl-C-library.patch |  2 +-
 .../satyr/{satyr_0.23.bb => satyr_0.26.bb} |  5 +-
 3 files changed, 3 insertions(+), 88 deletions(-)
 delete mode 100644 
meta-oe/recipes-support/satyr/files/0001-do-not-support-python2.patch
 rename meta-oe/recipes-support/satyr/{satyr_0.23.bb => satyr_0.26.bb} (81%)

diff --git 
a/meta-oe/recipes-support/satyr/files/0001-do-not-support-python2.patch 
b/meta-oe/recipes-support/satyr/files/0001-do-not-support-python2.patch
deleted file mode 100644
index 9e95a3f..000
--- a/meta-oe/recipes-support/satyr/files/0001-do-not-support-python2.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-From 206f334d62da17093e784094c9d9e80c853f704f Mon Sep 17 00:00:00 2001
-From: Hongxu Jia 
-Date: Fri, 12 May 2017 03:03:46 -0400
-Subject: [PATCH] do not support python2
-
-Upstream-Status: Inappropriate [oe specific]
-
-Signed-off-by: Hongxu Jia 

- configure.ac   | 16 
- python/Makefile.am | 24 
- 2 files changed, 40 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 200a7cc..8431c51 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -22,22 +22,6 @@ AM_MISSING_PROG([AUTOM4TE], [autom4te])
- # Needed by tests/atlocal.in.
- AC_SUBST([O0CFLAGS], [`echo $CFLAGS | sed 's/-O[[0-9]] *//'`])
- 
--AM_PATH_PYTHON
--AM_CONDITIONAL([HAVE_PYTHON], test -n "$PYTHON")
--[if test -z "$PYTHON"; then]
--[echo "The python interpreter was not found in the search path. The 
Python language bindings"]
--[echo "will not be built.  If you want to build the Python language 
bindings, please ensure"]
--[echo "that python is installed and its directory is included in the 
search path."]
--[echo "Then run configure again before attempting to build Satyr."]
--[fi]
--
--# Just PKG_CHECK_MODULES([PYTHON], [python]) works only with python2.7+
--# Below, if python is not found, we set up for python2.6 w/o checking:
--PKG_CHECK_MODULES([PYTHON], [python2],,[
--PYTHON_LIBS='-L/usr/lib64 -lpython2.6'
--PYTHON_CFLAGS='-I/usr/include/python2.6'
--])
--
- AC_ARG_ENABLE([python-manpage],
-   [AS_HELP_STRING([--disable-python-manpage],
-   [Disable python bindings manpage build])],
-diff --git a/python/Makefile.am b/python/Makefile.am
-index 36fc2e9..0b73f66 100644
 a/python/Makefile.am
-+++ b/python/Makefile.am
-@@ -1,12 +1,5 @@
- SUBDIRS = . doc
- 
--py2satyrdir = $(pyexecdir)/satyr
--
--py2satyr_PYTHON = \
--__init__.py
--
--py2satyr_LTLIBRARIES = _satyr.la
--
- PYEXTFILES = \
- py_cluster.h \
- py_cluster.c \
-@@ -75,23 +68,6 @@ PYEXTLDFLAGS = \
- -module \
- -avoid-version
- 
--_satyr_la_SOURCES = $(PYEXTFILES)
--_satyr_la_CPPFLAGS = \
--$(PYEXTCPPFLAGS) \
--$(PYTHON_CFLAGS)
--_satyr_la_LDFLAGS = \
--$(PYEXTLDFLAGS) \
---export-symbols-regex init_satyr
--
--# Depending on the configure option, we either link libsatyr.so dynamically 
(as
--# is usual), or directly include its object files (by including the
--# convenience library).
--if ENABLE_STATIC_PYTHON_MODULE
--_satyr_la_LIBADD = ../lib/libsatyr_conv.la
--else
--_satyr_la_LIBADD = ../lib/libsatyr.la
--endif
--
- if WITH_PYTHON3
- py3satyrdir = $(py3execdir)/satyr
- 
--- 
-2.8.1
-
diff --git 
a/meta-oe/recipes-support/satyr/files/0002-fix-compile-failure-against-musl-C-library.patch
 
b/meta-oe/recipes-support/satyr/files/0002-fix-compile-failure-against-musl-C-library.patch
index 5827eb4..b6c32c4 100644
--- 
a/meta-oe/recipes-support/satyr/files/0002-fix-compile-failure-against-musl-C-library.patch
+++ 
b/meta-oe/recipes-support/satyr/files/0002-fix-compile-failure-against-musl-C-library.patch
@@ -14,7 +14,7 @@ diff --git a/lib/rpm.c b/lib/rpm.c
 index 920e145..58140bf 100644
 --- a/lib/rpm.c
 +++ b/lib/rpm.c
-@@ -188,7 +188,7 @@ sr_rpm_package_sort(struct sr_rpm_package *packages)
+@@ -191,7 +191,7 @@ sr_rpm_package_sort(struct sr_rpm_package *packages)
  }
  
  /* Sort the array. */
diff --git a/meta-oe/recipes-support/satyr/satyr_0.23.bb 
b/meta-oe/recipes-support/satyr/satyr_0.26.bb
similarity index 81%
rename from meta-oe/recipes-support/satyr/satyr_0.23.bb
rename to meta-oe/recipes-support/satyr/satyr_0.26.bb
index f795c37..a09bea2 100644
--- a/meta-oe/recipes-support/satyr/satyr_0.23.bb
+++ b/meta-oe/recipes-support/satyr/satyr_0.26.bb
@@ -8,10 +8,9 @@ LICENSE = "GPLv2"
 inherit autotools-brokensep python3native pkgconfig
 
 SRC_URI = "git://github.com/abrt/satyr.git \
-   file://0001-do-not-support-python2.patch \
file://0002-fix-compile-failure-against-musl-C-library.patch \
 "
-SRCREV = "4742fd4857c446b96f712d52e2e4cd0b6cfe7398"
+SRCREV = "4baa0c765071054314d1e7e78547ce6b7c133fbc"
 S = "${WORKDIR}/git"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
@@ -24,8 +23,8 @@ PACKAGES += 

[oe] [PATCH][meta-oe] phoronix-test-suite: upgrade 7.8.0 -> 8.0.1

2018-07-09 Thread changqing.li
From: Changqing Li 

Signed-off-by: Changqing Li 
---
 .../{phoronix-test-suite_7.8.0.bb => phoronix-test-suite_8.0.1.bb}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename 
meta-oe/recipes-benchmark/phoronix-test-suite/{phoronix-test-suite_7.8.0.bb => 
phoronix-test-suite_8.0.1.bb} (90%)

diff --git 
a/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb 
b/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_8.0.1.bb
similarity index 90%
rename from 
meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb
rename to 
meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_8.0.1.bb
index 1f90a71..402779e 100644
--- a/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_7.8.0.bb
+++ b/meta-oe/recipes-benchmark/phoronix-test-suite/phoronix-test-suite_8.0.1.bb
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 SECTION = "console/tests"
 
 SRC_URI = "http://www.phoronix-test-suite.com/releases/${BP}.tar.gz;
-SRC_URI[md5sum] = "850843bd9252823e7e24bc0849773000"
-SRC_URI[sha256sum] = 
"cd6c869841f28e4ac1e8a5e4cda05fafce9a523a6b4f0f3a47805efd30494d88"
+SRC_URI[md5sum] = "3dc3a0e490e909f188379a9e05fd4780"
+SRC_URI[sha256sum] = 
"6306549109c7254baf31edb385265b19557b5692217d2dfcf96f6fb17de8e842"
 
 S = "${WORKDIR}/phoronix-test-suite"
 
-- 
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-pyro4: update to version 4.73

2018-07-09 Thread Derek Straka
License-Update: Update the license checksum based on whitespace changes

Signed-off-by: Derek Straka 
---
 .../python-pyro4/{python-pyro4_4.63.bb => python-pyro4_4.73.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-connectivity/python-pyro4/{python-pyro4_4.63.bb => 
python-pyro4_4.73.bb} (55%)

diff --git a/meta-python/recipes-connectivity/python-pyro4/python-pyro4_4.63.bb 
b/meta-python/recipes-connectivity/python-pyro4/python-pyro4_4.73.bb
similarity index 55%
rename from meta-python/recipes-connectivity/python-pyro4/python-pyro4_4.63.bb
rename to meta-python/recipes-connectivity/python-pyro4/python-pyro4_4.73.bb
index 6f683e3..88f5b18 100644
--- a/meta-python/recipes-connectivity/python-pyro4/python-pyro4_4.63.bb
+++ b/meta-python/recipes-connectivity/python-pyro4/python-pyro4_4.73.bb
@@ -1,9 +1,9 @@
 SUMMARY = "Python Remote Objects"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=378acef375e17a3bff03bd0f78c53220"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=cd13dafd4eeb0802bb6efea6b4a4bdbc"
 
-SRC_URI[md5sum] = "e1d772b67bf7c6f75fa3174bc95c8839"
-SRC_URI[sha256sum] = 
"67d2b34156619ba37e92100af95aade8129dd2b7327eb05821d43887451f7d7b"
+SRC_URI[md5sum] = "0375c061b93411feb86da01e801df888"
+SRC_URI[sha256sum] = 
"536b07a097d0619e7ab1effa3747fda177a24168d17a07a93ca9ac30977608f7"
 
 PYPI_PACKAGE = "Pyro4"
 
-- 
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-backports-functools-lru-cache: update to version 1.5

2018-07-09 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 ...lru-cache_1.4.bb => python-backports-functools-lru-cache_1.5.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename 
meta-python/recipes-devtools/python/{python-backports-functools-lru-cache_1.4.bb
 => python-backports-functools-lru-cache_1.5.bb} (66%)

diff --git 
a/meta-python/recipes-devtools/python/python-backports-functools-lru-cache_1.4.bb
 
b/meta-python/recipes-devtools/python/python-backports-functools-lru-cache_1.5.bb
similarity index 66%
rename from 
meta-python/recipes-devtools/python/python-backports-functools-lru-cache_1.4.bb
rename to 
meta-python/recipes-devtools/python/python-backports-functools-lru-cache_1.5.bb
index 961436f..825444f 100644
--- 
a/meta-python/recipes-devtools/python/python-backports-functools-lru-cache_1.4.bb
+++ 
b/meta-python/recipes-devtools/python/python-backports-functools-lru-cache_1.5.bb
@@ -2,12 +2,12 @@ SUMMARY = "Backport of functools.lru_cache from Python 3.3"
 HOMEPAGE = "https://github.com/jaraco/backports.functools_lru_cache;
 SECTION = "devel/python"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = 
"file://setup.py;beginline=47;endline=47;md5=98fc3658e5970d26f6b2109808c766be"
+LIC_FILES_CHKSUM = 
"file://setup.py;beginline=57;endline=57;md5=98fc3658e5970d26f6b2109808c766be"
 
 PYPI_PACKAGE = "backports.functools_lru_cache"
 
-SRC_URI[md5sum] = "b954e7d5e2ca0f0f66ad2ed12ba800e5"
-SRC_URI[sha256sum] = 
"31f235852f88edc1558d428d890663c49eb4514ffec9f3650e7f3c9e4a12e36f"
+SRC_URI[md5sum] = "20f53f54cd3f04b3346ce75a54959754"
+SRC_URI[sha256sum] = 
"9d98697f088eb1b0fa451391f91afb5e3ebde16bbdb272819fd091151fda4f1a"
 
 DEPENDS += "python-setuptools-scm-native"
 
-- 
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-simplejson: update to version 3.16.0

2018-07-09 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-simplejson.inc | 4 ++--
 .../{python-simplejson_3.13.2.bb => python-simplejson_3.16.0.bb}  | 0
 .../{python3-simplejson_3.13.2.bb => python3-simplejson_3.16.0.bb}| 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-simplejson_3.13.2.bb => 
python-simplejson_3.16.0.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-simplejson_3.13.2.bb => 
python3-simplejson_3.16.0.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-simplejson.inc 
b/meta-python/recipes-devtools/python/python-simplejson.inc
index e28d518..3d36f96 100644
--- a/meta-python/recipes-devtools/python/python-simplejson.inc
+++ b/meta-python/recipes-devtools/python/python-simplejson.inc
@@ -4,8 +4,8 @@ HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e"
 
-SRC_URI[md5sum] = "870bf6257465ce2ee8cad14e2394f7eb"
-SRC_URI[sha256sum] = 
"4c4ecf20e054716cc1e5a81cadc44d3f4027108d8dd0861d8b1e3bd7a32d4f0a"
+SRC_URI[md5sum] = "744fa99aed207478f8fbf9dd9f04fad3"
+SRC_URI[sha256sum] = 
"b1f329139ba647a9548aa05fb95d046b4a677643070dc2afc05fa2e975d09ca5"
 
 inherit pypi
 
diff --git a/meta-python/recipes-devtools/python/python-simplejson_3.13.2.bb 
b/meta-python/recipes-devtools/python/python-simplejson_3.16.0.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-simplejson_3.13.2.bb
rename to meta-python/recipes-devtools/python/python-simplejson_3.16.0.bb
diff --git a/meta-python/recipes-devtools/python/python3-simplejson_3.13.2.bb 
b/meta-python/recipes-devtools/python/python3-simplejson_3.16.0.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-simplejson_3.13.2.bb
rename to meta-python/recipes-devtools/python/python3-simplejson_3.16.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-pyyaml: update to version 3.13

2018-07-09 Thread Derek Straka
License-Update: Update the copyright year to include 2018

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

diff --git a/meta-python/recipes-devtools/python/python-pyyaml.inc 
b/meta-python/recipes-devtools/python/python-pyyaml.inc
index 3fef0ca..afce543 100644
--- a/meta-python/recipes-devtools/python/python-pyyaml.inc
+++ b/meta-python/recipes-devtools/python/python-pyyaml.inc
@@ -2,14 +2,14 @@ SUMMARY = "Python support for YAML"
 HOMEPAGE = "http://www.pyyaml.org;
 SECTION = "devel/python"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=6015f088759b10e0bc2bf64898d4ae17"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=5591701d32590f9fa94f3bfee820b634"
 DEPENDS = "libyaml ${PYTHON_PN}-cython-native ${PYTHON_PN}"
 
 PYPI_PACKAGE = "PyYAML"
 inherit pypi
 
-SRC_URI[md5sum] = "4c129761b661d181ebf7ff4eb2d79950"
-SRC_URI[sha256sum] = 
"592766c6303207a20efc445587778322d7f73b161bd994f227adaa341ba212ab"
+SRC_URI[md5sum] = "b78b96636d68ac581c0e2f38158c224f"
+SRC_URI[sha256sum] = 
"3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf"
 
 RDEPENDS_${PN} += "\
 ${PYTHON_PN}-datetime \
diff --git a/meta-python/recipes-devtools/python/python-pyyaml_3.12.bb 
b/meta-python/recipes-devtools/python/python-pyyaml_3.13.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-pyyaml_3.12.bb
rename to meta-python/recipes-devtools/python/python-pyyaml_3.13.bb
diff --git a/meta-python/recipes-devtools/python/python3-pyyaml_3.12.bb 
b/meta-python/recipes-devtools/python/python3-pyyaml_3.13.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-pyyaml_3.12.bb
rename to meta-python/recipes-devtools/python/python3-pyyaml_3.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] python3-cassandra-driver: update to version 3.14.0

2018-07-09 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-cassandra-driver.inc   | 4 ++--
 ...-cassandra-driver_3.13.0.bb => python3-cassandra-driver_3.14.0.bb} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-cassandra-driver_3.13.0.bb 
=> python3-cassandra-driver_3.14.0.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-cassandra-driver.inc 
b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
index 1648d3e..1cc1f4c 100644
--- a/meta-python/recipes-devtools/python/python-cassandra-driver.inc
+++ b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
@@ -8,8 +8,8 @@ LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
 SRCNAME = "cassandra-driver"
 
-SRC_URI[md5sum] = "5c8b4a3adfc48180e8ec38b8c4e996fd"
-SRC_URI[sha256sum] = 
"61b670fb2ba95d51d91fa7b589aae3666df494713f5d1ed78bb5c510778d77f0"
+SRC_URI[md5sum] = "c5bed026bf48c821424c1f6296193908"
+SRC_URI[sha256sum] = 
"b65218e2582277f5b77d1436e420db8616f63e3437a9e839cdcd7172d760e861"
 
 DISTUTILS_BUILD_ARGS += " \
 --no-libev \
diff --git 
a/meta-python/recipes-devtools/python/python3-cassandra-driver_3.13.0.bb 
b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.14.0.bb
similarity index 100%
rename from 
meta-python/recipes-devtools/python/python3-cassandra-driver_3.13.0.bb
rename to meta-python/recipes-devtools/python/python3-cassandra-driver_3.14.0.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 2/2] nginx: remove the 1.13 recipe in favor of the new dev branch of 1.5.x

2018-07-09 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-webserver/recipes-httpd/nginx/nginx_1.13.12.bb | 10 --
 meta-webserver/recipes-httpd/nginx/nginx_1.15.1.bb  | 10 ++
 2 files changed, 10 insertions(+), 10 deletions(-)
 delete mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.13.12.bb
 create mode 100644 meta-webserver/recipes-httpd/nginx/nginx_1.15.1.bb

diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.13.12.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.13.12.bb
deleted file mode 100644
index e629380..000
--- a/meta-webserver/recipes-httpd/nginx/nginx_1.13.12.bb
+++ /dev/null
@@ -1,10 +0,0 @@
-require nginx.inc
-
-# 1.14.x branch is the current stable branch, the recommended default
-# 1.13.x is the current mainline branches containing all new features
-DEFAULT_PREFERENCE = "-1"
-
-LIC_FILES_CHKSUM = "file://LICENSE;md5=3691402cc54ce09f800ca348634a2dfe"
-
-SRC_URI[md5sum] = "20871b2cf21a16dbfb83078b4dc2dde0"
-SRC_URI[sha256sum] = 
"fb92f5602cdb8d3ab1ad47dbeca151b185d62eedb67d347bbe9d79c1438c85de"
diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.15.1.bb 
b/meta-webserver/recipes-httpd/nginx/nginx_1.15.1.bb
new file mode 100644
index 000..0f1ba8f
--- /dev/null
+++ b/meta-webserver/recipes-httpd/nginx/nginx_1.15.1.bb
@@ -0,0 +1,10 @@
+require nginx.inc
+
+# 1.14.x branch is the current stable branch, the recommended default
+# 1.15.x is the current mainline branches containing all new features
+DEFAULT_PREFERENCE = "-1"
+
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3691402cc54ce09f800ca348634a2dfe"
+
+SRC_URI[md5sum] = "2dd5a265c54a76b699443931d80a61b9"
+SRC_URI[sha256sum] = 
"c7206858d7f832b8ef73a45c9b8f8e436bcb1ee88db2bc85b8e438ecec9d5460"
-- 
2.7.4

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


[oe] [meta-webserver][PATCH 1/2] nginx: enable thread pools by default

2018-07-09 Thread Derek Straka
The thread pool feature can be enabled without significant extra binary size.  
Thread pools can increase performance by an order of magnitude on some 
configurations

Signed-off-by: Derek Straka 
---
 meta-webserver/recipes-httpd/nginx/nginx.inc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-webserver/recipes-httpd/nginx/nginx.inc 
b/meta-webserver/recipes-httpd/nginx/nginx.inc
index e6ae52a..f1b50bc 100644
--- a/meta-webserver/recipes-httpd/nginx/nginx.inc
+++ b/meta-webserver/recipes-httpd/nginx/nginx.inc
@@ -71,6 +71,7 @@ do_configure () {
 --http-scgi-temp-path=/run/nginx/scgi_temp \
 --pid-path=/run/nginx/nginx.pid \
 --prefix=${prefix} \
+--with-threads \
 --with-http_ssl_module \
 --with-http_gzip_static_module \
 ${EXTRA_OECONF} ${PACKAGECONFIG_CONFARGS}
-- 
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-bitarray: update to version 0.8.3

2018-07-09 Thread Derek Straka
License-Update: LICENSE was removed and only PKG-INFO remains in this release.  
Update the checksum

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

diff --git a/meta-python/recipes-devtools/python/python-bitarray.inc 
b/meta-python/recipes-devtools/python/python-bitarray.inc
index 38a22f6..480f048 100644
--- a/meta-python/recipes-devtools/python/python-bitarray.inc
+++ b/meta-python/recipes-devtools/python/python-bitarray.inc
@@ -1,10 +1,10 @@
 SUMMARY = "A high-level Python efficient arrays of booleans -- C extension"
 HOMEPAGE = "https://github.com/ilanschnell/bitarray;
 LICENSE = "PSF"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=3ba469353f9f2a244b2075902351e37d"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=f4ce1ae80a385140f0ddb2bcef410b06"
 
-SRC_URI[md5sum] = "3825184f54f4d93508a28031b4c65d3b"
-SRC_URI[sha256sum] = 
"7da501356e48a83c61f479393681c1bc4b94e5a34ace7e08cb29e7dd9290ab18"
+SRC_URI[md5sum] = "f3131ac2a277f3b70dbb6132ca8f8889"
+SRC_URI[sha256sum] = 
"050cd30b810ddb3aa941e7ddfbe0d8065e793012d0a88cb5739ec23624b9895e"
 
 inherit pypi
 
diff --git a/meta-python/recipes-devtools/python/python-bitarray_0.8.1.bb 
b/meta-python/recipes-devtools/python/python-bitarray_0.8.3.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-bitarray_0.8.1.bb
rename to meta-python/recipes-devtools/python/python-bitarray_0.8.3.bb
diff --git a/meta-python/recipes-devtools/python/python3-bitarray_0.8.1.bb 
b/meta-python/recipes-devtools/python/python3-bitarray_0.8.3.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-bitarray_0.8.1.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_0.8.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-monotonic: update to version 1.5

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

diff --git a/meta-python/recipes-devtools/python/python-monotonic_1.4.bb 
b/meta-python/recipes-devtools/python/python-monotonic_1.5.bb
similarity index 67%
rename from meta-python/recipes-devtools/python/python-monotonic_1.4.bb
rename to meta-python/recipes-devtools/python/python-monotonic_1.5.bb
index 4c5d8ae..01e7b1c 100644
--- a/meta-python/recipes-devtools/python/python-monotonic_1.4.bb
+++ b/meta-python/recipes-devtools/python/python-monotonic_1.5.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] = "29302cd6b1013b3ab0d1ed78e20d22f2"
-SRC_URI[sha256sum] = 
"a02611d5b518cd4051bf22d21bd0ae55b3a03f2d2993a19b6c90d9d168691f84"
+SRC_URI[md5sum] = "9f81cb0e5966479754453dea2b6822f4"
+SRC_URI[sha256sum] = 
"23953d55076df038541e648a53676fb24980f7a1be290cdda21300b3bc21dfb0"
 
 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-aws-iot-device-sdk-python: update to version 1.4.0

2018-07-09 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 .../recipes-devtools/python/python-aws-iot-device-sdk-python.inc  | 4 ++--
 ...-sdk-python_1.3.1.bb => python-aws-iot-device-sdk-python_1.4.0.bb} | 0
 ...sdk-python_1.3.1.bb => python3-aws-iot-device-sdk-python_1.4.0.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename 
meta-python/recipes-devtools/python/{python-aws-iot-device-sdk-python_1.3.1.bb 
=> python-aws-iot-device-sdk-python_1.4.0.bb} (100%)
 rename 
meta-python/recipes-devtools/python/{python3-aws-iot-device-sdk-python_1.3.1.bb 
=> python3-aws-iot-device-sdk-python_1.4.0.bb} (100%)

diff --git 
a/meta-python/recipes-devtools/python/python-aws-iot-device-sdk-python.inc 
b/meta-python/recipes-devtools/python/python-aws-iot-device-sdk-python.inc
index a3299e4..7423fa7 100644
--- a/meta-python/recipes-devtools/python/python-aws-iot-device-sdk-python.inc
+++ b/meta-python/recipes-devtools/python/python-aws-iot-device-sdk-python.inc
@@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = "\
 
file://AWSIoTPythonSDK/core/protocol/paho/client.py;endline=14;md5=5a3c8a1a4bb71bd934f450ecff972ad9
 \
 "
 
-SRC_URI[md5sum] = "97e8cf0d40ef3765d979c19b534a716d"
-SRC_URI[sha256sum] = 
"d68cbff396143e837b4c23b6621d3b7ae374281afc75eed8e51a28625d9125ba"
+SRC_URI[md5sum] = "50a5c46410c2b44b5c09f1ea5eb15a3b"
+SRC_URI[sha256sum] = 
"b3c8af3ce24eab861447a194f3c382509dd70e90452c86a5426f1e7272460177"
 
 inherit pypi
 
diff --git 
a/meta-python/recipes-devtools/python/python-aws-iot-device-sdk-python_1.3.1.bb 
b/meta-python/recipes-devtools/python/python-aws-iot-device-sdk-python_1.4.0.bb
similarity index 100%
rename from 
meta-python/recipes-devtools/python/python-aws-iot-device-sdk-python_1.3.1.bb
rename to 
meta-python/recipes-devtools/python/python-aws-iot-device-sdk-python_1.4.0.bb
diff --git 
a/meta-python/recipes-devtools/python/python3-aws-iot-device-sdk-python_1.3.1.bb
 
b/meta-python/recipes-devtools/python/python3-aws-iot-device-sdk-python_1.4.0.bb
similarity index 100%
rename from 
meta-python/recipes-devtools/python/python3-aws-iot-device-sdk-python_1.3.1.bb
rename to 
meta-python/recipes-devtools/python/python3-aws-iot-device-sdk-python_1.4.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-cmd2: update to version 0.9.2

2018-07-09 Thread Derek Straka
License-Update: Modify the line number for the license

Signed-off-by: Derek Straka 
---
 .../python/{python-cmd2_0.8.1.bb => python-cmd2_0.9.2.bb}   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python-cmd2_0.8.1.bb => 
python-cmd2_0.9.2.bb} (69%)

diff --git a/meta-python/recipes-devtools/python/python-cmd2_0.8.1.bb 
b/meta-python/recipes-devtools/python/python-cmd2_0.9.2.bb
similarity index 69%
rename from meta-python/recipes-devtools/python/python-cmd2_0.8.1.bb
rename to meta-python/recipes-devtools/python/python-cmd2_0.9.2.bb
index 145ab98..74dbaef 100644
--- a/meta-python/recipes-devtools/python/python-cmd2_0.8.1.bb
+++ b/meta-python/recipes-devtools/python/python-cmd2_0.9.2.bb
@@ -1,10 +1,10 @@
 SUMMARY = "Extra features for standard library's cmd module"
 HOMEPAGE = "http://packages.python.org/cmd2/;
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = 
"file://setup.py;beginline=51;endline=51;md5=0f13c9cfc75288223cf7edd2f3b985a2"
+LIC_FILES_CHKSUM = 
"file://setup.py;beginline=52;endline=52;md5=0f13c9cfc75288223cf7edd2f3b985a2"
 
-SRC_URI[md5sum] = "701b916ffac99137bea413205106f993"
-SRC_URI[sha256sum] = 
"d09976f9ad2327883c2d07b5acb42e66ad52b17e352873c22041ed124bfe8aba"
+SRC_URI[md5sum] = "bfe0900a2288283a40f0ee7533486a2f"
+SRC_URI[sha256sum] = 
"e7b6b4b76272a051c943c3c709cd760142af16fbc9218e0ed3c22b28ea38d0a8"
 
 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-can: update to version 2.2.0

2018-07-09 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-can.inc| 4 ++--
 .../python/{python-can_2.1.0.bb => python-can_2.2.0.bb}   | 0
 .../python/{python3-can_2.1.0.bb => python3-can_2.2.0.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-can_2.1.0.bb => 
python-can_2.2.0.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-can_2.1.0.bb => 
python3-can_2.2.0.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-can.inc 
b/meta-python/recipes-devtools/python/python-can.inc
index a71c47b..959da83 100644
--- a/meta-python/recipes-devtools/python/python-can.inc
+++ b/meta-python/recipes-devtools/python/python-can.inc
@@ -3,8 +3,8 @@ SECTION = "devel/python"
 LICENSE = "LGPLv3"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=38138baa100d7259934590850bc0406e"
 
-SRC_URI[md5sum] = "3310f0aa2a8492d0ff614ecf636ec8a8"
-SRC_URI[sha256sum] = 
"4a5c01dd67feeda35f88e6c12ea14ac8cabd426b9be0cc5f9fd083fe90a9dbfc"
+SRC_URI[md5sum] = "670cf82f67c6d2bd6516b638f129a196"
+SRC_URI[sha256sum] = 
"187fac2fbc807561344a6df99cf7b776c0a10182bf99bb10a5c83af45b57dc11"
 
 PYPI_PACKAGE="python-can"
 
diff --git a/meta-python/recipes-devtools/python/python-can_2.1.0.bb 
b/meta-python/recipes-devtools/python/python-can_2.2.0.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-can_2.1.0.bb
rename to meta-python/recipes-devtools/python/python-can_2.2.0.bb
diff --git a/meta-python/recipes-devtools/python/python3-can_2.1.0.bb 
b/meta-python/recipes-devtools/python/python3-can_2.2.0.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-can_2.1.0.bb
rename to meta-python/recipes-devtools/python/python3-can_2.2.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-progress: update to version 1.4

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

diff --git a/meta-python/recipes-devtools/python/python-progress.inc 
b/meta-python/recipes-devtools/python/python-progress.inc
index 297c0d3..9f00615 100644
--- a/meta-python/recipes-devtools/python/python-progress.inc
+++ b/meta-python/recipes-devtools/python/python-progress.inc
@@ -3,8 +3,8 @@ HOMEPAGE = "http://github.com/verigak/progress/;
 LICENSE = "ISC"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=aef5566ac4fede9815eccf124c281317"
 
-SRC_URI[md5sum] = "f65ccfcc2339d522b2dd5801aaa40dc7"
-SRC_URI[sha256sum] = 
"c88d89ee3bd06716a0b8b5504d9c3bcb3c1c0ab98f96dc7f1dc5f56812a4f60a"
+SRC_URI[md5sum] = "057981e2f09029288f5255b1ea3ab64d"
+SRC_URI[sha256sum] = 
"5e2f9da88ed8236a76fffbee3ceefd259589cf42dfbc2cec2877102189fae58a"
 
 RDEPENDS_${PN}_class-target += " \
 ${PYTHON_PN}-datetime \
diff --git a/meta-python/recipes-devtools/python/python-progress_1.3.bb 
b/meta-python/recipes-devtools/python/python-progress_1.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-progress_1.3.bb
rename to meta-python/recipes-devtools/python/python-progress_1.4.bb
diff --git a/meta-python/recipes-devtools/python/python3-progress_1.3.bb 
b/meta-python/recipes-devtools/python/python3-progress_1.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-progress_1.3.bb
rename to meta-python/recipes-devtools/python/python3-progress_1.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-wtforms: update to version 2.2.1

2018-07-09 Thread Derek Straka
License-Update: Update the checksum for the latest PKG-INFO release and verify 
license is still BSD

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

diff --git a/meta-python/recipes-devtools/python/python-wtforms.inc 
b/meta-python/recipes-devtools/python/python-wtforms.inc
index 916697f..868686b 100644
--- a/meta-python/recipes-devtools/python/python-wtforms.inc
+++ b/meta-python/recipes-devtools/python/python-wtforms.inc
@@ -2,13 +2,12 @@ DESCRIPTION = "A flexible forms validation and rendering 
library for python web
 HOMEPAGE = "https://pypi.python.org/pypi/WTForms;
 SECTION = "devel/python"
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=c459accc90c6ed6a94878c8fe0535be2"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=c4660c132770d5d0a5757541f6b79493"
 
-SRC_URI[md5sum] = "6938a541fafd1a1ae2f6b9b88588eef2"
-SRC_URI[sha256sum] = 
"ffdf10bd1fa565b8233380cb77a304cd36fd55c73023e91d4b803c96bc11d46f"
+SRC_URI[md5sum] = "41c0008dbe7bd98892c58f7457a46a4a"
+SRC_URI[sha256sum] = 
"0cdbac3e7f6878086c334aa25dc5a33869a3954e9d1e015130d65a69309b3b61"
 
 PYPI_PACKAGE = "WTForms"
-PYPI_PACKAGE_EXT = "zip"
 
 RDEPENDS_${PN} += "\
 ${PYTHON_PN}-netserver \
diff --git a/meta-python/recipes-devtools/python/python-wtforms_2.1.bb 
b/meta-python/recipes-devtools/python/python-wtforms_2.2.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-wtforms_2.1.bb
rename to meta-python/recipes-devtools/python/python-wtforms_2.2.1.bb
diff --git a/meta-python/recipes-devtools/python/python3-wtforms_2.1.bb 
b/meta-python/recipes-devtools/python/python3-wtforms_2.2.1.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-wtforms_2.1.bb
rename to meta-python/recipes-devtools/python/python3-wtforms_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-robotframework: update to version 3.0.4

2018-07-09 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-robotframework.inc | 4 ++--
 ...{python-robotframework_3.0.2.bb => python-robotframework_3.0.4.bb} | 0
 ...ython3-robotframework_3.0.2.bb => python3-robotframework_3.0.4.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-robotframework_3.0.2.bb => 
python-robotframework_3.0.4.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-robotframework_3.0.2.bb => 
python3-robotframework_3.0.4.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-robotframework.inc 
b/meta-python/recipes-devtools/python/python-robotframework.inc
index 78bbbc6..e920c51 100644
--- a/meta-python/recipes-devtools/python/python-robotframework.inc
+++ b/meta-python/recipes-devtools/python/python-robotframework.inc
@@ -11,8 +11,8 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
 inherit pypi
 
-SRC_URI[md5sum] = "ea49a54b9d7e38302712194e85c37eaa"
-SRC_URI[sha256sum] = 
"2018f233568227f9af8c366f93e243a157b742f3baf5b649ecc9750ac0ee1ff7"
+SRC_URI[md5sum] = "ee753415645ff4831ff0d366a0467fe7"
+SRC_URI[sha256sum] = 
"ab94257cbd848dfca7148e092d233a12853cc7e840ce8231af9cbb5e7f51aa47"
 
 RDEPENDS_${PN} += " \
 ${PYTHON_PN}-shell \
diff --git a/meta-python/recipes-devtools/python/python-robotframework_3.0.2.bb 
b/meta-python/recipes-devtools/python/python-robotframework_3.0.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-robotframework_3.0.2.bb
rename to meta-python/recipes-devtools/python/python-robotframework_3.0.4.bb
diff --git 
a/meta-python/recipes-devtools/python/python3-robotframework_3.0.2.bb 
b/meta-python/recipes-devtools/python/python3-robotframework_3.0.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-robotframework_3.0.2.bb
rename to meta-python/recipes-devtools/python/python3-robotframework_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-cython: update to version 0.28.4

2018-07-09 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-cython.inc | 4 ++--
 .../python/{python-cython_0.28.3.bb => python-cython_0.28.4.bb}   | 0
 .../python/{python3-cython_0.28.3.bb => python3-cython_0.28.4.bb} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-cython_0.28.3.bb => 
python-cython_0.28.4.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-cython_0.28.3.bb => 
python3-cython_0.28.4.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-cython.inc 
b/meta-python/recipes-devtools/python/python-cython.inc
index 33873c9..713fd2f 100644
--- a/meta-python/recipes-devtools/python/python-cython.inc
+++ b/meta-python/recipes-devtools/python/python-cython.inc
@@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
 PYPI_PACKAGE = "Cython"
 BBCLASSEXTEND = "native nativesdk"
 
-SRC_URI[md5sum] = "586f0eb70ba1fcc34334e9e10c5e68c0"
-SRC_URI[sha256sum] = 
"1aae6d6e985144cea147eb5e677830f45faaff3d305d77378c3cba55f526"
+SRC_URI[md5sum] = "fa01ba71b1e3136b0f12e3ed8958ea02"
+SRC_URI[sha256sum] = 
"76ac2b08d3d956d77b574bb43cbf1d37bd58b9d50c04ba281303e695854ebc46"
 
 inherit pypi
 
diff --git a/meta-python/recipes-devtools/python/python-cython_0.28.3.bb 
b/meta-python/recipes-devtools/python/python-cython_0.28.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-cython_0.28.3.bb
rename to meta-python/recipes-devtools/python/python-cython_0.28.4.bb
diff --git a/meta-python/recipes-devtools/python/python3-cython_0.28.3.bb 
b/meta-python/recipes-devtools/python/python3-cython_0.28.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-cython_0.28.3.bb
rename to meta-python/recipes-devtools/python/python3-cython_0.28.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-py: update to version 1.5.4

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

diff --git a/meta-python/recipes-devtools/python/python-py.inc 
b/meta-python/recipes-devtools/python/python-py.inc
index c7d6727..495becf 100644
--- a/meta-python/recipes-devtools/python/python-py.inc
+++ b/meta-python/recipes-devtools/python/python-py.inc
@@ -3,7 +3,7 @@ HOMEPAGE = "http://py.readthedocs.io/;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a6bb0320b04a0a503f12f69fea479de9"
 
-SRC_URI[md5sum] = "279ca69c632069e1b71e11b14641ca28"
-SRC_URI[sha256sum] = 
"ca18943e28235417756316bfada6cd96b23ce60dd532642690dcfdaba988a76d"
+SRC_URI[md5sum] = "7502d66fa68ea4ae5b61c511cd177d6a"
+SRC_URI[sha256sum] = 
"3fd59af7435864e1a243790d322d763925431213b6b8529c6ca71081ace3bbf7"
 
 BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python-py_1.5.2.bb 
b/meta-python/recipes-devtools/python/python-py_1.5.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-py_1.5.2.bb
rename to meta-python/recipes-devtools/python/python-py_1.5.4.bb
diff --git a/meta-python/recipes-devtools/python/python3-py_1.5.2.bb 
b/meta-python/recipes-devtools/python/python3-py_1.5.4.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-py_1.5.2.bb
rename to meta-python/recipes-devtools/python/python3-py_1.5.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-pymisp: update to version 2.4.93

2018-07-09 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-pymisp.inc | 4 ++--
 .../python/{python-pymisp_2.4.92.1.bb => python-pymisp_2.4.93.bb} | 0
 .../python/{python3-pymisp_2.4.92.1.bb => python3-pymisp_2.4.93.bb}   | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-pymisp_2.4.92.1.bb => 
python-pymisp_2.4.93.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-pymisp_2.4.92.1.bb => 
python3-pymisp_2.4.93.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-pymisp.inc 
b/meta-python/recipes-devtools/python/python-pymisp.inc
index e53797a..468a801 100644
--- a/meta-python/recipes-devtools/python/python-pymisp.inc
+++ b/meta-python/recipes-devtools/python/python-pymisp.inc
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/MISP/PyMISP;
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
 
-SRC_URI[md5sum] = "7390fe6a8df25170059e32f1988d5447"
-SRC_URI[sha256sum] = 
"63a52b97981b0e3c0023e11ce22f097356cdc9ef7c28a3415a17a08fcd7e8984"
+SRC_URI[md5sum] = "6d549b36cbfa8c1a3323c5d6e299789e"
+SRC_URI[sha256sum] = 
"f4ed2000cbe1a314f1f88fd8a8eba4ad05974b351b96f1235c6e532158a39fe0"
 
 RDEPENDS_${PN} += " \
 ${PYTHON_PN}-dateutil \
diff --git a/meta-python/recipes-devtools/python/python-pymisp_2.4.92.1.bb 
b/meta-python/recipes-devtools/python/python-pymisp_2.4.93.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-pymisp_2.4.92.1.bb
rename to meta-python/recipes-devtools/python/python-pymisp_2.4.93.bb
diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.92.1.bb 
b/meta-python/recipes-devtools/python/python3-pymisp_2.4.93.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-pymisp_2.4.92.1.bb
rename to meta-python/recipes-devtools/python/python3-pymisp_2.4.93.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-psutil: update to version 5.4.6

2018-07-09 Thread Derek Straka
Signed-off-by: Derek Straka 
---
 meta-python/recipes-devtools/python/python-psutil.inc | 4 ++--
 .../python/{python-psutil_5.4.3.bb => python-psutil_5.4.6.bb} | 0
 .../python/{python3-psutil_5.4.3.bb => python3-psutil_5.4.6.bb}   | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python-psutil_5.4.3.bb => 
python-psutil_5.4.6.bb} (100%)
 rename meta-python/recipes-devtools/python/{python3-psutil_5.4.3.bb => 
python3-psutil_5.4.6.bb} (100%)

diff --git a/meta-python/recipes-devtools/python/python-psutil.inc 
b/meta-python/recipes-devtools/python/python-psutil.inc
index 5d8e61f..67ae118 100644
--- a/meta-python/recipes-devtools/python/python-psutil.inc
+++ b/meta-python/recipes-devtools/python/python-psutil.inc
@@ -2,8 +2,8 @@ SUMMARY = "A cross-platform process and system utilities module 
for Python"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0f02e99f7f3c9a7fe8ecfc5d44c2be62"
 
-SRC_URI[md5sum] = "3b291833dbea631db9d271aa602a169a"
-SRC_URI[sha256sum] = 
"e2467e9312c2fa191687b89ff4bc2ad8843be4af6fb4dc95a7cc5f7d7a327b18"
+SRC_URI[md5sum] = "200e073cdd56cc7a9ba9a06088569200"
+SRC_URI[sha256sum] = 
"686e5a35fe4c0acc25f3466c32e716f2d498aaae7b7edc03e2305b682226bcf6"
 
 PACKAGES =+ "${PN}-tests"
 
diff --git a/meta-python/recipes-devtools/python/python-psutil_5.4.3.bb 
b/meta-python/recipes-devtools/python/python-psutil_5.4.6.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-psutil_5.4.3.bb
rename to meta-python/recipes-devtools/python/python-psutil_5.4.6.bb
diff --git a/meta-python/recipes-devtools/python/python3-psutil_5.4.3.bb 
b/meta-python/recipes-devtools/python/python3-psutil_5.4.6.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-psutil_5.4.3.bb
rename to meta-python/recipes-devtools/python/python3-psutil_5.4.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-serpent: update to version 1.25

2018-07-09 Thread Derek Straka
License-Update: PKG-INFO updated for the latest release and MIT remains the 
package license

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

diff --git a/meta-python/recipes-devtools/python/python-serpent.inc 
b/meta-python/recipes-devtools/python/python-serpent.inc
index 3f51bc2..2ba6570 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=acdea68f0e5a89eb6cbfdf54e38c356e"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=5a8193ba89f1083617f32d522f6485e9"
 
-SRC_URI[md5sum] = "d0c50f1943ff86d830eb3fe40f6dc1e3"
-SRC_URI[sha256sum] = 
"b6855483d95a03b6aee358363684cd38a3a670240da5bc6da4253079cb07b8df"
+SRC_URI[md5sum] = "0f9684622125a527fa4fbe2587738973"
+SRC_URI[sha256sum] = 
"264a028e059c1b557701ae7c567cdab330dbd228ff924489343efcb39bd828a0"
 
 inherit pypi
 
diff --git a/meta-python/recipes-devtools/python/python-serpent_1.24.bb 
b/meta-python/recipes-devtools/python/python-serpent_1.25.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python-serpent_1.24.bb
rename to meta-python/recipes-devtools/python/python-serpent_1.25.bb
diff --git a/meta-python/recipes-devtools/python/python3-serpent_1.24.bb 
b/meta-python/recipes-devtools/python/python3-serpent_1.25.bb
similarity index 100%
rename from meta-python/recipes-devtools/python/python3-serpent_1.24.bb
rename to meta-python/recipes-devtools/python/python3-serpent_1.25.bb
-- 
2.7.4

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


Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482

2018-07-09 Thread Khem Raj
On Sun, Jul 8, 2018 at 11:58 PM Peter Kjellerstedt
 wrote:
>
> > -Original Message-
> > From: openembedded-devel-boun...@lists.openembedded.org
> > [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of
> > Yu, Mingli
> > Sent: den 9 juli 2018 08:37
> > To: Peter Kjellerstedt ; Khem Raj
> > 
> > Cc: openembeded-devel 
> > Subject: Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482
> >
> > On 2018年07月09日 14:37, Peter Kjellerstedt wrote:
> > >> -Original Message-
> > >> From: openembedded-devel-boun...@lists.openembedded.org
> > >> [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf
> > Of
> > >> Khem Raj
> > >> Sent: den 9 juli 2018 06:02
> > >> To: Yu, Mingli 
> > >> Cc: openembeded-devel 
> > >> Subject: Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482
> > >>
> > >> On Sun, Jul 8, 2018 at 7:29 PM Yu, Mingli 
> > >> wrote:
> > >>> On 2018年07月06日 23:01, Khem Raj wrote:
> >  On Fri, Jul 6, 2018 at 2:27 AM Yu, Mingli
> > 
> > >>> wrote:
> > > On 2018年07月06日 00:00, Khem Raj wrote:
> > >> On Wed, Jul 4, 2018 at 11:54 PM  wrote:
> > >>>
> > >>> From: Mingli Yu 
> > >>>
> > >>> Update LIC_FILES_CHKSUM as the file iozone.c
> > >>> used for LIC_FILES_CHKSUM updated
> > >>>
> > >>
> > >> Please describe what has changed that is causing the checksums
> > to
> > >> change.
> > >
> > > The source file iozone.c changed has causing the checksum change.
> > > I have already mention it in the commit message.
> > 
> >  Commit message does not say what changed,  We already know
> >  something has changed thats causing the checksum change but here
> > we
> >  usually document what changed specifically, purpose is to let
> > users
> >  know of any change in licensing requirements that they need to be
> >  aware of
> > >>>
> > >>> Thanks Khem!
> > >>>
> > >>> I will try to list the changes in V2 but actually the file iozone.c
> > >>> used for checksum is source file. It has so much code changes
> > unlike
> > >>> some packages use COPYRIGHT file or README.md file for checksum.
> > >>
> > >> Ok that’s probably not ideal then. It would be better to just use
> > the
> > >> needed lines from checksum
> > >
> > > Please note that it is only line 37-48 and 260-266 of iozone.c that
> > are used
> > > to calculate the checksums. However, I guess that that due to the
> > fact there
> > > is source in between line 48 and 260, some lines have been
> > added/removed, so
> > > that the line numbers used in the checksum calculation are now off
> > (or they
> > > were off already before). Looking at the current source, my guess is
> > that
> > > lines 260-266 should be changed to 269-275.
> >
> > >
> > > Someone should really ask upstream to include a LICENSE file
> >
> > Thanks Peter!
> >
> > It's better to include a LICENSE file.
> >
> > But now, how about just use 37-48 lines to calculate the checksum?
> >
> > Hi Khem,
> > What's your opinion?
> >
> > Thanks,
>
> The problem is that the license information is really at lines 269-275.
> And at lines 37-48. Which is a mess...


ok. you can have two entries in checksum like we do for multiple license files.
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [PATCH] vim: update to 8.1.0155

2018-07-09 Thread Leon Anavi
Hi Khem,

Thank you for the feedback. I have updated the patch according to your
recommendations. However, git send-email somehow didn't properly sent
the prefix of the subject. Sorry about that. Anyway version 3 of my vim
patch is available at:
http://lists.openembedded.org/pipermail/openembedded-devel/2018-July/119281.html

Please let me know if you have any additional remarks.

Thanks,
Leon


On 7.07.2018 00:21, Khem Raj wrote:
> On Fri, Jul 6, 2018 at 2:14 AM Leon Anavi  wrote:
>> Update vim to the latest version 8.1.0155.
>>
>> Signed-off-by: Leon Anavi 
>> ---
>>  meta-oe/recipes-support/vim/vim-tiny_8.1.0.116.bb |  13 ---
>>  meta-oe/recipes-support/vim/vim-tiny_8.1.0155.bb  |  13 +++
>>  meta-oe/recipes-support/vim/vim_8.1.0.116.bb  | 113 
>> --
>>  meta-oe/recipes-support/vim/vim_8.1.0155.bb   | 113 
>> ++
>>  4 files changed, 126 insertions(+), 126 deletions(-)
>>  delete mode 100644 meta-oe/recipes-support/vim/vim-tiny_8.1.0.116.bb
>>  create mode 100644 meta-oe/recipes-support/vim/vim-tiny_8.1.0155.bb
>>  delete mode 100644 meta-oe/recipes-support/vim/vim_8.1.0.116.bb
>>  create mode 100644 meta-oe/recipes-support/vim/vim_8.1.0155.bb
>>
> this patch is ok however I would suggest that you add
>
> [diff]
> renames = copies
>
> to your ~/.gitconfig this will help git detect renames and make
> patches easier to review.
>
>> diff --git a/meta-oe/recipes-support/vim/vim-tiny_8.1.0.116.bb 
>> b/meta-oe/recipes-support/vim/vim-tiny_8.1.0.116.bb
>> deleted file mode 100644
>> index bb8f2b7..000
>> --- a/meta-oe/recipes-support/vim/vim-tiny_8.1.0.116.bb
>> +++ /dev/null
>> @@ -1,13 +0,0 @@
>> -require vim_${PV}.bb
>> -
>> -SUMMARY += " (with tiny features)"
>> -
>> -PACKAGECONFIG += "tiny"
>> -
>> -do_install() {
>> -install -d ${D}/${bindir}
>> -install -m 0755 ${S}/vim ${D}/${bindir}/vim.tiny
>> -}
>> -
>> -ALTERNATIVE_PRIORITY = "90"
>> -ALTERNATIVE_TARGET = "${bindir}/vim.tiny"
>> diff --git a/meta-oe/recipes-support/vim/vim-tiny_8.1.0155.bb 
>> b/meta-oe/recipes-support/vim/vim-tiny_8.1.0155.bb
>> new file mode 100644
>> index 000..bb8f2b7
>> --- /dev/null
>> +++ b/meta-oe/recipes-support/vim/vim-tiny_8.1.0155.bb
>> @@ -0,0 +1,13 @@
>> +require vim_${PV}.bb
>> +
>> +SUMMARY += " (with tiny features)"
>> +
>> +PACKAGECONFIG += "tiny"
>> +
>> +do_install() {
>> +install -d ${D}/${bindir}
>> +install -m 0755 ${S}/vim ${D}/${bindir}/vim.tiny
>> +}
> This could just be made a single liner with
>
> install -D -m 0755 ${S}/vim ${D}/${bindir}/vim.tiny
>
>> +
>> +ALTERNATIVE_PRIORITY = "90"
>> +ALTERNATIVE_TARGET = "${bindir}/vim.tiny"
>> diff --git a/meta-oe/recipes-support/vim/vim_8.1.0.116.bb 
>> b/meta-oe/recipes-support/vim/vim_8.1.0.116.bb
>> deleted file mode 100644
>> index f669dfe..000
>> --- a/meta-oe/recipes-support/vim/vim_8.1.0.116.bb
>> +++ /dev/null
>> @@ -1,113 +0,0 @@
>> -SUMMARY = "Vi IMproved - enhanced vi editor"
>> -SECTION = "console/utils"
>> -DEPENDS = "ncurses gettext-native"
>> -# vimdiff doesn't like busybox diff
>> -RSUGGESTS_${PN} = "diffutils"
>> -LICENSE = "vim"
>> -LIC_FILES_CHKSUM = 
>> "file://../runtime/doc/uganda.txt;md5=b6eb9d541de3933cc8f48125ae0335fe"
>> -
>> -SRC_URI = "git://github.com/vim/vim.git \
>> -   file://disable_acl_header_check.patch;patchdir=.. \
>> -   file://vim-add-knob-whether-elf.h-are-checked.patch;patchdir=.. \
>> -"
>> -SRCREV = "a87b72cc316e065d66dcbcf7ec1cde330adef3a3"
>> -
>> -S = "${WORKDIR}/git/src"
>> -
>> -VIMDIR = 
>> "vim${@d.getVar('PV').split('.')[0]}${@d.getVar('PV').split('.')[1]}"
>> -
>> -inherit autotools-brokensep update-alternatives
>> -
>> -CLEANBROKEN = "1"
>> -
>> -# vim configure.in contains functions which got 'dropped' by 
>> autotools.bbclass
>> -do_configure () {
>> -rm -f auto/*
>> -touch auto/config.mk
>> -aclocal
>> -autoconf
>> -oe_runconf
>> -touch auto/configure
>> -touch auto/config.mk auto/config.h
>> -}
>> -
>> -#Available PACKAGECONFIG options are gtkgui, acl, x11, tiny
>> -PACKAGECONFIG ??= ""
>> -PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)}"
>> -
>> -PACKAGECONFIG[gtkgui] = "--enable-gtk2-test 
>> --enable-gui=gtk2,--enable-gui=no,gtk+,"
>> -PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl,"
>> -PACKAGECONFIG[x11] = "--with-x,--without-x,xt,"
>> -PACKAGECONFIG[tiny] = "--with-features=tiny,--with-features=big,,"
>> -PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,"
>> -PACKAGECONFIG[elfutils] = "--enable-elf-check,,elfutils,"
>> -
>> -EXTRA_OECONF = " \
>> ---disable-gpm \
>> ---disable-gtktest \
>> ---disable-xim \
>> ---disable-netbeans \
>> ---with-tlib=ncurses \
>> -ac_cv_small_wchar_t=no \
>> -vim_cv_getcwd_broken=no \
>> -vim_cv_memmove_handles_overlap=yes \
>> -vim_cv_stat_ignores_slash=no \
>> -vim_cv_terminfo=yes \
>> -vim_cv_tgetent=non-zero \
>> -vim_cv_toupper_broken=no 

[oe] [PATCH v3] vim: update to 8.1.0172

2018-07-09 Thread Leon Anavi
Update vim to the latest version 8.1.0172.

Signed-off-by: Leon Anavi 
---
 .../vim/{vim-tiny_8.1.0.116.bb => vim-tiny_8.1.0172.bb}| 3 +--
 meta-oe/recipes-support/vim/{vim_8.1.0.116.bb => vim_8.1.0172.bb}  | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-support/vim/{vim-tiny_8.1.0.116.bb => 
vim-tiny_8.1.0172.bb} (67%)
 rename meta-oe/recipes-support/vim/{vim_8.1.0.116.bb => vim_8.1.0172.bb} (98%)

diff --git a/meta-oe/recipes-support/vim/vim-tiny_8.1.0.116.bb 
b/meta-oe/recipes-support/vim/vim-tiny_8.1.0172.bb
similarity index 67%
rename from meta-oe/recipes-support/vim/vim-tiny_8.1.0.116.bb
rename to meta-oe/recipes-support/vim/vim-tiny_8.1.0172.bb
index bb8f2b7..84ad659 100644
--- a/meta-oe/recipes-support/vim/vim-tiny_8.1.0.116.bb
+++ b/meta-oe/recipes-support/vim/vim-tiny_8.1.0172.bb
@@ -5,8 +5,7 @@ SUMMARY += " (with tiny features)"
 PACKAGECONFIG += "tiny"
 
 do_install() {
-install -d ${D}/${bindir}
-install -m 0755 ${S}/vim ${D}/${bindir}/vim.tiny
+install -D -m 0755 ${S}/vim ${D}/${bindir}/vim.tiny
 }
 
 ALTERNATIVE_PRIORITY = "90"
diff --git a/meta-oe/recipes-support/vim/vim_8.1.0.116.bb 
b/meta-oe/recipes-support/vim/vim_8.1.0172.bb
similarity index 98%
rename from meta-oe/recipes-support/vim/vim_8.1.0.116.bb
rename to meta-oe/recipes-support/vim/vim_8.1.0172.bb
index f669dfe..8e99919 100644
--- a/meta-oe/recipes-support/vim/vim_8.1.0.116.bb
+++ b/meta-oe/recipes-support/vim/vim_8.1.0172.bb
@@ -10,7 +10,7 @@ SRC_URI = "git://github.com/vim/vim.git \
file://disable_acl_header_check.patch;patchdir=.. \
file://vim-add-knob-whether-elf.h-are-checked.patch;patchdir=.. \
 "
-SRCREV = "a87b72cc316e065d66dcbcf7ec1cde330adef3a3"
+SRCREV = "c229e54a69468722ca2449e807e90445b7479659"
 
 S = "${WORKDIR}/git/src"
 
-- 
2.7.4

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


Re: [oe] [meta-python][PATCH 2/2] python3-lxml, python3-pandas, python3-protobuf: Set CLEANBROKEN

2018-07-09 Thread Burton, Ross
I've just sent a patch for oe-core to improve how it calls clean,
which fixes lxml.

Pandas can be fixed by depending on cython, patch sent.

protobuf is broken, we still need the cleanbroken but I plan to do the
same for python2 so I've just sent a patch to add it to the inc file.

Ross

On 9 July 2018 at 10:52, Burton, Ross  wrote:
> The lxml failure can be fixed with a tweak to the class, so I'll run
> the tweak through all of meta-python to see if it regresses anything
> else.  Please hold this off until I report back.
>
> Ross
>
> On 8 July 2018 at 09:06, Khem Raj  wrote:
>> The distutils class got a clean via "setup.py clean", but these
>> recipes doesn't support this yet so disable clean target during
>> configure
>>
>> Signed-off-by: Khem Raj 
>> ---
>>  meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb | 1 +
>>  meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb  | 1 +
>>  meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb | 1 +
>>  3 files changed, 3 insertions(+)
>>
>> diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb 
>> b/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
>> index ff4bc7faad..b95d7bae71 100644
>> --- a/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
>> +++ b/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
>> @@ -1,2 +1,3 @@
>>  inherit setuptools3
>>  require python-lxml.inc
>> +CLEANBROKEN = "1"
>> diff --git a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb 
>> b/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
>> index b5dd5e0924..c1e57189cf 100644
>> --- a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
>> +++ b/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
>> @@ -1,2 +1,3 @@
>>  inherit setuptools3
>>  require python-pandas.inc
>> +CLEANBROKEN = "1"
>> diff --git a/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb 
>> b/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
>> index 781d1dc4da..53d5528c4b 100644
>> --- a/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
>> +++ b/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
>> @@ -1,2 +1,3 @@
>>  inherit setuptools3
>>  require python-protobuf.inc
>> +CLEANBROKEN = "1"
>> --
>> 2.18.0
>>
>> --
>> ___
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [PATCH meta-python 2/2] python-panda: add cython to DEPENDS

2018-07-09 Thread Ross Burton
The distutils class does a 'setup.py clean' now, deleting files which then need
to be regenerated.  Add Cython to the build dependencies so this can be done.

Signed-off-by: Ross Burton 
---
 meta-python/recipes-devtools/python/python-pandas.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python-pandas.inc 
b/meta-python/recipes-devtools/python/python-pandas.inc
index a08f1c2861..9b8e4dcf18 100644
--- a/meta-python/recipes-devtools/python/python-pandas.inc
+++ b/meta-python/recipes-devtools/python/python-pandas.inc
@@ -12,7 +12,7 @@ SRC_URI[sha256sum] = 
"50b52af2af2e15f4aeb2fe196da073a8c131fa02e433e105d95ce40016
 inherit pypi
 
 DEPENDS += " \
-${PYTHON_PN}-numpy-native \
+${PYTHON_PN}-numpy-native ${PYTHON_PN}-cython-native \
 "
 
 RDEPENDS_${PN} += " \
-- 
2.11.0

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


[oe] [PATCH meta-python 1/2] python-protobuf: disable clean

2018-07-09 Thread Ross Burton
The distutils class does a 'setup.py clean' but this breaks the protobuf build:

| Can't find required file: ../src/google/protobuf/descriptor.proto
| Generating google/protobuf/descriptor_pb2.py...
| ERROR: python3 setup.py build_ext execution failed.

Disable the clean to work around this.

Signed-off-by: Ross Burton 
---
 meta-python/recipes-devtools/python/python-protobuf.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-protobuf.inc 
b/meta-python/recipes-devtools/python/python-protobuf.inc
index 6a0568ae62..421775d394 100644
--- a/meta-python/recipes-devtools/python/python-protobuf.inc
+++ b/meta-python/recipes-devtools/python/python-protobuf.inc
@@ -25,3 +25,5 @@ RDEPENDS_${PN} += " \
 
 # For usage in other recipies when compiling protobuf files (e.g. by 
grpcio-tools)
 BBCLASSEXTEND = "native"
+
+CLEANBROKEN = "1"
-- 
2.11.0

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


Re: [oe] [meta-python][PATCH 2/2] python3-lxml, python3-pandas, python3-protobuf: Set CLEANBROKEN

2018-07-09 Thread Burton, Ross
The lxml failure can be fixed with a tweak to the class, so I'll run
the tweak through all of meta-python to see if it regresses anything
else.  Please hold this off until I report back.

Ross

On 8 July 2018 at 09:06, Khem Raj  wrote:
> The distutils class got a clean via "setup.py clean", but these
> recipes doesn't support this yet so disable clean target during
> configure
>
> Signed-off-by: Khem Raj 
> ---
>  meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb | 1 +
>  meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb  | 1 +
>  meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb | 1 +
>  3 files changed, 3 insertions(+)
>
> diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb 
> b/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
> index ff4bc7faad..b95d7bae71 100644
> --- a/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
> @@ -1,2 +1,3 @@
>  inherit setuptools3
>  require python-lxml.inc
> +CLEANBROKEN = "1"
> diff --git a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb 
> b/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
> index b5dd5e0924..c1e57189cf 100644
> --- a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
> @@ -1,2 +1,3 @@
>  inherit setuptools3
>  require python-pandas.inc
> +CLEANBROKEN = "1"
> diff --git a/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb 
> b/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
> index 781d1dc4da..53d5528c4b 100644
> --- a/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
> @@ -1,2 +1,3 @@
>  inherit setuptools3
>  require python-protobuf.inc
> +CLEANBROKEN = "1"
> --
> 2.18.0
>
> --
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH v2] iozone3: Upgrade to 482

2018-07-09 Thread mingli.yu
From: Mingli Yu 

Licence-Update:
The copyright info is located in source file
iozone.c.
Previously in v465, the copyright info is located
between lines 37 to 48 and lines 260 to 266, but
now in v482, it is located between lines 37 to 48
and lines 269 to 275 instead.

Signed-off-by: Mingli Yu 
---
 .../iozone3/{iozone3_465.bb => iozone3_482.bb}  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-benchmark/iozone3/{iozone3_465.bb => iozone3_482.bb} 
(95%)

diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_465.bb 
b/meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
similarity index 95%
rename from meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
rename to meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
index 191b93425..db79dff0a 100644
--- a/meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
+++ b/meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
@@ -4,14 +4,14 @@ AUTHOR = "Don Capps , William D. 
Norcott http://www.iozone.org/src/current/${BPN}_${PV}.tar \
 file://parallelism.patch \
 file://copyright.txt \
 "
-SRC_URI[md5sum] = "c924e5e46fb1cf8145f420e8e57eb954"
-SRC_URI[sha256sum] = 
"2e3d72916e7d7340a7c505fc0c3d28553fcc5ff2daf41d811368e55bd4e6a293"
+SRC_URI[md5sum] = "31ca1d3d28bc375c20a2808217cf212c"
+SRC_URI[sha256sum] = 
"2733feb63c96f77177c68f3d938f2294d5394d8554b2767c45cbe138b2f3ae30"
 
 UPSTREAM_CHECK_REGEX = "iozone3_(?P\d+).tar"
 
-- 
2.17.1

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


Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482

2018-07-09 Thread Yu, Mingli



On 2018年07月09日 14:58, Peter Kjellerstedt wrote:

-Original Message-
From: openembedded-devel-boun...@lists.openembedded.org
[mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of
Yu, Mingli
Sent: den 9 juli 2018 08:37
To: Peter Kjellerstedt ; Khem Raj

Cc: openembeded-devel 
Subject: Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482

On 2018年07月09日 14:37, Peter Kjellerstedt wrote:

-Original Message-
From: openembedded-devel-boun...@lists.openembedded.org
[mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf

Of

Khem Raj
Sent: den 9 juli 2018 06:02
To: Yu, Mingli 
Cc: openembeded-devel 
Subject: Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482

On Sun, Jul 8, 2018 at 7:29 PM Yu, Mingli 
wrote:

On 2018年07月06日 23:01, Khem Raj wrote:

On Fri, Jul 6, 2018 at 2:27 AM Yu, Mingli



wrote:

On 2018年07月06日 00:00, Khem Raj wrote:

On Wed, Jul 4, 2018 at 11:54 PM  wrote:


From: Mingli Yu 

Update LIC_FILES_CHKSUM as the file iozone.c
used for LIC_FILES_CHKSUM updated



Please describe what has changed that is causing the checksums

to

change.


The source file iozone.c changed has causing the checksum change.
I have already mention it in the commit message.


Commit message does not say what changed,  We already know
something has changed thats causing the checksum change but here

we

usually document what changed specifically, purpose is to let

users

know of any change in licensing requirements that they need to be
aware of


Thanks Khem!

I will try to list the changes in V2 but actually the file iozone.c
used for checksum is source file. It has so much code changes

unlike

some packages use COPYRIGHT file or README.md file for checksum.


Ok that’s probably not ideal then. It would be better to just use

the

needed lines from checksum


Please note that it is only line 37-48 and 260-266 of iozone.c that

are used

to calculate the checksums. However, I guess that that due to the

fact there

is source in between line 48 and 260, some lines have been

added/removed, so

that the line numbers used in the checksum calculation are now off

(or they

were off already before). Looking at the current source, my guess is

that

lines 260-266 should be changed to 269-275.




Someone should really ask upstream to include a LICENSE file


Thanks Peter!

It's better to include a LICENSE file.

But now, how about just use 37-48 lines to calculate the checksum?

Hi Khem,
What's your opinion?

Thanks,


The problem is that the license information is really at lines 269-275.


Yes, it indeed locates the copyright lines into source file right now. 
Or we just change to the right copyright line accordingly if no 
specified LICENSE file there.


Thanks,


And at lines 37-48. Which is a mess...


Thanks,





Thanks,




Signed-off-by: Mingli Yu 
---
 .../iozone3/{iozone3_465.bb => iozone3_482.bb}

| 6 +++---

 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-benchmark/iozone3/{iozone3_465.bb =>

iozone3_482.bb} (95%)


diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_465.bb

b/meta-oe/recipes-benchmark/iozone3/iozone3_482.bb

similarity index 95%
rename from meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
rename to meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
index 191b93425..09306e044 100644
--- a/meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
+++ b/meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
@@ -4,14 +4,14 @@ AUTHOR = "Don Capps ,

William D. Norcott 
   SECTION = "console/tests"
   LICENSE = "iozone3"
   LIC_FILES_CHKSUM =

"file://iozone.c;beginline=37;endline=48;md5=7331260091868dcad0f9edea73
5b5f4b \

-

file://iozone.c;beginline=260;endline=266;md5=77f9ee51e45b57a7e7519c4fa
0b4f00b \

+

file://iozone.c;beginline=260;endline=266;md5=0aa488fd139eac078be6eca86
e1435e8 \

   "
   SRC_URI = "http://www.iozone.org/src/current/${BPN}_${PV}.tar

\

   file://parallelism.patch \
   file://copyright.txt \
   "
-SRC_URI[md5sum] = "c924e5e46fb1cf8145f420e8e57eb954"
-SRC_URI[sha256sum] =

"2e3d72916e7d7340a7c505fc0c3d28553fcc5ff2daf41d811368e55bd4e6a293"

+SRC_URI[md5sum] = "31ca1d3d28bc375c20a2808217cf212c"
+SRC_URI[sha256sum] =

"2733feb63c96f77177c68f3d938f2294d5394d8554b2767c45cbe138b2f3ae30"


   UPSTREAM_CHECK_REGEX = "iozone3_(?P\d+).tar"

--
2.17.1


//Peter


//Peter


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


Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482

2018-07-09 Thread Peter Kjellerstedt
> -Original Message-
> From: openembedded-devel-boun...@lists.openembedded.org
> [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of
> Yu, Mingli
> Sent: den 9 juli 2018 08:37
> To: Peter Kjellerstedt ; Khem Raj
> 
> Cc: openembeded-devel 
> Subject: Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482
> 
> On 2018年07月09日 14:37, Peter Kjellerstedt wrote:
> >> -Original Message-
> >> From: openembedded-devel-boun...@lists.openembedded.org
> >> [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf
> Of
> >> Khem Raj
> >> Sent: den 9 juli 2018 06:02
> >> To: Yu, Mingli 
> >> Cc: openembeded-devel 
> >> Subject: Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482
> >>
> >> On Sun, Jul 8, 2018 at 7:29 PM Yu, Mingli 
> >> wrote:
> >>> On 2018年07月06日 23:01, Khem Raj wrote:
>  On Fri, Jul 6, 2018 at 2:27 AM Yu, Mingli
> 
> >>> wrote:
> > On 2018年07月06日 00:00, Khem Raj wrote:
> >> On Wed, Jul 4, 2018 at 11:54 PM  wrote:
> >>>
> >>> From: Mingli Yu 
> >>>
> >>> Update LIC_FILES_CHKSUM as the file iozone.c
> >>> used for LIC_FILES_CHKSUM updated
> >>>
> >>
> >> Please describe what has changed that is causing the checksums
> to
> >> change.
> >
> > The source file iozone.c changed has causing the checksum change.
> > I have already mention it in the commit message.
> 
>  Commit message does not say what changed,  We already know
>  something has changed thats causing the checksum change but here
> we
>  usually document what changed specifically, purpose is to let
> users
>  know of any change in licensing requirements that they need to be
>  aware of
> >>>
> >>> Thanks Khem!
> >>>
> >>> I will try to list the changes in V2 but actually the file iozone.c
> >>> used for checksum is source file. It has so much code changes
> unlike
> >>> some packages use COPYRIGHT file or README.md file for checksum.
> >>
> >> Ok that’s probably not ideal then. It would be better to just use
> the
> >> needed lines from checksum
> >
> > Please note that it is only line 37-48 and 260-266 of iozone.c that
> are used
> > to calculate the checksums. However, I guess that that due to the
> fact there
> > is source in between line 48 and 260, some lines have been
> added/removed, so
> > that the line numbers used in the checksum calculation are now off
> (or they
> > were off already before). Looking at the current source, my guess is
> that
> > lines 260-266 should be changed to 269-275.
> 
> >
> > Someone should really ask upstream to include a LICENSE file
> 
> Thanks Peter!
> 
> It's better to include a LICENSE file.
> 
> But now, how about just use 37-48 lines to calculate the checksum?
> 
> Hi Khem,
> What's your opinion?
> 
> Thanks,

The problem is that the license information is really at lines 269-275. 
And at lines 37-48. Which is a mess...

> >>> Thanks,
> >>>
> 
> >
> > Thanks,
> >
> >>
> >>> Signed-off-by: Mingli Yu 
> >>> ---
> >>> .../iozone3/{iozone3_465.bb => iozone3_482.bb}
> | 6 +++---
> >>> 1 file changed, 3 insertions(+), 3 deletions(-)
> >>> rename meta-oe/recipes-benchmark/iozone3/{iozone3_465.bb =>
> iozone3_482.bb} (95%)
> >>>
> >>> diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
> b/meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
> >>> similarity index 95%
> >>> rename from meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
> >>> rename to meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
> >>> index 191b93425..09306e044 100644
> >>> --- a/meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
> >>> +++ b/meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
> >>> @@ -4,14 +4,14 @@ AUTHOR = "Don Capps ,
> William D. Norcott  >>>   SECTION = "console/tests"
> >>>   LICENSE = "iozone3"
> >>>   LIC_FILES_CHKSUM =
> "file://iozone.c;beginline=37;endline=48;md5=7331260091868dcad0f9edea73
> 5b5f4b \
> >>> -
> file://iozone.c;beginline=260;endline=266;md5=77f9ee51e45b57a7e7519c4fa
> 0b4f00b \
> >>> +
> file://iozone.c;beginline=260;endline=266;md5=0aa488fd139eac078be6eca86
> e1435e8 \
> >>>   "
> >>>   SRC_URI = "http://www.iozone.org/src/current/${BPN}_${PV}.tar
> \
> >>>   file://parallelism.patch \
> >>>   file://copyright.txt \
> >>>   "
> >>> -SRC_URI[md5sum] = "c924e5e46fb1cf8145f420e8e57eb954"
> >>> -SRC_URI[sha256sum] =
> "2e3d72916e7d7340a7c505fc0c3d28553fcc5ff2daf41d811368e55bd4e6a293"
> >>> +SRC_URI[md5sum] = "31ca1d3d28bc375c20a2808217cf212c"
> >>> +SRC_URI[sha256sum] =
> "2733feb63c96f77177c68f3d938f2294d5394d8554b2767c45cbe138b2f3ae30"
> >>>
> >>>   UPSTREAM_CHECK_REGEX = "iozone3_(?P\d+).tar"
> >>>
> >>> --
> >>> 2.17.1
> >
> > //Peter

//Peter

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org

Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482

2018-07-09 Thread Yu, Mingli



On 2018年07月09日 14:37, Peter Kjellerstedt wrote:

-Original Message-
From: openembedded-devel-boun...@lists.openembedded.org
[mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of
Khem Raj
Sent: den 9 juli 2018 06:02
To: Yu, Mingli 
Cc: openembeded-devel 
Subject: Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482

On Sun, Jul 8, 2018 at 7:29 PM Yu, Mingli 
wrote:

On 2018年07月06日 23:01, Khem Raj wrote:

On Fri, Jul 6, 2018 at 2:27 AM Yu, Mingli 

wrote:

On 2018年07月06日 00:00, Khem Raj wrote:

On Wed, Jul 4, 2018 at 11:54 PM  wrote:


From: Mingli Yu 

Update LIC_FILES_CHKSUM as the file iozone.c
used for LIC_FILES_CHKSUM updated



Please describe what has changed that is causing the checksums to
change.


The source file iozone.c changed has causing the checksum change.
I have already mention it in the commit message.


Commit message does not say what changed,  We already know
something has changed thats causing the checksum change but here we
usually document what changed specifically, purpose is to let users
know of any change in licensing requirements that they need to be
aware of


Thanks Khem!

I will try to list the changes in V2 but actually the file iozone.c
used for checksum is source file. It has so much code changes unlike
some packages use COPYRIGHT file or README.md file for checksum.


Ok that’s probably not ideal then. It would be better to just use the
needed lines from checksum


Please note that it is only line 37-48 and 260-266 of iozone.c that are used
to calculate the checksums. However, I guess that that due to the fact there
is source in between line 48 and 260, some lines have been added/removed, so
that the line numbers used in the checksum calculation are now off (or they
were off already before). Looking at the current source, my guess is that
lines 260-266 should be changed to 269-275.




Someone should really ask upstream to include a LICENSE file


Thanks Peter!

It's better to include a LICENSE file.

But now, how about just use 37-48 lines to calculate the checksum?

Hi Khem,
What's your opinion?

Thanks,




Thanks,





Thanks,




Signed-off-by: Mingli Yu 
---
.../iozone3/{iozone3_465.bb => iozone3_482.bb}  | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
rename meta-oe/recipes-benchmark/iozone3/{iozone3_465.bb => iozone3_482.bb} 
(95%)

diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_465.bb 
b/meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
similarity index 95%
rename from meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
rename to meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
index 191b93425..09306e044 100644
--- a/meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
+++ b/meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
@@ -4,14 +4,14 @@ AUTHOR = "Don Capps , William D. Norcott 
http://www.iozone.org/src/current/${BPN}_${PV}.tar \
  file://parallelism.patch \
  file://copyright.txt \
  "
-SRC_URI[md5sum] = "c924e5e46fb1cf8145f420e8e57eb954"
-SRC_URI[sha256sum] = 
"2e3d72916e7d7340a7c505fc0c3d28553fcc5ff2daf41d811368e55bd4e6a293"
+SRC_URI[md5sum] = "31ca1d3d28bc375c20a2808217cf212c"
+SRC_URI[sha256sum] = 
"2733feb63c96f77177c68f3d938f2294d5394d8554b2767c45cbe138b2f3ae30"

  UPSTREAM_CHECK_REGEX = "iozone3_(?P\d+).tar"

--
2.17.1


//Peter


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


Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482

2018-07-09 Thread Peter Kjellerstedt
> -Original Message-
> From: openembedded-devel-boun...@lists.openembedded.org
> [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of
> Khem Raj
> Sent: den 9 juli 2018 06:02
> To: Yu, Mingli 
> Cc: openembeded-devel 
> Subject: Re: [oe] [meta-oe][PATCH] iozone3: Upgrade to 482
> 
> On Sun, Jul 8, 2018 at 7:29 PM Yu, Mingli 
> wrote:
> > On 2018年07月06日 23:01, Khem Raj wrote:
> > > On Fri, Jul 6, 2018 at 2:27 AM Yu, Mingli 
> > wrote:
> > >> On 2018年07月06日 00:00, Khem Raj wrote:
> > >>> On Wed, Jul 4, 2018 at 11:54 PM  wrote:
> > 
> >  From: Mingli Yu 
> > 
> >  Update LIC_FILES_CHKSUM as the file iozone.c
> >  used for LIC_FILES_CHKSUM updated
> > 
> > >>>
> > >>> Please describe what has changed that is causing the checksums to
> > >>> change.
> > >>
> > >> The source file iozone.c changed has causing the checksum change.
> > >> I have already mention it in the commit message.
> > >
> > > Commit message does not say what changed,  We already know
> > > something has changed thats causing the checksum change but here we 
> > > usually document what changed specifically, purpose is to let users 
> > > know of any change in licensing requirements that they need to be 
> > > aware of
> >
> > Thanks Khem!
> >
> > I will try to list the changes in V2 but actually the file iozone.c
> > used for checksum is source file. It has so much code changes unlike 
> > some packages use COPYRIGHT file or README.md file for checksum.
> 
> Ok that’s probably not ideal then. It would be better to just use the
> needed lines from checksum

Please note that it is only line 37-48 and 260-266 of iozone.c that are used 
to calculate the checksums. However, I guess that that due to the fact there 
is source in between line 48 and 260, some lines have been added/removed, so 
that the line numbers used in the checksum calculation are now off (or they 
were off already before). Looking at the current source, my guess is that 
lines 260-266 should be changed to 269-275.

Someone should really ask upstream to include a LICENSE file

> > Thanks,
> >
> > >
> > >>
> > >> Thanks,
> > >>
> > >>>
> >  Signed-off-by: Mingli Yu 
> >  ---
> > .../iozone3/{iozone3_465.bb => iozone3_482.bb}  | 6 
> >  +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> > rename meta-oe/recipes-benchmark/iozone3/{iozone3_465.bb => 
> >  iozone3_482.bb} (95%)
> > 
> >  diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_465.bb 
> >  b/meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
> >  similarity index 95%
> >  rename from meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
> >  rename to meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
> >  index 191b93425..09306e044 100644
> >  --- a/meta-oe/recipes-benchmark/iozone3/iozone3_465.bb
> >  +++ b/meta-oe/recipes-benchmark/iozone3/iozone3_482.bb
> >  @@ -4,14 +4,14 @@ AUTHOR = "Don Capps , 
> >  William D. Norcott  >   SECTION = "console/tests"
> >   LICENSE = "iozone3"
> >   LIC_FILES_CHKSUM = 
> >  "file://iozone.c;beginline=37;endline=48;md5=7331260091868dcad0f9edea735b5f4b
> >   \
> >  -
> >  file://iozone.c;beginline=260;endline=266;md5=77f9ee51e45b57a7e7519c4fa0b4f00b
> >   \
> >  +
> >  file://iozone.c;beginline=260;endline=266;md5=0aa488fd139eac078be6eca86e1435e8
> >   \
> >   "
> >   SRC_URI = "http://www.iozone.org/src/current/${BPN}_${PV}.tar \
> >   file://parallelism.patch \
> >   file://copyright.txt \
> >   "
> >  -SRC_URI[md5sum] = "c924e5e46fb1cf8145f420e8e57eb954"
> >  -SRC_URI[sha256sum] = 
> >  "2e3d72916e7d7340a7c505fc0c3d28553fcc5ff2daf41d811368e55bd4e6a293"
> >  +SRC_URI[md5sum] = "31ca1d3d28bc375c20a2808217cf212c"
> >  +SRC_URI[sha256sum] = 
> >  "2733feb63c96f77177c68f3d938f2294d5394d8554b2767c45cbe138b2f3ae30"
> >   
> >   UPSTREAM_CHECK_REGEX = "iozone3_(?P\d+).tar"
> >   
> >  --
> >  2.17.1

//Peter

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