Re: [oe] [meta-oe][PATCH] gd: Replace strncpy with memccpy to fix -Wstringop-truncation.

2018-06-19 Thread Robert Yang
On 06/20/2018 10:28 AM, Khem Raj wrote: On Tue, Jun 19, 2018 at 7:14 PM Robert Yang wrote: Fixed: git/src/gdft.c:1699:2: error: 'strncpy' output truncated before terminating nul copying as many bytes from a string as its length [-Werror=stringop-truncation] Signed-off-by: Robert Yang

Re: [oe] [meta-oe][PATCH] gd: Replace strncpy with memccpy to fix -Wstringop-truncation.

2018-06-19 Thread Khem Raj
On Tue, Jun 19, 2018 at 7:14 PM Robert Yang wrote: > > Fixed: > git/src/gdft.c:1699:2: error: 'strncpy' output truncated before terminating > nul copying as many bytes from a string as its length > [-Werror=stringop-truncation] > > Signed-off-by: Robert Yang > --- >

[oe] [meta-oe][PATCH] gd: Replace strncpy with memccpy to fix -Wstringop-truncation.

2018-06-19 Thread Robert Yang
Fixed: git/src/gdft.c:1699:2: error: 'strncpy' output truncated before terminating nul copying as many bytes from a string as its length [-Werror=stringop-truncation] Signed-off-by: Robert Yang --- ...gdft.c-Replace-strncpy-with-memccpy-to-fi.patch | 46 ++

Re: [oe] [PATCH] devmem2: ensure word is 32-bit, add support for 64-bit double

2018-06-19 Thread Andre McCurdy
On Tue, Jun 19, 2018 at 4:42 PM, Denys Dmytriyenko wrote: > From: Denys Dmytriyenko > > Since sizeof(unsigned long) can be 8-byte on 64-bit architectures, use > uint32_t instead for "word" access to always be 4-byte/32-bit long. > > Also introduce proper "double" 8-byte/64-bit access by using

[oe] [PATCH] devmem2: ensure word is 32-bit, add support for 64-bit double

2018-06-19 Thread Denys Dmytriyenko
From: Denys Dmytriyenko Since sizeof(unsigned long) can be 8-byte on 64-bit architectures, use uint32_t instead for "word" access to always be 4-byte/32-bit long. Also introduce proper "double" 8-byte/64-bit access by using uint64_t. Signed-off-by: Denys Dmytriyenko ---

[oe] [meta-qt5][PATCH] libvcard: add recipe

2018-06-19 Thread Matt Porter
* Build tested for qemux86-64. Signed-off-by: Matt Porter --- recipes-connectivity/libvcard/libvcard_git.bb | 15 +++ 1 file changed, 15 insertions(+) create mode 100644 recipes-connectivity/libvcard/libvcard_git.bb diff --git a/recipes-connectivity/libvcard/libvcard_git.bb

[oe] meta-python/python-scipy

2018-06-19 Thread Maxime Roussin-Bélanger
Has anyone been able to have some sort of a breakthrough to build python-scipy? I'm trying to build python-scipy on a x86-64generic MACHINE and I reached math-atlas fun... I couldn't find any math-atlas recipe... at this point I think it might be a lot easier to build an ISO with a preseed

Re: [oe] [meta-xfce][PATCH] xfce4-panel: fix QA issue 'installed-vs-shipped'

2018-06-19 Thread Khem Raj
On Tue, Jun 19, 2018 at 2:53 AM Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Mon, 2018-06-18 at 19:25 -0400, Mark Asselstine wrote: > > On Mon, Jun 18, 2018 at 6:27 PM, Andreas Müller > com> wrote: > > > On Mon, Jun 18, 2018 at 11:42 PM, Richard Purdie > > > wrote: > > >

[oe] [meta-java][PATCH] TODO: add file

2018-06-19 Thread Richard Leitner
Add a new "TODO" file listing issues which should be done in the future and mention it in the README file. Signed-off-by: Richard Leitner --- README | 3 ++- TODO | 26 ++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 TODO diff --git a/README

[oe] [meta-java][PATCH v2] 3/3] README: add "Testing" section

2018-06-19 Thread Richard Leitner
Add new "Testing" section in README where we describe how meta-java tests may be used. Signed-off-by: Richard Leitner --- README | 16 1 file changed, 16 insertions(+) diff --git a/README b/README index b66df64..17a25e7 100644 --- a/README +++ b/README @@ -57,6 +57,22 @@ Main

[oe] [meta-java][PATCH v2] 2/3] images/classes: add open{jdk, jre}-{7, 8} test

2018-06-19 Thread Richard Leitner
Add image classes and images for open{jdk,jre}-{7,8} oeqa tests. These will be the basis for future "quality gates". Signed-off-by: Richard Leitner --- classes/openjdk-test-image.bbclass| 5 + classes/openjre-test-image.bbclass| 9 +

[oe] [meta-java][PATCH v2] 0/3] Add openjdk oeqa tests

2018-06-19 Thread Richard Leitner
This patch-series adds tests and images for openjdk and openjre. They will be the basis of future quality gates for accepting patches. Changes v2: + Add "Testing" section to README + Adapt dependencies of java jar tests to "java_exists" Richard Leitner (3): oeqa: runtime: add java & javac

[oe] [meta-java][PATCH v2] 1/3] oeqa: runtime: add java & javac testcases

2018-06-19 Thread Richard Leitner
These testcases verify that java and javac are working. They will be used as "quality-gate" test for accepting patches in the future. Signed-off-by: Richard Leitner --- lib/oeqa/files/test.jar | Bin 0 -> 8164 bytes lib/oeqa/files/test.java| 8 ++

Re: [oe] [meta-oe][PATCH V2 1/1] syslog-ng: fix build without json

2018-06-19 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-devel-boun...@lists.openembedded.org > [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of > Andre McCurdy > Sent: den 15 juni 2018 21:04 > To: Joe Slater > Cc: openembeded-devel > Subject: Re: [oe] [meta-oe][PATCH V2 1/1]

Re: [oe] [meta-xfce][PATCH] xfce4-panel: fix QA issue 'installed-vs-shipped'

2018-06-19 Thread Richard Purdie
On Mon, 2018-06-18 at 19:25 -0400, Mark Asselstine wrote: > On Mon, Jun 18, 2018 at 6:27 PM, Andreas Müller com> wrote: > > On Mon, Jun 18, 2018 at 11:42 PM, Richard Purdie > > wrote: > > Off-Topic / FYI for me gmail considered your email spam > > > > > > Removing the libtool files became the

[oe] [PATCH] [meta-oe] syslog-ng: fix syslog-ng startup problem with systemd

2018-06-19 Thread Changqing Li
1. Fix syslog-ng service cannot startup after upgrade to 3.15.1 1) Align path of syslog-ng.conf between syslog-ng@default and do_install in syslog-ng.inc 2) create a default instance for syslog-ng 3) Install default parameter file to /etc/default according to

Re: [oe] [meta-java][PATCH] set SUMMARY instead of DESCRIPTION

2018-06-19 Thread Richard Leitner
Hi, this is a note to let you know that I've just added this patch to the master-next branch of the meta-java repository at git://git.yoctoproject.org/meta-java As soon as it has gone through some more testing it will likely be merged to the master branch. If you have any questions,

Re: [oe] [meta-java][PATCH] libecj-bootstrap-native: simplify build

2018-06-19 Thread Richard Leitner
Hi, this is a note to let you know that I've just added this patch to the master-next branch of the meta-java repository at git://git.yoctoproject.org/meta-java As soon as it has gone through some more testing it will likely be merged to the master branch. If you have any questions,

Re: [oe] [meta-java][PATCH] classpath: harmonise -native and -initial-native recipes

2018-06-19 Thread Richard Leitner
Hi, this is a note to let you know that I've just added this patch to the master-next branch of the meta-java repository at git://git.yoctoproject.org/meta-java As soon as it has gone through some more testing it will likely be merged to the master branch. If you have any questions,

Re: [oe] [meta-java][PATCH] docs: add bootstrap-flow.txt

2018-06-19 Thread Richard Leitner
Hi, this is a note to let you know that I've just added this patch to the master-next branch of the meta-java repository at git://git.yoctoproject.org/meta-java As soon as it has gone through some more testing it will likely be merged to the master branch. If you have any questions,

Re: [oe] [meta-java][PATCH] openjdk-8: give downloaded files a more descriptive name

2018-06-19 Thread Richard Leitner
Hi, this is a note to let you know that I've just added this patch to the master-next branch of the meta-java repository at git://git.yoctoproject.org/meta-java As soon as it has gone through some more testing it will likely be merged to the master branch. If you have any questions,

Re: [oe] [meta-java][PATCH] classpath: harmonise -native and -initial-native recipes

2018-06-19 Thread Richard Leitner
On 25.04.2018 17:02, André Draszik wrote: From: André Draszik removing lots of code-duplication Signed-off-by: André Draszik Tested-by: Richard Leitner --- .../classpath/classpath-initial-native_0.93.bb | 54 ++ recipes-core/classpath/classpath-native.inc

Re: [oe] [meta-java][PATCH] libecj-bootstrap-native: simplify build

2018-06-19 Thread Richard Leitner
On 25.04.2018 16:59, André Draszik wrote: From: André Draszik Piping 'find' output into multiple files to re-read them seems inelegant and is error prone - just use a pipe with appropriate options instead. This avoids potential problems with funny file names, and now also makes use of

Re: [oe] [meta-java][PATCH] openjdk-8: give downloaded files a more descriptive name

2018-06-19 Thread Richard Leitner
On 25.04.2018 17:17, André Draszik wrote: From: André Draszik Rather than using the HG (mercurial) changeset IDs directly, add a more descriptive part to the file name. This can help with download cache management. Signed-off-by: André Draszik Tested-by: Richard Leitner ---

Re: [oe] [meta-xfce][PATCH] xfce4: package libtool files if they are installed

2018-06-19 Thread Andreas Müller
On Tue, Jun 19, 2018 at 1:26 AM, Mark Asselstine wrote: > This is a partial revert of commit 2ad5ceafa53f [various classes > recipes: Remove FILES entries for dbg/dev packages] to restore the > packaging of libtool (.la) files. It is generally recommended to > include 'remove-libtool' in your