[OE-core] [PATCH] systemd-boot: Set COMPATIBLE_HOST in recipe

2016-06-10 Thread Jianxun Zhang
We apply the same setting in the existing gummiboot to COMPATIBLE_HOST, so that it properly stops build for unsupported architectures. Signed-off-by: Jianxun Zhang --- meta/recipes-bsp/systemd-boot/systemd-boot.bb | 1 + 1 file changed, 1 insertion(+) diff --git

Re: [OE-core] State of bitbake world 2016-06-07

2016-06-10 Thread Jianxun Zhang
> On Jun 9, 2016, at 12:03 AM, Martin Jansa wrote: > > This report includes python3 changes, there are few more failures, but > it's hard to see what is new, so I've sent couple PNBLACKLISTs for > recipes reported in previous 2 reports which are still failing with >

Re: [OE-core] [PATCH v2] u-boot: Update to 2016.05 release

2016-06-10 Thread Andrew Shadura
On 10/06/16 17:33, Burton, Ross wrote: > > On 7 June 2016 at 09:21, Andrew Shadura > wrote: > > Any news on this? It still hasn't been merged, even though the other > patch has been. > > > It's broken on hosts

[OE-core] [PATCH v2] python-git: Upgrade both python-git and python3-git from 1.0.2 to 2.0.5

2016-06-10 Thread Alejandro Hernandez
Signed-off-by: Alejandro Hernandez --- meta/recipes-devtools/python/python-git.inc | 6 +++--- meta/recipes-devtools/python/python-git_1.0.2.bb | 8 meta/recipes-devtools/python/python-git_2.0.5.bb | 8

[OE-core] [PATCH 1/1] update-rc.d.bbclass: Disable class when sysvinit is not in DISTRO_FEATURES

2016-06-10 Thread mariano . lopez
From: Mariano Lopez When sysvinit is not in use, update-rd.d class adds build dependencies that won't be needed, this patch removes the build dependecies and won't add the task to PACKAGESPLITFUNCS. [YOCTO #9515] Signed-off-by: Mariano Lopez

[OE-core] [PATCH] systemtap: add build dependency on ncurses

2016-06-10 Thread Ross Burton
systemtap has a floating dependency on ncurses but as bash is a RDEPENDS the build-rdeps sanity test doesn't fire due to a limitation of the test. Add an explicit dependency on ncurses to ensure the build is deterministic. [ YOCTO #9709 ] Signed-off-by: Ross Burton ---

Re: [OE-core] [PATCH] lib/oe/terminal.py: decode bytes variable before rstrip/split

2016-06-10 Thread Trevor Woerner
Thank you, that solves it! :-) -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core

Re: [OE-core] [PATCH 3/9] python-git: Upgrade from 1.0.2 to 2.0.5

2016-06-10 Thread Alejandro Hernandez
On 06/10/2016 11:16 AM, Burton, Ross wrote: On 8 June 2016 at 06:56, Alejandro Hernandez > wrote: meta/recipes-devtools/python/python-git.inc | 6 +++---

Re: [OE-core] [PATCH 3/9] python-git: Upgrade from 1.0.2 to 2.0.5

2016-06-10 Thread Burton, Ross
On 8 June 2016 at 06:56, Alejandro Hernandez < alejandro.hernan...@linux.intel.com> wrote: > meta/recipes-devtools/python/python-git.inc | 6 > +++--- > .../python/{python-git_1.0.2.bb => python-git_2.0.5.bb} | 0 > Any reason why this didn't do python3-git?

[OE-core] [PATCHv2 1/2] useradd-staticids.bbclass: Make sure opened files are closed

2016-06-10 Thread Peter Kjellerstedt
This avoids warnings about unclosed files with Python 3. Signed-off-by: Peter Kjellerstedt --- meta/classes/useradd-staticids.bbclass | 30 +- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git

[OE-core] [PATCHv2 0/2] Make useradd-staticids.bbclass Python 3 compatible

2016-06-10 Thread Peter Kjellerstedt
Avoid warnings with Python 3 due to files that are not closed in useradd-staticids.bbclass. PATCHv2: Also avoid a FutureWarning about split() requiring a non-empty pattern. It occured for every recipe that inherited useradd (with useradd-staticids enabled), but with no context at all. It also did

[OE-core] [PATCHv2 2/2] useradd-staticids.bbclass: Avoid FutureWarning about split()

2016-06-10 Thread Peter Kjellerstedt
This avoids the following warning with Python 3.5: /usr/lib64/python3.5/re.py:203: FutureWarning: split() requires a non-empty pattern Signed-off-by: Peter Kjellerstedt --- meta/classes/useradd-staticids.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2

Re: [OE-core] [PATCH v2] u-boot: Update to 2016.05 release

2016-06-10 Thread Burton, Ross
On 7 June 2016 at 09:21, Andrew Shadura wrote: > Any news on this? It still hasn't been merged, even though the other > patch has been. > It's broken on hosts where the library loader doesn't match where the OE distro puts it: | cat ./Licenses/gpl-2.0.txt |

[OE-core] Yocto Project Status WW24

2016-06-10 Thread Jolley, Stephen K
Current Dev Position: YP 2.2 M1 Next Deadline: YP 2.2 cut off: June 13, 2016 [3 days - Monday!] SWAT team rotation: Jussi -> Maxim https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: *We continue to see various python v3 issues however these are on

[OE-core] [PATCHv2] oe/distro_check.py: Fixes for python3

2016-06-10 Thread Aníbal Limón
create_socket: Use urllib because urllib2 is now urllib in python3 and proxies as argument are deprecated so export them in the environ instead. get_links_from_url: Change usage of sgmllib for parsing HTML because is deprecated in python 3, use instead bs4 that is already imported in the bitbake

[OE-core] [PATCH] image/image_types.bbclass: fix fatal error during cpio debugfs creation

2016-06-10 Thread André Draszik
From: André Draszik If /init is just a symlink to /sbin/init, debugfs creation fails with the following error: ERROR: Error: The image creation script '<...>/debugfs.create_image.cpio' returned 1: touch: cannot touch '<...>/cpio_append/init': Permission denied WARNING:

[OE-core] [PATCH 2/2] mips: add tunes for (some) 24K cores

2016-06-10 Thread André Draszik
From: André Draszik - add 24kc big and little endian, which is based on mips32r2 w/o FPU - add 24kec which is 24kc + DSP - both can have the MIPS16e ASE enabled in their tunes Signed-off-by: André Draszik ---

[OE-core] [PATCH 1/2] mips: add a tune for using MIPS16e ASE instructions

2016-06-10 Thread André Draszik
From: André Draszik The MIPS16e instruction set still has to be enabled by setting MIPS_INSTRUCTION_SET = 'mips16e' in e.g. distro.conf and can be disabled on a per-recipe basis as needed. This is a similar approach as is available on ARM for Thumb support. Note that

[OE-core] [PATCH 2/2] uclibc: never build with SSP

2016-06-10 Thread André Draszik
From: André Draszik This doesn't work, as the initial gcc that is used for compiling uclibc doesn't have support for SSP yet (since that will only be available once uclibc has been compiled). Since during that same compilation step uclibc is trying to build its own utils

[OE-core] [PATCH 1/2] uclibc: no need for CONFIG_MIPS_ISA_xxx config options

2016-06-10 Thread André Draszik
From: André Draszik The config option for the mips ISA have been completely removed from uclibc-ng. uclibc doesn't add gcc options based on those config options anymore. Hence we don't need to create them here either. Signed-off-by: André Draszik ---

Re: [OE-core] [PATCH v2] weston: Fix bug causing the xwayland package to always be included

2016-06-10 Thread Otavio Salvador
On Thu, Jun 9, 2016 at 8:09 PM, Tom Hochstein wrote: > The xwayland package was always being built due to its inclusion in > PACKAGE_BEFORE_PN. The effect was masked by making the RDEPENDS conditional. > > Now we make the PACKAGE_BEFORE_PN inclusion conditional and restore

Re: [OE-core] [PATCH 3/3] weston-init: Don't change XDG_RUNTIME_DIR if it already exists

2016-06-10 Thread Otavio Salvador
On Thu, Jun 9, 2016 at 4:27 PM, Tom Hochstein wrote: > In the case that XDG_RUNTIME_DIR already exists, the mkdir --parents > at least does nothing, but the chmod could overwrite the desired > file mode settings. > > Signed-off-by: Tom Hochstein

Re: [OE-core] [PATCH 2/3] weston-init: Use bitbake path variable

2016-06-10 Thread Otavio Salvador
On Thu, Jun 9, 2016 at 4:27 PM, Tom Hochstein wrote: > Signed-off-by: Tom Hochstein Acked-by: Otavio Salvador -- Otavio Salvador O.S. Systems http://www.ossystems.com.br

Re: [OE-core] [PATCH 1/3] x11-common: Fix XDG_RUNTIME_DIR typo

2016-06-10 Thread Otavio Salvador
On Thu, Jun 9, 2016 at 4:27 PM, Tom Hochstein wrote: > Fix the if-statement that had misspelled XDG_RUNTIME_DIR. > Also fix whitespace. > > Signed-off-by: Tom Hochstein Acked-by: Otavio Salvador -- Otavio Salvador

[OE-core] [PATCH v3] libjpeg-turbo: update to 1.5.0

2016-06-10 Thread Maxin B. John
1. LIC_FILES_CHKSUM updates only involves changes in Copyright holders. LICENSE remains the same. 2. libjpeg-turbo don't have non-floating point ABI support in MIPS. Provide a work around for that. 3. Provide a workaround if Altivec unit is not present in PPC 4. Rename the recipe to fix

Re: [OE-core] [oe] the fate of Vala in OE

2016-06-10 Thread Alexander Kanavin
On 06/09/2016 07:36 PM, Burton, Ross wrote: We do use Vala for internal gstreamer-related projects so I would volunteer to support it in oe-core. Would you volunteer to maintain it in a separate layer if possible? If nothing in core uses it and it can be maintained out of core then I

[OE-core] [PATCH] packagegroup-self-hosted: port to Python 3

2016-06-10 Thread Ross Burton
A self-hosting packagegroup needs to ship Python 3 for bitbake, not Python 2. Remove python-compiler as it was a standard module in Py2 and removed in Py3. Remove python-misc as it is pulled in via python3-modules. Remove python-rpm as it is only required by Smart, and if smart is installed

Re: [OE-core] [PATCHv2 08/36] connman-gnome: Add patch to port to Gtk+3

2016-06-10 Thread Jussi Kukkonen
On 10 June 2016 at 11:04, Jussi Kukkonen wrote: > Upstream is not really active anymore: patch the Gtk+3 upgrade > in for now (long term solution is to change to another UI). > > Signed-off-by: Jussi Kukkonen > --- >

Re: [OE-core] [PATCH] libjpeg-turbo: update to 1.5.0

2016-06-10 Thread Maxin B. John
Hi, On Thu, Jun 09, 2016 at 10:22:35AM -0400, Andrew Bradford wrote: > On 06/08 15:48, Maxin B. John wrote: > > 1. LIC_FILES_CHKSUM updates only involves changes in Copyright holders. > >LICENSE remains the same. > > > > 2. libjpeg-turbo don't have non-floating point ABI support in MIPS. > >

Re: [OE-core] [PATCH] libjpeg-turbo: update to 1.5.0

2016-06-10 Thread Maxin B. John
Hi, On Thu, Jun 09, 2016 at 11:27:50PM +, Peter Kjellerstedt wrote: > > -Original Message- > > From: openembedded-core-boun...@lists.openembedded.org > > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > > Maxin B. John > > Sent: den 9 juni 2016 08:36 > > To:

[OE-core] [PATCH v2] libjpeg-turbo: update to 1.5.0

2016-06-10 Thread Maxin B. John
1. LIC_FILES_CHKSUM updates only involves changes in Copyright holders. LICENSE remains the same. 2. libjpeg-turbo don't have non-floating point ABI support in MIPS. Provide a work around for that. [YOCTO #9606] Signed-off-by: Maxin B. John ---

[OE-core] [PATCHv2 32/36] matchbox-desktop: Add Sato folder configuration

2016-06-10 Thread Jussi Kukkonen
matchbox-desktop folder configuration for Sato was in a separate project 'matchbox-desktop-sato'. Skip the extra overhead: remove matchbox-desktop-sato and include the files here. Drop Utilities folder and include those icons in the Applictions folder in an effort to make the common case a little

[OE-core] [PATCHv2 11/36] vte: Upgrade to 0.44.1

2016-06-10 Thread Jussi Kukkonen
* License change LGPL 2.0 -> LGPL 2.1+ * vte-termcap is no more * API break: current version seems to be parallel installable with old one, but I did not opt for that. Signed-off-by: Jussi Kukkonen --- .../vte/vte-0.28.2/cve-2012-2738.patch | 136

[OE-core] [PATCH] npm.bbclass: avoid str/byte conversion problems for PKGV and SUMMARY

2016-06-10 Thread Patrick Ohly
In Python3, str.encode() returns byte strings, which later are not converted back to strings automatically, leading to "TypeError: Can't convert 'bytes' object to str implicitly" in code which reads PKGV and SUMMARY and expects to find strings there. The npm.bbclass must use values for d.setVar()

[OE-core] [PATCHv2 00/36] Port Sato to Gtk+3

2016-06-10 Thread Jussi Kukkonen
There's only a few changes here. I'm sending only the following changed/new patches to avoid spamming everyone with 33 patches they've already seen: connman-gnome: Add patch to port to Gtk+3 vte: Upgrade to 0.44.1 matchbox-desktop: Add Sato folder configuration Please use the git branch

[OE-core] [PATCHv2 08/36] connman-gnome: Add patch to port to Gtk+3

2016-06-10 Thread Jussi Kukkonen
Upstream is not really active anymore: patch the Gtk+3 upgrade in for now (long term solution is to change to another UI). Signed-off-by: Jussi Kukkonen --- .../connman/connman-gnome/0001-Port-to-Gtk3.patch | 277 + .../connman/connman-gnome_0.7.bb

[OE-core] [PATCH] buildhistory-diff: suggest correct version of PythonGit

2016-06-10 Thread Ed Bartosh
If buildhistory-diff can't import git module it throws error message suggesting to install it. Due to the move to Python 3 the suggested package name and version became outdated. Changed package name to python3-git and version to >= 0.3.4 as GitPython supports Python 3 starting from 0.3.4.