[oe] [meta-handheld][PATCH v2 1/4] zaurusd: fix build with kernels < 4.16 and newer libc headers

2020-04-28 Thread Andrea Adami
The Y2038 changes broke the build for older 32bit devices using
older kernels.

As seen on: https://sourceware.org/glibc/wiki/Y2038ProofnessDesign

Re-use the same fix applied for tslib as of commit
id 9201611 tslib: Fix build with 4.x kernel headers

Signed-off-by: Andrea Adami 
---
 .../zaurusd/zaurusd/64bit_time_t.patch| 46 +++
 recipes-bsp/zaurusd/zaurusd_git.bb|  5 +-
 2 files changed, 49 insertions(+), 2 deletions(-)
 create mode 100644 recipes-bsp/zaurusd/zaurusd/64bit_time_t.patch

diff --git a/recipes-bsp/zaurusd/zaurusd/64bit_time_t.patch 
b/recipes-bsp/zaurusd/zaurusd/64bit_time_t.patch
new file mode 100644
index 000..a12c7bb
--- /dev/null
+++ b/recipes-bsp/zaurusd/zaurusd/64bit_time_t.patch
@@ -0,0 +1,46 @@
+From e5bb568619c22d701e8fcd705563acbf7885f735 Mon Sep 17 00:00:00 2001
+From: Andrea Adami 
+Date: Tue, 28 Apr 2020 21:21:29 +0200
+Subject: [PATCH] tskeys.c: fix build with kernels < 4.16 and newer libc
+ headers
+
+The Y2038 changes broke the build for legacy 32bit devices using
+older kernels.
+
+Upgrade the recipe to cope with the 64-bit time changes introduced in 4.16
+
+Fix:
+
+ tskeys.c: In function 'press_key':
+ tskeys.c:141:4: error: 'struct input_event' has no member named 'time'
+   141 |  ev.time.tv_sec = time(0);
+   |^
+ tskeys.c:142:4: error: 'struct input_event' has no member named 'time'
+   142 |  ev.time.tv_usec = 0;
+   |^
+
+
+Signed-off-by: Andrea Adami 
+---
+ apps/tskeys/tskeys.c | 5 +
+ 1 file changed, 5 insertions(+)
+
+diff --git a/apps/tskeys/tskeys.c b/apps/tskeys/tskeys.c
+index 264dfb7..0020012 100644
+--- a/apps/tskeys/tskeys.c
 b/apps/tskeys/tskeys.c
+@@ -21,6 +21,11 @@
+ 
+ #define MAX_OFFSCREEN_KEYS  20
+ 
++#ifndef input_event_sec
++#define input_event_sec time.tv_sec
++#define input_event_usec time.tv_usec
++#endif
++
+ struct rectangle {
+   int16_t x1;
+   int16_t y1;
+-- 
+2.17.1
+
diff --git a/recipes-bsp/zaurusd/zaurusd_git.bb 
b/recipes-bsp/zaurusd/zaurusd_git.bb
index d69805b..663ef1b 100644
--- a/recipes-bsp/zaurusd/zaurusd_git.bb
+++ b/recipes-bsp/zaurusd/zaurusd_git.bb
@@ -24,8 +24,9 @@ SRC_URI = "git://git.yoctoproject.org/${BPN} \
file://01-check-toggle-portait \
file://use-ts-symlink-instead-of-hardcoding.diff \
file://0001-zaurusd-add-support-for-collie.patch \
-   file://allow-newer-tslib.patch"
-
+   file://allow-newer-tslib.patch \
+   file://64bit_time_t.patch \
+"
 
 S = "${WORKDIR}/git"
 
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84134): 
https://lists.openembedded.org/g/openembedded-devel/message/84134
Mute This Topic: https://lists.openembedded.org/mt/73336016/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[oe] [meta-python][PATCH 2/8] python3-flask-jwt: Add recipe version 0.3.2

2020-04-28 Thread Domarys Correa
Signed-off-by: Domarys Correa 
---
 .../python/python3-flask-jwt_0.3.2.bb  | 14 ++
 1 file changed, 14 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-jwt_0.3.2.bb

diff --git a/meta-python/recipes-devtools/python/python3-flask-jwt_0.3.2.bb 
b/meta-python/recipes-devtools/python/python3-flask-jwt_0.3.2.bb
new file mode 100644
index 0..779a2e25e
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-jwt_0.3.2.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "JWT token authentication for Flask apps"
+HOMEPAGE = "https://github.com/mattupstate/flask-jwt;
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=ff00db41c47ec84b4567a8b3c246a959"
+
+PYPI_PACKAGE = "Flask-JWT"
+
+SRC_URI[md5sum] = "878ad79a12afa70ad38a12d5ffd2dc1e"
+SRC_URI[sha256sum] = 
"49c0672fbde0f1cd3374bd834918d28956e3c521c7e00089cdc5380d323bd0ad"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += "${PYTHON_PN}-pyjwt ${PYTHON_PN}-flask"
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84127): 
https://lists.openembedded.org/g/openembedded-devel/message/84127
Mute This Topic: https://lists.openembedded.org/mt/73326496/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[oe] [meta-python][PATCH 5/8] python3-speedtest-cli: Add recipe version 2.1.2

2020-04-28 Thread Domarys Correa
Signed-off-by: Domarys Correa 
---
 .../python/python3-speedtest-cli_2.1.2.bb | 11 +++
 1 file changed, 11 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.2.bb

diff --git a/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.2.bb 
b/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.2.bb
new file mode 100644
index 0..a901bbac8
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.2.bb
@@ -0,0 +1,11 @@
+SUMMARY = "Command line interface for testing internet bandwidth using 
speedtest.net"
+HOMEPAGE = "https://github.com/sivel/speedtest-cli;
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
+
+SRC_URI[md5sum] = "543d38f8939e1716641cc7c00169ca03"
+SRC_URI[sha256sum] = 
"cf1d386222f94c324e3125ba9a0d187e46d4a13dca08c023bdb9a23096be2e54"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} = "${PYTHON_PN}-misc"
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84130): 
https://lists.openembedded.org/g/openembedded-devel/message/84130
Mute This Topic: https://lists.openembedded.org/mt/73326501/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[oe] [meta-python][PATCH 3/8] python3-gunicorn: Add recipe version 20.0.4

2020-04-28 Thread Domarys Correa
Signed-off-by: Domarys Correa 
---
 .../python/python3-gunicorn_20.0.4.bb | 11 +++
 1 file changed, 11 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-gunicorn_20.0.4.bb

diff --git a/meta-python/recipes-devtools/python/python3-gunicorn_20.0.4.bb 
b/meta-python/recipes-devtools/python/python3-gunicorn_20.0.4.bb
new file mode 100644
index 0..5bd8d51c0
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-gunicorn_20.0.4.bb
@@ -0,0 +1,11 @@
+SUMMARY = "WSGI HTTP Server for UNIX"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=f75f3fb94cdeab1d607e2adaa6077752"
+
+SRC_URI[md5sum] = "543669fcbb5739ee2af77184c5e571a1"
+SRC_URI[sha256sum] = 
"1904bb2b8a43658807108d59c3f3d56c2b6121a701161de0ddf9ad140073c626"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += "${PYTHON_PN}-setuptools ${PYTHON_PN}-fcntl"
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84128): 
https://lists.openembedded.org/g/openembedded-devel/message/84128
Mute This Topic: https://lists.openembedded.org/mt/73326498/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[oe] [meta-python][PATCH 6/8] python3-spidev: Upgrade 3.2 -> 3.4

2020-04-28 Thread Domarys Correa
Signed-off-by: Domarys Correa 
---
 .../python/python3-spidev_3.4.bb | 16 
 1 file changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-spidev_3.4.bb

diff --git a/meta-python/recipes-devtools/python/python3-spidev_3.4.bb 
b/meta-python/recipes-devtools/python/python3-spidev_3.4.bb
new file mode 100644
index 0..334d658d6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-spidev_3.4.bb
@@ -0,0 +1,16 @@
+SUMMARY = "Python bindings for Linux SPI access through spidev"
+DESCRIPTION = "This project contains a python module for interfacing with SPI\
+devices from user space via the spidev linux kernel driver.\
+This is a modified version of the code originally found\
+[here](http://elk.informatik.fh-augsburg.de/da/da-49/trees/pyap7k/lang/py-spi)\
+All code is GPLv2 licensed unless explicitly stated otherwise."
+HOMEPAGE = "http://github.com/doceme/py-spidev;
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = 
"file://${COREBASE}/meta/files/common-licenses/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
+SRCNAME = "spidev"
+
+SRC_URI[md5sum] = "bbab6352449f1d572cc9eefeafc58bd1"
+SRC_URI[sha256sum] = 
"4314e52f573d95233c907f307558893313a8a606e197e77bb711526b0e179e80"
+
+inherit pypi setuptools3
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84131): 
https://lists.openembedded.org/g/openembedded-devel/message/84131
Mute This Topic: https://lists.openembedded.org/mt/73326503/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[oe] [meta-python][PATCH 7/8] python3-werkzeug: Upgrade 1.0.0 -> 1.0.1

2020-04-28 Thread Domarys Correa
Signed-off-by: Domarys Correa 
---
 .../python/python3-werkzeug_1.0.1.bb  | 38 +++
 1 file changed, 38 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-werkzeug_1.0.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-werkzeug_1.0.1.bb 
b/meta-python/recipes-devtools/python/python3-werkzeug_1.0.1.bb
new file mode 100644
index 0..b54399e1c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-werkzeug_1.0.1.bb
@@ -0,0 +1,38 @@
+SUMMARY = "The Swiss Army knife of Python web development"
+DESCRIPTION = "\
+Werkzeug started as simple collection of various utilities for WSGI \
+applications and has become one of the most advanced WSGI utility modules. \
+It includes a powerful debugger, full featured request and response objects, \
+HTTP utilities to handle entity tags, cache control headers, HTTP dates, \
+cookie handling, file uploads, a powerful URL routing system and a bunch \
+of community contributed addon modules."
+HOMEPAGE = "http://werkzeug.pocoo.org/;
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=5dc88300786f1c214c1e9827a5229462"
+
+PYPI_PACKAGE = "Werkzeug"
+
+SRC_URI[md5sum] = "5d499cfdd30de5d9c946994783772efd"
+SRC_URI[sha256sum] = 
"6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c"
+
+inherit pypi setuptools3
+
+CLEANBROKEN = "1"
+
+RDEPENDS_${PN} += " \
+${PYTHON_PN}-datetime \
+${PYTHON_PN}-difflib \
+${PYTHON_PN}-email \
+${PYTHON_PN}-html \
+${PYTHON_PN}-io \
+${PYTHON_PN}-json \
+${PYTHON_PN}-netclient \
+${PYTHON_PN}-netserver \
+${PYTHON_PN}-numbers \
+${PYTHON_PN}-pkgutil \
+${PYTHON_PN}-pprint \
+${PYTHON_PN}-simplejson \
+${PYTHON_PN}-threading \
+${PYTHON_PN}-unixadmin \
+${PYTHON_PN}-misc \
+"
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84132): 
https://lists.openembedded.org/g/openembedded-devel/message/84132
Mute This Topic: https://lists.openembedded.org/mt/73326505/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[oe] [meta-python][PATCH 4/8] python3-httplib2: Add recipe version 0.17.3

2020-04-28 Thread Domarys Correa
Signed-off-by: Domarys Correa 
---
 .../recipes-devtools/python/python3-httplib2_0.17.3.bb | 10 ++
 1 file changed, 10 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-httplib2_0.17.3.bb

diff --git a/meta-python/recipes-devtools/python/python3-httplib2_0.17.3.bb 
b/meta-python/recipes-devtools/python/python3-httplib2_0.17.3.bb
new file mode 100644
index 0..57047c9ac
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-httplib2_0.17.3.bb
@@ -0,0 +1,10 @@
+SUMMARY = "A comprehensive HTTP client library, httplib2 supports many 
features left out of other HTTP libraries."
+HOMEPAGE = "https://github.com/httplib2/httplib2;
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=4edb3f072a9d815734530f608039a167"
+
+SRC_URI[md5sum] = "5730490cfe83350477b54b0a8a190c8a"
+SRC_URI[sha256sum] = 
"39dd15a333f67bfb70798faa9de8a6e99c819da6ad82b77f9a259a5c7b1225a2"
+
+inherit pypi setuptools3
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84129): 
https://lists.openembedded.org/g/openembedded-devel/message/84129
Mute This Topic: https://lists.openembedded.org/mt/73326500/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[oe] [meta-python][PATCH 8/8] python3-nmap: Add recipe version 1.4.1

2020-04-28 Thread Domarys Correa
Signed-off-by: Domarys Correa 
---
 .../python/python3-nmap_1.4.1.bb | 16 
 1 file changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-nmap_1.4.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-nmap_1.4.1.bb 
b/meta-python/recipes-devtools/python/python3-nmap_1.4.1.bb
new file mode 100644
index 0..80384845d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-nmap_1.4.1.bb
@@ -0,0 +1,16 @@
+DESCRIPTION = "python-nmap is a python library which helps in using nmap port 
scanner"
+HOMEPAGE = "https://www.nmmapper.com/;
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = 
"file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
+
+DEPENDS += "${PYTHON_PN}-wheel-native"
+
+PYPI_PACKAGE = "python3-nmap"
+
+SRC_URI[md5sum] = "64a382c870e14b53f2f52b7455996321"
+SRC_URI[sha256sum] = 
"9b64c5956789f4cac9e8ea2e0de6763dea1cecde1a20ae50a4b4dc5ab0ab6e42"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += "nmap ${PYTHON_PN}-requests"
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84133): 
https://lists.openembedded.org/g/openembedded-devel/message/84133
Mute This Topic: https://lists.openembedded.org/mt/73326506/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[oe] [meta-python][PATCH 1/8] python3-flask-jsonpify: Add recipe version 1.5.0

2020-04-28 Thread Domarys Correa
Signed-off-by: Domarys Correa 
---
 .../python/python3-flask-jsonpify_1.5.0.bb | 14 ++
 1 file changed, 14 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-jsonpify_1.5.0.bb

diff --git 
a/meta-python/recipes-devtools/python/python3-flask-jsonpify_1.5.0.bb 
b/meta-python/recipes-devtools/python/python3-flask-jsonpify_1.5.0.bb
new file mode 100644
index 0..5d7e9b517
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-jsonpify_1.5.0.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "A Flask extension adding a decorator for JSONP support"
+HOMEPAGE = "https://github.com/CoryDolphin/flask-jsonpify;
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://README.rst;md5=bd59445a234a0c8250b39178d42e3148"
+
+PYPI_PACKAGE = "Flask-Jsonpify"
+
+SRC_URI[md5sum] = "8a10e37942c43d93d107644a3fe77d98"
+SRC_URI[sha256sum] = 
"8ac4c732aa5b11d9f6c2de58065d3b669f139518ca8f529bce943817e2fedbfb"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += "${PYTHON_PN}-flask"
-- 
2.17.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84126): 
https://lists.openembedded.org/g/openembedded-devel/message/84126
Mute This Topic: https://lists.openembedded.org/mt/73326495/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [oe] [meta-java][PATCH v2] openjdk-8: update to latest ga version 252

2020-04-28 Thread Jacob Kroon

Hi Richard,

On 4/28/20 8:14 AM, Richard Leitner wrote:

This patch also drops the md5 checksums as sha256 checksums are sufficient.

Signed-off-by: Richard Leitner 
---
CHANGES v2:
  + added missing openjre recipe update
---




Builds and runs fine on my setup.
Thanks,
Jacob
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84125): 
https://lists.openembedded.org/g/openembedded-devel/message/84125
Mute This Topic: https://lists.openembedded.org/mt/73322007/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[oe] [meta-java][PATCH v2] openjdk-8: update to latest ga version 252

2020-04-28 Thread Richard Leitner
This patch also drops the md5 checksums as sha256 checksums are sufficient.

Signed-off-by: Richard Leitner 
---
CHANGES v2:
 + added missing openjre recipe update
---
 ...-native_242.bb => openjdk-8-native_252.bb} |  0
 .../openjdk/openjdk-8-release-aarch32.inc | 26 +++
 .../openjdk/openjdk-8-release-aarch64.inc | 26 +++
 recipes-core/openjdk/openjdk-8-release.inc| 24 ++---
 .../{openjdk-8_242.bb => openjdk-8_252.bb}|  0
 .../{openjre-8_242.bb => openjre-8_252.bb}|  0
 6 files changed, 26 insertions(+), 50 deletions(-)
 rename recipes-core/openjdk/{openjdk-8-native_242.bb => 
openjdk-8-native_252.bb} (100%)
 rename recipes-core/openjdk/{openjdk-8_242.bb => openjdk-8_252.bb} (100%)
 rename recipes-core/openjdk/{openjre-8_242.bb => openjre-8_252.bb} (100%)

diff --git a/recipes-core/openjdk/openjdk-8-native_242.bb 
b/recipes-core/openjdk/openjdk-8-native_252.bb
similarity index 100%
rename from recipes-core/openjdk/openjdk-8-native_242.bb
rename to recipes-core/openjdk/openjdk-8-native_252.bb
diff --git a/recipes-core/openjdk/openjdk-8-release-aarch32.inc 
b/recipes-core/openjdk/openjdk-8-release-aarch32.inc
index 686b562..62dc866 100644
--- a/recipes-core/openjdk/openjdk-8-release-aarch32.inc
+++ b/recipes-core/openjdk/openjdk-8-release-aarch32.inc
@@ -4,39 +4,31 @@ COMPATIBLE_HOST = "^$"
 COMPATIBLE_HOST_armv7a = "arm"
 COMPATIBLE_HOST_armv7ve = "arm"
 
-CHANGESET_ID="200120"
+CHANGESET_ID="20200415"
 
 CORBA_CHANGESET_arm = "jdk8u${PV}-ga-aarch32-${CHANGESET_ID}"
-SRC_URI[corba.md5sum]= "2abf6d5394d9c5310af1e4ca6cec4355"
-SRC_URI[corba.sha256sum] = 
"52e83dfa2fa4fcc8c71f3b2959cca2136099b9c575d3726148c02b9cf7d06324"
+SRC_URI[corba.sha256sum] = 
"e8dab3ffbc39fec724604b8c65408f32dcca1682769077c5b4f71b571938fe26"
 
 HOTSPOT_CHANGESET_arm = "jdk8u${PV}-ga-aarch32-${CHANGESET_ID}"
-SRC_URI[hotspot.md5sum]= "e252af6c20d6190e0613f39c6066e3cc"
-SRC_URI[hotspot.sha256sum] = 
"bfff2ef23ee80acd73a0774e7011028c3598e75d2ee8b3271524ec8ea54801ae"
+SRC_URI[hotspot.sha256sum] = 
"7aebf690a05746e4fbcdcd75ac4e67acb2f0b087bba3bcb064675468626f5822"
 
 JAXP_CHANGESET_arm = "jdk8u${PV}-ga-aarch32-${CHANGESET_ID}"
-SRC_URI[jaxp.md5sum]= "56dc7a99589582b185c4464022c8"
-SRC_URI[jaxp.sha256sum] = 
"430e49ba485737c02312557f4deb8562853e58be19ed175ea63b396307f140ce"
+SRC_URI[jaxp.sha256sum] = 
"44883e0e836ee5fa2fcb4df936bafcfad69c57d05876d44ecefc5b3cb6b085c0"
 
 JAXWS_CHANGESET_arm = "jdk8u${PV}-ga-aarch32-${CHANGESET_ID}"
-SRC_URI[jaxws.md5sum]= "2bbcba759f24f5dcec0c33cd62382e4f"
-SRC_URI[jaxws.sha256sum] = 
"c350716ff8782cc311ca17450e2d198d707d3fb71de9dc3394df39766979559f"
+SRC_URI[jaxws.sha256sum] = 
"34f6cf3eb34c0c310e0cc31b876b189fd6b2e2c2dcc1066af5347f3a0873d2d3"
 
 JDK_CHANGESET_arm = "jdk8u${PV}-ga-aarch32-${CHANGESET_ID}"
-SRC_URI[jdk.md5sum]= "e17f3f4ea8a409e4a1b09a12b3b5309d"
-SRC_URI[jdk.sha256sum] = 
"dfa4a7e7f8ab8daf34343b1c33544b6209e422c74d5be1dbbd8ef80e2365c8aa"
+SRC_URI[jdk.sha256sum] = 
"f89688b5673ed75b1bebfd530a979788a4cbe942ce39eb38784f8c9e1303012b"
 
 LANGTOOLS_CHANGESET_arm = "jdk8u${PV}-ga-aarch32-${CHANGESET_ID}"
-SRC_URI[langtools.md5sum]= "06ca78c1d4e058f277876f4e6177d9b0"
-SRC_URI[langtools.sha256sum] = 
"59ccafa433f5510c91835efcafbe9ff9c707034ec3305dc3a4c1a85fac65ab0c"
+SRC_URI[langtools.sha256sum] = 
"18357720e3b924dea2f171235ae06e753aeef7958a3ce7a2a8d41fa6e2c90454"
 
 NASHORN_CHANGESET_arm = "jdk8u${PV}-ga-aarch32-${CHANGESET_ID}"
-SRC_URI[nashorn.md5sum]= "1958e204f3984abeb2cf9e7c57aa7839"
-SRC_URI[nashorn.sha256sum] = 
"e964721e539807a38bdcbce7259d235f873974a686badbc274b7368a288f0021"
+SRC_URI[nashorn.sha256sum] = 
"abd6ccf28278ce5775eebada339228fe2e3380d57d009179acdd7026adb21448"
 
 OPENJDK_CHANGESET_arm = "jdk8u${PV}-ga-aarch32-${CHANGESET_ID}"
-SRC_URI[openjdk.md5sum]= "9aceb3b4cd710cdda55be4fe6a5303c9"
-SRC_URI[openjdk.sha256sum] = 
"9691291b26a650d854ce0feacf32dfb3b956165c5d2db6e1ff46dd44f4c517cf"
+SRC_URI[openjdk.sha256sum] = 
"06d141aa01b80aa0c167167081e2139b3edf5af764cf17bbe9e1b57bf4f585ab"
 
 PACKAGECONFIG_append_armv7a = " client"
 PACKAGECONFIG_append_armv7ve = " client"
diff --git a/recipes-core/openjdk/openjdk-8-release-aarch64.inc 
b/recipes-core/openjdk/openjdk-8-release-aarch64.inc
index d08892d..86d 100644
--- a/recipes-core/openjdk/openjdk-8-release-aarch64.inc
+++ b/recipes-core/openjdk/openjdk-8-release-aarch64.inc
@@ -2,36 +2,28 @@ require openjdk-8-release-common.inc
 
 COMPATIBLE_HOST = "aarch64"
 
-CHANGESET_ID="b07"
+CHANGESET_ID="b09"
 
 CORBA_CHANGESET_aarch64 = "aarch64-shenandoah-jdk8u${PV}-${CHANGESET_ID}"
-SRC_URI[corba.md5sum]= "d6dfd6f0c3bf4c6dc1f867dc7bcf8730"
-SRC_URI[corba.sha256sum] = 
"e80dae94f21ca9de2269bc9de72f1098d417e9f7d6ff69d047e26669e31b1bc4"
+SRC_URI[corba.sha256sum] = 
"13ce2345dec4390a7ed61066275528c1d4fe246abb3ffc16bdfd93c0e8ead193"
 
 HOTSPOT_CHANGESET_aarch64 = "aarch64-shenandoah-jdk8u${PV}-${CHANGESET_ID}"
-SRC_URI[hotspot.md5sum]= 

Re: [oe] [meta-java][PATCH] openjdk-8: update to latest ga version 252

2020-04-28 Thread Richard Leitner
On Mon, Apr 27, 2020 at 10:26:25AM +0200, Jacob Kroon wrote:
> On 4/27/20 8:27 AM, Richard Leitner wrote:
> > fyi: This patch has been added to master-next.
> > 
> > Any test results are welcome!
> > 
> 
> I think this breaks building openjre:

Hi Jacob,

Thanks for the catch. I missed to add the openjre recipe to the patch.
My fault sorry.

A new patch version is on its way and the one on master-next will be
force updated.

regards;rl

> 
> > WARNING: openjdk-8-native-252-r0 do_fetch: Checksum mismatch for local file 
> > /home/jkroon/Downloads/yocto/openjdk8-252-langtools-jdk8u252-ga.tar.bz2
> > Cleaning and trying again.
> > WARNING: openjdk-8-native-252-r0 do_fetch: Renaming 
> > /home/jkroon/Downloads/yocto/openjdk8-252-langtools-jdk8u252-ga.tar.bz2 to 
> > /home/jkroon/Downloads/yocto/openjdk8-252-langtools-jdk8u252-ga.tar.bz2_bad-checksum_2cde0f920e96038c8fe27af3e802bcd90b894a2feb37fed0604cc53787807dfe
> > WARNING: openjre-8-242-r0 do_fetch: Checksum mismatch for local file 
> > /home/jkroon/Downloads/yocto/openjdk8-242-jdk8u-jdk8u242-ga.tar.bz2
> > Cleaning and trying again.
> > WARNING: openjre-8-242-r0 do_fetch: Renaming 
> > /home/jkroon/Downloads/yocto/openjdk8-242-jdk8u-jdk8u242-ga.tar.bz2 to 
> > /home/jkroon/Downloads/yocto/openjdk8-242-jdk8u-jdk8u242-ga.tar.bz2_bad-checksum_633f1d20d4d8d36fea1680140b5514ab153096a19c306b812fbbd19314c8dece
> > WARNING: openjre-8-242-r0 do_fetch: Checksum failure encountered with 
> > download of 
> > https://hg.openjdk.java.net/jdk8u/jdk8u/archive/jdk8u242-ga.tar.bz2;downloadfilename=openjdk8-242-jdk8u-jdk8u242-ga.tar.bz2;name=openjdk
> >  - will attempt other sources if available
> > ERROR: openjre-8-242-r0 do_fetch: Fetcher failure for URL: 
> > 'https://hg.openjdk.java.net/jdk8u/jdk8u/archive/jdk8u242-ga.tar.bz2;downloadfilename=openjdk8-242-jdk8u-jdk8u242-ga.tar.bz2;name=openjdk'.
> >  Checksum mismatch!
> > File: '/home/jkroon/Downloads/yocto/openjdk8-242-jdk8u-jdk8u242-ga.tar.bz2' 
> > has sha256 checksum 
> > 633f1d20d4d8d36fea1680140b5514ab153096a19c306b812fbbd19314c8dece when 
> > a83f8daa2afece63bf7ae95cfbca91ef765424c40b9f5b45e4a3c2d4da0f7a95 was 
> > expected
> > If this change is expected (e.g. you have upgraded to a new version without 
> > updating the checksums) then you can use these lines within the recipe:
> > SRC_URI[openjdk.sha256sum] = 
> > "633f1d20d4d8d36fea1680140b5514ab153096a19c306b812fbbd19314c8dece"
> > Otherwise you should retry the download and/or check with upstream to 
> > determine if the file has become corrupted or otherwise unexpectedly 
> > modified.
> > ERROR: openjre-8-242-r0 do_fetch: Fetcher failure for URL: 
> > 'https://hg.openjdk.java.net/jdk8u/jdk8u/archive/jdk8u242-ga.tar.bz2;downloadfilename=openjdk8-242-jdk8u-jdk8u242-ga.tar.bz2;name=openjdk'.
> >  Unable to fetch URL from any source.
> > ERROR: Logfile of failure stored in: 
> > /tmp/ramdisk/tmp-master-glibc/work/i686-oe-linux/openjre-8/242-r0/temp/log.do_fetch.15248
> > ERROR: Task 
> > (/home/jkroon/Projects/tmp-linux/build/../meta-java/recipes-core/openjdk/openjre-8_242.bb:do_fetch)
> >  failed with exit code '1'
> > Waiting for 1 running tasks to finish:
> > 0: openjdk-8-native-252-r0 do_fetch (pid 15246)   0% |
> 
> /Jacob

> 

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#84123): 
https://lists.openembedded.org/g/openembedded-devel/message/84123
Mute This Topic: https://lists.openembedded.org/mt/73145297/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-