Re: [OE-core] [PATCH 1/1] nativesdk/sdk: Fix sdk dummy providers for opkg

2018-12-04 Thread Andrej Valek
Hello Richie, We have made some deeper analysis of this problem. In our opinion the code as it is now does not work for any packaging method. For RPM it's a silent failure (purpose of dummy class is to replace tools like perl, however without RCONFLICTS clause those tools will be installed instea

[OE-core] [OE-Core][PATCH 0/3] Devtool: provide easy means of reconfiguring the kernel

2018-12-04 Thread Sai Hari Chandana Kalluri
This patch series provides support for the user to run menuconfig command in the devtool flow. This would allow the user to modify the current configurations and generate a config fragment to update the recipe using devtool finish. Devtool menuconfig command will work on all packages that conta

Re: [OE-core] [PATCH] [PATCH] tcl:upgrade to 8.6.9

2018-12-04 Thread Tim Orling
Can you also upgrade the tk recipe in meta-oe please? On Tue, Dec 4, 2018 at 5:19 PM Hong Liu wrote: > 1.Upgrade tcl from 8.6.8 to 8.6.9. > > Signed-off-by: Hong Liu > --- > meta/recipes-devtools/tcltk/{tcl_8.6.8.bb => tcl_8.6.9.bb} | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >

[OE-core] [OE-Core][PATCH 1/3] devtool modify: Update devtool modify to copy source from work-shared if its already downloaded.

2018-12-04 Thread Sai Hari Chandana Kalluri
In the regular devtool modify flow, the kernel source is fetched by running do_fetch task. This is an overhead in time and space. This patch updates modify command to check if the kernel source is already downloaded. If so, then instead of calling do_fetch, copy the source from work-shared to devt

[OE-core] [OE-Core][PATCH 0/3] Devtool: provide easy means of reconfiguring the kernel

2018-12-04 Thread Sai Hari Chandana Kalluri
This patch series provides support for the user to run menuconfig command in the devtool flow. This would allow the user to modify the current configurations and generate a config fragment to update the recipe using devtool finish. Devtool menuconfig command will work on all packages that conta

[OE-core] [PATCH 2/2] autoconf-doc: improve reproducibility

2018-12-04 Thread Hongxu Jia
autoconf-doc package contains autoconf.info. This file contains date when this file was created, i.e: "This manual (31 January 2018) .." Therefore, two builds done on two different days will show different dates for otherwise identical files, hence breaking reproducibility. The date is obtai

[OE-core] [PATCH 1/2] pulseaudio: improve reproducibility

2018-12-04 Thread Hongxu Jia
Remove build host paths from generated binaries, the modification is harmless for build time compiling and runtime executing. [YOCTO #12638] Signed-off-by: Hongxu Jia --- .../pulseaudio/0001-improve-reproducibility.patch | 50 ++ .../pulseaudio/pulseaudio_12.2.bb

[OE-core] [PATCH] [PATCH] tcl:upgrade to 8.6.9

2018-12-04 Thread Hong Liu
1.Upgrade tcl from 8.6.8 to 8.6.9. Signed-off-by: Hong Liu --- meta/recipes-devtools/tcltk/{tcl_8.6.8.bb => tcl_8.6.9.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-devtools/tcltk/{tcl_8.6.8.bb => tcl_8.6.9.bb} (95%) diff --git a/meta/recipes-devtools/tcltk/t

[OE-core] [OE-Core][PATCH 3/3] devtool: provide support for devtool menuconfig command.

2018-12-04 Thread Sai Hari Chandana Kalluri
All packages that support the menuconfig task will be able to run devtool menuconfig command. This would allow the user to modify the current configure options and create a config fragment which can be added to a recipe using devtool finish. 1. The patch checks if devtool menuconfig command is cal

[OE-core] Wanted: Volunteers and demos for OpenEmbedded FOSDEM stand

2018-12-04 Thread Paul Barker
Hi all, We've got an OpenEmbedded stand again at FOSDEM this year! The event will be held on 2nd & 3rd Feb 2019 at the usual location of ULB Campus du Solbosch in Brussels. I'll be present most of each day to run the stand but we need some additional volunteers to help out. Ideally we need 3-4

[OE-core] Yocto Project Status WW48’18

2018-12-04 Thread Jolley, Stephen K
Current Dev Position: YP 2.7 M1. Next Deadline: YP 2.7 M1 Cutoff is Dec. 10, 2018 SWAT Team Rotation: · SWAT lead is currently: Amanda · SWAT team rotation: Amanda -> Chen on Dec. 7, 2018 · SWAT team rotation: Chen -> Arminon Dec. 14, 2018 · https://wiki.yocto

[OE-core] ✗ patchtest: failure for "python3: don't cripple target ..." and 1 more

2018-12-04 Thread Patchwork
== Series Details == Series: "python3: don't cripple target ..." and 1 more Revision: 1 URL : https://patchwork.openembedded.org/series/15203/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been

[OE-core] [PATCH 1/2] python3: don't cripple target distutils

2018-12-04 Thread Ross Burton
We stop distutils for *native* Python from rewriting hashbangs when installing (so installed scripts don't have a hashbang that refers to sysroot paths), but this isn't needed nor desirable for the *target* Python. Signed-off-by: Ross Burton --- meta/recipes-devtools/python/python3_3.5.6.bb | 1

[OE-core] [PATCH 2/2] python3: drop redundant patch

2018-12-04 Thread Ross Burton
This patch altered the clean target's behaviour to skip the ipkg-install directory. However this directory isn't created by opkg, opkg-utils, or the package_ipk class; and we don't invoke the clean target as we perform out-of-tree builds. Signed-off-by: Ross Burton --- .../python/python3-native

Re: [OE-core] [OE-Core][PATCH] python3-docutils: Fix shebang path to point at python3

2018-12-04 Thread Burton, Ross
On Tue, 4 Dec 2018 at 14:27, Alex Kiernan wrote: > I'm wondering if the right fix is to delete both the patch and the > do_install fixups and start again? Probably. I've just verified that simply disabling that patch for python3-native (shouldn't be applied to python3, as we definitely don't wan

Re: [OE-core] [OE-Core][PATCH] python3-docutils: Fix shebang path to point at python3

2018-12-04 Thread Alex Kiernan
On Tue, Dec 4, 2018 at 12:02 PM Burton, Ross wrote: > > Turns out we disable this functionality in distutils. That patch > should be fixed to do the right thing instead. > Well that explains a lot of things... I've a small bag of those fixups, it never occurred to me it was local to bitbake. I

Re: [OE-core] [PATCH] kernel.bbclass: add coreutils-native to the DEPENDS list

2018-12-04 Thread Burton, Ross
Can't we just add this to HOSTTOOLS instead? On Tue, 4 Dec 2018 at 13:43, Anders Roxell wrote: > > In newer kernels fold gets used, see output from a build: > > .../kernel-source/scripts/atomic/atomic-tbl.sh: >line 183: fold: command not found > > Rework so that coreutils-native is in the DEPE

[OE-core] [PATCH] kernel.bbclass: add coreutils-native to the DEPENDS list

2018-12-04 Thread Anders Roxell
In newer kernels fold gets used, see output from a build: .../kernel-source/scripts/atomic/atomic-tbl.sh: line 183: fold: command not found Rework so that coreutils-native is in the DEPENDS list. Signed-off-by: Anders Roxell --- meta/classes/kernel.bbclass | 2 +- 1 file changed, 1 insertio

Re: [OE-core] [PATCH 1/1] testimage: fix boolean checking for QEMU_USE_KVM

2018-12-04 Thread Richard Purdie
On Tue, 2018-12-04 at 13:04 +0800, Chen Qi wrote: > If QEMU_USE_KVM is set to a list of machines, when doing testimage > for a machine outside the list, we will get the following error. > > Exception: ValueError: Invalid boolean value 'intel-corei7-64 > intel-core2-32 qemux86 qemux86-64' > > Th

Re: [OE-core] [PATCH] util-linux: split out blkdiscard into its own package

2018-12-04 Thread Burton, Ross
Yep, staged already. Ross On Tue, 4 Dec 2018 at 08:49, André Draszik wrote: > > Hi, > > I'd be happy to work on that, but I won't have time to do so until sometime > early next year... > > Can this patch be applied in the meantime nevertheless please? > > > Cheers, > Andre' > > > On Tue, 2018-12-

Re: [OE-core] [OE-Core][PATCH] python3-docutils: Fix shebang path to point at python3

2018-12-04 Thread Burton, Ross
Turns out we disable this functionality in distutils. That patch should be fixed to do the right thing instead. Ross On Tue, 4 Dec 2018 at 11:43, Burton, Ross wrote: > > Interestingly if you build docutils outside of bitbake, the hashbangs > get rewritten automatically as part of the build... >

[OE-core] [PATCH] gdb: Remove long ago upstreamed patch

2018-12-04 Thread Alexey Brodkin
This fix was upstreamed a long ago, see [1]. [1] https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commit;h=37ce4055fe907b9edd25498dcda7a133dbd19784 Signed-off-by: Alexey Brodkin --- meta/recipes-devtools/gdb/gdb-8.2.inc | 1 - .../gdb/0001-include-sys-types.h-for-mode_t

Re: [OE-core] [OE-Core][PATCH] python3-docutils: Fix shebang path to point at python3

2018-12-04 Thread Burton, Ross
Interestingly if you build docutils outside of bitbake, the hashbangs get rewritten automatically as part of the build... On Tue, 4 Dec 2018 at 10:49, Alex Kiernan wrote: > > By default we get a shebang path pointing at python; when building the > python3 version, ensure we use python3. > > Signed

Re: [OE-core] [PATCH] nss: Fix SHA_HTONL bug for arm 32be.

2018-12-04 Thread Burton, Ross
As this isn't a little detail, can you file this upstream? Ross On Tue, 4 Dec 2018 at 09:24, Zheng Ruoqin wrote: > > Rpm use nss as digest crypto library and which will cause an error as follows: > > error: test-manual-1.2.3-20181012.noarch.rpm: Header SHA1 digest: BAD > (Expected > f1deb7dc4a10

[OE-core] [OE-Core][PATCH] python3-docutils: Fix shebang path to point at python3

2018-12-04 Thread Alex Kiernan
By default we get a shebang path pointing at python; when building the python3 version, ensure we use python3. Signed-off-by: Alex Kiernan --- meta/recipes-devtools/python/python3-docutils_0.14.bb | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-devtools/pyth

[OE-core] ✗ patchtest: failure for nss: Fix SHA_HTONL bug for arm 32be.

2018-12-04 Thread Patchwork
== Series Details == Series: nss: Fix SHA_HTONL bug for arm 32be. Revision: 1 URL : https://patchwork.openembedded.org/series/15196/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed o

[OE-core] [PATCH] nss: Fix SHA_HTONL bug for arm 32be.

2018-12-04 Thread Zheng Ruoqin
Rpm use nss as digest crypto library and which will cause an error as follows: error: test-manual-1.2.3-20181012.noarch.rpm: Header SHA1 digest: BAD (Expected f1deb7dc4a10742d88ccd1e967dbc62ae45095a5 !=4ad9d7dad6d70d6086eefec62612ad5d77f2fe81) => this value is wrong error: test-manual-1.2.3-2018

Re: [OE-core] [PATCH] util-linux: split out blkdiscard into its own package

2018-12-04 Thread André Draszik
Hi, I'd be happy to work on that, but I won't have time to do so until sometime early next year... Can this patch be applied in the meantime nevertheless please? Cheers, Andre' On Tue, 2018-12-04 at 10:04 +0800, ChenQi wrote: > I think this is a good idea. I opened a new bug in bugzilla to tr