Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-19 Thread richard . purdie
On Thu, 2018-09-20 at 09:45 +0800, Hongxu Jia wrote: > I will fix it as my top priority today. > > Reproduce steps: > > - Build core-image-sato-sdk on qemuarm64 > - Run qemu > - Log over ssh (openssh) failed > I did have a little bit of a look at this. It seems to hang during key generation

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-19 Thread richard . purdie
On Thu, 2018-09-20 at 09:45 +0800, Hongxu Jia wrote: > On 2018年09月20日 09:07, richard.pur...@linuxfoundation.org wrote: > > On Wed, 2018-09-19 at 19:59 +0800, Hongxu Jia wrote: > > Thanks for this. Unfortunately I think we still have some kind of a > > problem on qemuarm64 since with this patch, we

[OE-core] [PATCH 1/2] linuxloader.bbclass: Refactor to have seprate functions for musl/glibc loader

2018-09-19 Thread Khem Raj
this makes it possible to use this for musl where we are trying to create a glibc compat package Add missing aarch64 loader definition for glibc function Signed-off-by: Khem Raj --- meta/classes/linuxloader.bbclass | 85 ++-- 1 file changed, 49 insertions(+), 36

[OE-core] [PATCH V3 2/2] musl: Add aliases for glibc provided libraries

2018-09-19 Thread Khem Raj
This is a step towards running pebuilt applications for glibc on musl There are many realworld applications which are not always built from source, especially provided by third party Package the glibc symlinks into new package musl-glibc-compat Signed-off-by: Khem Raj --- V3: Inherit

[OE-core] [PATCH V2] dbus-test: fix ptest failed problem when multilib is enabled

2018-09-19 Thread changqing.li
From: Changqing Li Fix some failed info like: | ./test/test-bus: relocation error: ./test/test-bus: symbol | _dbus_threads_init_debug, version LIBDBUS_PRIVATE_1.10.10 not defined | in file libdbus-1.so.3 with link time reference | FAIL: test/test-bus In run-ptest, LD_LIBRARY_PATH is set to

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-19 Thread Hongxu Jia
On 2018年09月20日 09:07, richard.pur...@linuxfoundation.org wrote: On Wed, 2018-09-19 at 19:59 +0800, Hongxu Jia wrote: - Convert from tarball to git repository which support openssl 1.1.x - There is no specific minor version that contains the openssl fix (it was merged to master a few days

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-19 Thread richard . purdie
On Wed, 2018-09-19 at 19:59 +0800, Hongxu Jia wrote: > - Convert from tarball to git repository which support > openssl 1.1.x > > - There is no specific minor version that contains the > openssl fix (it was merged to master a few days agao), > rename recipe version to `7.8p1+git' > > - Fix

Re: [OE-core] [PATCH] dbus-test: fix ptest failed problem when multilib is enabled

2018-09-19 Thread Changqing Li
On 09/19/2018 05:59 PM, Burton, Ross wrote: Surely a better/safer replacement would be to change run-ptest to: -export LD_LIBRARY_PATH=/usr/lib/dbus-test/ptest/test/.libs +export LD_LIBRARY_PATH=@PTEST_PATH%/test/.libs And then substitute that. Replacing in baselib doesn't help if the

Re: [OE-core] [PATCH] rpm: handle virtual memory usage when limit is set

2018-09-19 Thread Andre McCurdy
On Wed, Sep 19, 2018 at 2:05 PM, Peter Bergin wrote: > Fix the situation where the task do_package_write_rpm ends up in > "liblzma: memory allocation failed". This happens if the host > environment has set a limit on virtual_memory for the user with > 'ulimit -v' for packages with a lot of binary

Re: [OE-core] [PATCH] rpm: handle virtual memory usage when limit is set

2018-09-19 Thread Alexander Kanavin
2018-09-19 23:05 GMT+02:00 Peter Bergin : > Fix the situation where the task do_package_write_rpm ends up in > "liblzma: memory allocation failed". This happens if the host > environment has set a limit on virtual_memory for the user with > 'ulimit -v' for packages with a lot of binary packages,

[OE-core] ✗ patchtest: failure for rpm: handle virtual memory usage when limit is set

2018-09-19 Thread Patchwork
== Series Details == Series: rpm: handle virtual memory usage when limit is set Revision: 1 URL : https://patchwork.openembedded.org/series/14150/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have

[OE-core] [PATCH] rpm: handle virtual memory usage when limit is set

2018-09-19 Thread Peter Bergin
Fix the situation where the task do_package_write_rpm ends up in "liblzma: memory allocation failed". This happens if the host environment has set a limit on virtual_memory for the user with 'ulimit -v' for packages with a lot of binary packages, e.g. glibc-locale. Upstream-Status: Inappropriate

Re: [OE-core] [PATCH] ghostscript: upgrade to 9.25

2018-09-19 Thread Randy MacLeod
On 09/17/2018 12:44 PM, Jagadeesh Krishnanjanappa wrote: Removed below patches, as v9.25 source already has those changes/security fixes: 0001-Bug-699665-memory-corruption-in-aesdecode.patch 0001-pdfwrite-Guard-against-trying-to-output-an-infinite-.patch

Re: [OE-core] [PATCH V2 2/2] musl: Add aliases for glibc provided libraries

2018-09-19 Thread Richard Purdie
On Wed, 2018-09-19 at 11:55 -0700, Khem Raj wrote: > This is a step towards running pebuilt applications for glibc on > musl > There are many realworld applications which are not always built from > source, especially provided by third party > > Package the glibc symlinks into new package

[OE-core] [PATCH V2 2/2] musl: Add aliases for glibc provided libraries

2018-09-19 Thread Khem Raj
This is a step towards running pebuilt applications for glibc on musl There are many realworld applications which are not always built from source, especially provided by third party Package the glibc symlinks into new package musl-glibc-compat Signed-off-by: Khem Raj --- V2 - Package new

[OE-core] [PATCH 1/2] mtools: Fix build with clang

2018-09-19 Thread Khem Raj
Identify with __clang__ to undefine UNUSED Signed-off-by: Khem Raj --- .../mtools/mtools/clang_UNUSED.patch| 17 + meta/recipes-devtools/mtools/mtools_4.0.18.bb | 1 + 2 files changed, 18 insertions(+) create mode 100644

Re: [OE-core] [PATCH v3] python3{,-native}: update to 3.7.0

2018-09-19 Thread Alejandro Hernandez
I am aware dnf needs an update, but in the meantime you can't break functionality of other components of the build system when upgrading a certain component, we either need a patch to dnf to fix compatibility or the upgrade to dnf as well. Alejandro On 9/19/2018 1:44 AM, Jens Rehsack wrote:

[OE-core] [PATCH v3 1/3] python: don't sort the manifest in create_manifest

2018-09-19 Thread Andrew Geissler
Instead of sorting the entire manifest when it is updated, use OrderedDict to preserve the order of fields.This means that packages can be ordered in the manifest to allow non-trivial FILES assignments (such as a package that picks up pieces of other packages) The manifest has been regenerated

[OE-core] [PATCH v3 3/3] python: consolidate tests

2018-09-19 Thread Andrew Geissler
Currently the bulk of the tests in python-tests, some more in python-sqlite3-tests, and others in their parent module (such as python-ctypes). This is pointless space usage if we're not planning on running the tests, so consolidate all the tests into python-tests. This is a backport of the same

[OE-core] [PATCH] gnupg: patch gnupg-native to allow path relocation

2018-09-19 Thread Ross Burton
GnuPG hard-codes $bindir etc and uses them to find the helper binaries, such as gpg-agent. This breaks if gnupg-native is reused from sstate for a different build directory and GPG signing of packages is required. Patch in getenv() checks for gnupg-native when returning the hardcoded paths, and

[OE-core] [PATCH 2/2] yocto-uninative: Add aarch64 uninative tarball checksum

2018-09-19 Thread Richard Purdie
Signed-off-by: Richard Purdie --- meta/conf/distro/include/yocto-uninative.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/conf/distro/include/yocto-uninative.inc b/meta/conf/distro/include/yocto-uninative.inc index 38080c63b58..180d4e54baa 100644 ---

[OE-core] [PATCH 1/2] uninative: Add support for aarch64 hosts

2018-09-19 Thread Richard Purdie
Signed-off-by: Richard Purdie --- meta/classes/uninative.bbclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass index de2221a3655..ba99fb6e8fd 100644 --- a/meta/classes/uninative.bbclass +++

Re: [OE-core] [PATCH] openssh: resolve install conflict with openssh-sftp-server-dev

2018-09-19 Thread Richard Purdie
On Wed, 2018-09-19 at 17:11 +0200, Andreas Oberritter wrote: > On Wed, 19 Sep 2018 08:41:35 +0200 > Urs Fässler wrote: > > > Image generation fails with the configuration: > > EXTRA_IMAGE_FEATURES = "ssh-server-dropbear eclipse-debug dev- > > pkgs" > > This is due the dependency eclipse-debug

Re: [OE-core] [PATCH] openssh: resolve install conflict with openssh-sftp-server-dev

2018-09-19 Thread Andreas Oberritter
On Wed, 19 Sep 2018 08:41:35 +0200 Urs Fässler wrote: > Image generation fails with the configuration: > EXTRA_IMAGE_FEATURES = "ssh-server-dropbear eclipse-debug dev-pkgs" > This is due the dependency eclipse-debug -> openssh-sftp-server -> > openssh-dev -> openssh. openssh can not be

[OE-core] ✗ patchtest: failure for "python: don't sort the manifes..." and 2 more (rev2)

2018-09-19 Thread Patchwork
== Series Details == Series: "python: don't sort the manifes..." and 2 more (rev2) Revision: 2 URL : https://patchwork.openembedded.org/series/14085/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests

[OE-core] [PATCH 1/3] python: don't sort the manifest in create_manifest

2018-09-19 Thread Andrew Geissler
Instead of sorting the entire manifest when it is updated, use OrderedDict to preserve the order of fields.This means that packages can be ordered in the manifest to allow non-trivial FILES assignments (such as a package that picks up pieces of other packages) The manifest has been regenerated

Re: [OE-core] [PATCH 2/3] python: respect package order in manifest

2018-09-19 Thread Andrew Geissler
On Wed, Sep 19, 2018 at 6:08 AM Burton, Ross wrote: > > Close, but: > > ERROR: python-2.7.15-r1 do_package_qa: QA Issue: non -staticdev > package contains static .a library: python-distutils path >

Re: [OE-core] [PATCH] staging: remove hard-coded values from _FIXMEs

2018-09-19 Thread Andrej Valek
Hi Richard, I have sent this patch, because of modification this replacement. What about adding TMPDIR into this hard-coded array? I think, even if it isn't added into EXTRA_STAGING_FIXMES it shouldn't influence default behavior. Regards, Andrej On 9/18/18 2:03 PM, Richard Purdie wrote: > On

[OE-core] [PATCH] dropbear: remove localoptions.h in source searching

2018-09-19 Thread Andrej Valek
- localoptions.h is automatically searched in build directory Signed-off-by: Andrej Valek --- meta/recipes-core/dropbear/dropbear.inc| 1 - .../0007-fix-localoptions-search-path.patch| 51 -- 2 files changed, 52 deletions(-) delete mode 100644

[OE-core] [PATCH] wayland-protocols: update to 1.16

2018-09-19 Thread Oleksandr Kravchuk
Updated package to v1.16 to match the currently used Wayland version. Signed-off-by: Oleksandr Kravchuk --- .../{wayland-protocols_1.15.bb => wayland-protocols_1.16.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/wayland/{wayland-protocols_1.15.bb =>

Re: [OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-19 Thread Hongxu Jia
The ptest steps: [local.conf] MACHINE = "qemux86-64" IMAGE_INSTALL_append = " openssh" DISTRO_FEATURES_append = " ptest" EXTRA_IMAGE_FEATURES += "ptest-pkgs" [local.conf] $ bitbake core-image-minimal $ runqemu qemux86-64 core-image-minimal nographic slirp Here is the ptest result:

[OE-core] [PATCH V2 1/2] openssh: upgrade 7.8p1 -> 7.8p1+git to support openssl 1.1.x

2018-09-19 Thread Hongxu Jia
- Convert from tarball to git repository which support openssl 1.1.x - There is no specific minor version that contains the openssl fix (it was merged to master a few days agao), rename recipe version to `7.8p1+git' - Fix regression test binaries missing In commit `1f7aaf7 openssh: build

[OE-core] [PATCH 2/2] libressl: remove recipe

2018-09-19 Thread Hongxu Jia
Since openssh support oepnssl 1.1.x, there is no reason to keep libressl. Signed-off-by: Hongxu Jia --- meta/conf/distro/include/maintainers.inc | 1 - ...c-libraries-with-their-library-dependenci.patch | 73 -- .../libressl/libressl_2.8.0.bb |

[OE-core] ✗ patchtest: failure for "coreutils: update printenv's A..." and 2 more (rev3)

2018-09-19 Thread Patchwork
== Series Details == Series: "coreutils: update printenv's A..." and 2 more (rev3) Revision: 3 URL : https://patchwork.openembedded.org/series/14095/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests

[OE-core] [PATCHv4] glibc: fix build with -O

2018-09-19 Thread Martin Jansa
* tested for qemuarm, qemux86 with -O, -O0, -Os, with gcc * to build with -O0 I had to remove restriction from systemtap first Signed-off-by: Martin Jansa --- meta/recipes-core/glibc/glibc.inc | 12 --- ...4-prevent-maybe-uninitialized-errors.patch | 95 +++

[OE-core] [PATCHv3] glibc: fix build with -O

2018-09-19 Thread Martin Jansa
* tested for qemuarm, qemux86 with -O, -O0, -Os, with gcc * to build with -O0 I had to remove restriction from systemtap first Signed-off-by: Martin Jansa --- meta/recipes-core/glibc/glibc.inc | 12 --- ...4-prevent-maybe-uninitialized-errors.patch | 95 +++

Re: [OE-core] [PATCH] connman: update to 1.36

2018-09-19 Thread Alexander Kanavin
I am sorry, but they were not upstreamed. Your commit does not remove the content of those two patches, it just squashes them all together in one patch with the third one, losing the two commit messages in the process: - configure.ac | 1 + - gdhcp/client.c | 1 - - plugins/tist.c | 1

Re: [OE-core] [PATCH 2/3] python: respect package order in manifest

2018-09-19 Thread Burton, Ross
Close, but: ERROR: python-2.7.15-r1 do_package_qa: QA Issue: non -staticdev package contains static .a library: python-distutils path '/work/corei7-64-poky-linux/python/2.7.15-r1/packages-split/python-distutils/usr/lib/python2.7/config/libpython2.7.a' [staticdev] Ross On Fri, 14 Sep 2018 at

[OE-core] ✗ patchtest: failure for "coreutils: update printenv's A..." and 2 more (rev2)

2018-09-19 Thread Patchwork
== Series Details == Series: "coreutils: update printenv's A..." and 2 more (rev2) Revision: 2 URL : https://patchwork.openembedded.org/series/14095/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests

Re: [OE-core] [PATCH] connman: update to 1.36

2018-09-19 Thread Oleksandr Kravchuk
Those two patches were mainstreamed, which will be described in the new commit message as was requested. On Wed, Sep 19, 2018 at 9:49 AM, Alexander Kanavin wrote: > Well, no. The patch file contains three different patches, all fixing > different things, and this information about the second

[OE-core] [PATCHv2] glibc: fix build with -O

2018-09-19 Thread Martin Jansa
* tested for qemuarm, qemux86 with -O, -O0, -Os, with gcc * to build with -O0 I had to remove restriction from systemtap first Signed-off-by: Martin Jansa --- meta/recipes-core/glibc/glibc.inc | 12 --- ...4-prevent-maybe-uninitialized-errors.patch | 95 +++

Re: [OE-core] [PATCH 3/3] glibc: fix build with -O

2018-09-19 Thread Martin Jansa
I've submitted them now: https://www.sourceware.org/ml/libc-alpha/2018-09/msg00299.html https://www.sourceware.org/ml/libc-alpha/2018-09/msg00300.html I didn't update the Upstream-Status, because it would cause whole world to rebuild again. On Wed, Sep 19, 2018 at 6:13 AM Khem Raj wrote: >

Re: [OE-core] [PATCH] dbus-test: fix ptest failed problem when multilib is enabled

2018-09-19 Thread Burton, Ross
Surely a better/safer replacement would be to change run-ptest to: -export LD_LIBRARY_PATH=/usr/lib/dbus-test/ptest/test/.libs +export LD_LIBRARY_PATH=@PTEST_PATH%/test/.libs And then substitute that. Replacing in baselib doesn't help if the distro changes PTEST_PATH. Ross On Wed, 19 Sep 2018

Re: [OE-core] [PATCH 0/3 v5] udev-extraconf/mount.sh: add systemd-mount command for systemd

2018-09-19 Thread Hongzhi, Song
Sorry for ping. The patch has been merged. --Hongzhi On 09/19/2018 05:37 PM, Hongzhi, Song wrote: ping.. --Hongzhi On 09/16/2018 01:45 PM, Hongzhi.Song wrote: v5: perfect a few codes based on v4 v4: fix the recursively dependency for the systemd-mount v3: perfect syntax

Re: [OE-core] [PATCH 0/3 v5] udev-extraconf/mount.sh: add systemd-mount command for systemd

2018-09-19 Thread Hongzhi, Song
ping.. --Hongzhi On 09/16/2018 01:45 PM, Hongzhi.Song wrote: v5: perfect a few codes based on v4 v4: fix the recursively dependency for the systemd-mount v3: perfect syntax Hongzhi.Song (3): udev-extraconf/mount.sh: add support to systemd udev-extraconf/mount.sh: Fix the

[OE-core] [PATCH v4] distutils{, 3}.bbclass: improve error messages

2018-09-19 Thread Jens Rehsack
For non-python developers it's difficult to identify where start searching in case of errors. Fixing and marking the string to grep for might help finding some root causes of issues slightly quicker. Signed-off-by: Jens Rehsack --- meta/classes/distutils.bbclass | 8

[OE-core] [PATCH v4] python3{,-native}: update to 3.7.0

2018-09-19 Thread Jens Rehsack
Update python3 to recent 3.7.0 release. Details about new features and bug-fixes can be taken from * https://docs.python.org/3/whatsnew/3.7.html * https://docs.python.org/3/whatsnew/3.6.html Remove patches when they were fixed upstream and rebase the remaining ones. If necessary, the patches are

[OE-core] [PATCH] openssh: resolve install conflict with openssh-sftp-server-dev

2018-09-19 Thread Urs Fässler
Image generation fails with the configuration: EXTRA_IMAGE_FEATURES = "ssh-server-dropbear eclipse-debug dev-pkgs" This is due the dependency eclipse-debug -> openssh-sftp-server -> openssh-dev -> openssh. openssh can not be installed since it conflicts with dropbear. By adding the package

[OE-core] [PATCH 1/2] oeqa/core/runner: enable oeqa to write testresult into json file

2018-09-19 Thread Yeoh Ee Peng
To enable future QA work, we need the oeqa testresult to be written into json files, which will be used by the future test case management tools, where these testresult json files will be stored into git repository for test reporting. Also this oeqa framework will be used by the future test case

[OE-core] [PATCH 2/2] oeqa/selftest/context: enable selftest to write json testresult

2018-09-19 Thread Yeoh Ee Peng
To enable selftest to write testresult into json files, where these json files will be used by future test case management tools for test reporting. Signed-off-by: Yeoh Ee Peng --- meta/lib/oeqa/selftest/context.py | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git

Re: [OE-core] [PATCH] test-result-log: testcase management tool to store test result

2018-09-19 Thread Yeoh, Ee Peng
Hi Richard, To address the maintainable concern, I had restructured the codes in order to enable oeqa framework to write out a json file directly for testresult. Attached were the patches to enble oeqa framework to write testresult into json files, where these files will later be used by the

Re: [OE-core] [PATCH v3] python3{,-native}: update to 3.7.0

2018-09-19 Thread Jens Rehsack
That has already been discussed, dnf needs an update. Am Mi., 19. Sep. 2018 um 08:50 Uhr schrieb Alejandro Hernandez : > > Hey Jens, > > Apart from the python3-native incomplete build which we discussed before > and is still there, this is still breaking dnf, hence producing an error > when

[OE-core] [PATCH] openssl10: fix compile error for debian-mips64

2018-09-19 Thread changqing.li
From: Changqing Li Current configuration for debian-mips64 is not correct, 'SIXTY_FOUR_BIT_LONG' need to be specified. otherwise, it will cause other recipe like crda compile failed since use default THIRTY_TWO_BIT mode. Signed-off-by: Changqing Li ---

[OE-core] [PATCH] dbus-test: fix ptest failed problem when multilib is enabled

2018-09-19 Thread changqing.li
From: Changqing Li Fix some failed info like: | ./test/test-bus: relocation error: ./test/test-bus: symbol | _dbus_threads_init_debug, version LIBDBUS_PRIVATE_1.10.10 not defined | in file libdbus-1.so.3 with link time reference | FAIL: test/test-bus In run-ptest, LD_LIBRARY_PATH is set to

Re: [OE-core] [PATCH] openssh: upgrade 7.8p1 -> 7.8p2 to support openssl 1.1.x

2018-09-19 Thread Hongxu Jia
On 2018年09月19日 11:46, Khem Raj wrote: On Tue, Sep 18, 2018 at 8:12 PM Hongxu Jia wrote: - Convert from tarball to git repository which support openssl 1.1.x - There is no specific minor version that contains the openssl fix (it was merged to master a few days agao), but their next

Re: [OE-core] [PATCH] openssh: upgrade 7.8p1 -> 7.8p2 to support openssl 1.1.x

2018-09-19 Thread Hongxu Jia
On 2018年09月19日 16:01, Alexander Kanavin wrote: 2018-09-19 5:22 GMT+02:00 Hongxu Jia : - Convert from tarball to git repository which support openssl 1.1.x - There is no specific minor version that contains the openssl fix (it was merged to master a few days agao), but their next minor

[OE-core] [PATCH] initramfs-framework/udev: call settle before kill

2018-09-19 Thread Anuj Mittal
When mount command is executed in rootfs module of initrd, eudev creates a loop0 device node, applies rules and adds a inotify watch to it. Right after this step, we execute finish which first tries to kill any running udevd daemon before doing a switch_root. In some cases, it is possible that

Re: [OE-core] [PATCH] openssh: upgrade 7.8p1 -> 7.8p2 to support openssl 1.1.x

2018-09-19 Thread Alexander Kanavin
2018-09-19 5:22 GMT+02:00 Hongxu Jia : > - Convert from tarball to git repository which support > openssl 1.1.x > > - There is no specific minor version that contains the > openssl fix (it was merged to master a few days agao), > but their next minor version will be p2. That version does

Re: [OE-core] [PATCH] connman: update to 1.36

2018-09-19 Thread Alexander Kanavin
Well, no. The patch file contains three different patches, all fixing different things, and this information about the second and third one for instance has vanished: -From b8b7878e6cb2a1ed4fcfa256f7e232511a40e3d9 Mon Sep 17 00:00:00 2001 -From: Ross Burton -Date: Tue, 9 Aug 2016 15:37:50 +0100

Re: [OE-core] [PATCH v2] python3{,-native}: update to 3.7.0

2018-09-19 Thread Alejandro Hernandez
On 9/17/2018 12:00 PM, Jens Rehsack wrote: Hi Alejandro, Am Mi., 12. Sep. 2018 um 23:03 Uhr schrieb Alejandro Hernandez : Hello Jens, On 9/12/2018 4:53 AM, Jens Rehsack wrote: Am 11.09.2018 um 20:56 schrieb Alejandro Enedino Hernandez Samaniego : Hey Jens, Hey Alejandro, On 09/10/2018