Re: [OE-core] [PATCH 4/4] xserver-xorg: Add PACKAGECONFIG for crypto libraries

2016-02-10 Thread Mark Hatle
On 2/10/16 2:25 AM, Jussi Kukkonen wrote: > On 9 February 2016 at 20:04, Mark Hatle > wrote: > > On 2/9/16 11:54 AM, Khem Raj wrote: > > > >> On Feb 9, 2016, at 1:39 AM, Nicolas Dechesne >

Re: [OE-core] [PATCH] piglit: add missing dependency on python-xml

2016-02-10 Thread Nicolas Dechesne
On Wed, Feb 10, 2016 at 2:56 PM, Ross Burton wrote: > Piglit uses ElementTree so ensure that python-xml is a dependency. > > Signed-off-by: Ross Burton Tested-by: Nicolas Dechesne without too many surprises.. it fixed

[OE-core] [PATCH] python: merge python-elementtree into python-xml

2016-02-10 Thread Ross Burton
python-xml depends on python-elementtree as the latter just contains a C library used by the former. However there's no point to this split apart from increasing the number of packages, so merge -elementtree into python-xml. Signed-off-by: Ross Burton ---

[OE-core] [PATCH 0/5] sstate: use oe.gpg_sign for signing/verifying

2016-02-10 Thread Markus Lehtonen
This patchset modifies sstate.bbclass to utilize the recently added oe.gpg_sign library module. This unifies the code as now all gpg signing operations during the build are done with the help of this module. The first four patches add new features and refactor oe.gpg_sign in order to make it

[OE-core] [PATCH] piglit: add missing dependency on python-xml

2016-02-10 Thread Ross Burton
Piglit uses ElementTree so ensure that python-xml is a dependency. Signed-off-by: Ross Burton --- meta/recipes-graphics/piglit/piglit_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-graphics/piglit/piglit_git.bb

[OE-core] [PATCH 3/5] sign_rpm.bbclass: do not store key details in signer instance

2016-02-10 Thread Markus Lehtonen
Refactor the LocalSigner class. Do not store keyid or passphrase file in the signer object as they are only needed for some of the methods. For example, the newly added verify() method does not need any key parameters and export_pubkey only uses keyid. Signed-off-by: Markus Lehtonen

[OE-core] [PATCH 4/5] oe/gpg_sign: add 'passphrase' argument to detach_sign method

2016-02-10 Thread Markus Lehtonen
This allows directly giving the passphrase, instead of reading from a file. [YOCTO #9006] Signed-off-by: Markus Lehtonen --- meta/lib/oe/gpg_sign.py | 30 -- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git

[OE-core] [PATCH 2/5] oe/gpg_sign: add 'armor' argument to detach_sign()

2016-02-10 Thread Markus Lehtonen
[YOCTO #9006] Signed-off-by: Markus Lehtonen --- meta/lib/oe/gpg_sign.py | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py index a4f310e..16a2364 100644 --- a/meta/lib/oe/gpg_sign.py +++

[OE-core] [PATCH 1/5] oe/gpg_sign: add verify() method

2016-02-10 Thread Markus Lehtonen
A new method for verifying detached signatures. [YOCTO #9006] Signed-off-by: Markus Lehtonen --- meta/lib/oe/gpg_sign.py | 10 ++ 1 file changed, 10 insertions(+) diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py index 821787e..a4f310e

[OE-core] [PATCH 5/5] sstate.bbclass: use oe.gpg_sign for gpg signing

2016-02-10 Thread Markus Lehtonen
[YOCTO #9006] Signed-off-by: Markus Lehtonen --- meta/classes/sstate.bbclass | 38 +- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index

[OE-core] [PATCH 1/9] distutils: Consider S != B case

2016-02-10 Thread Khem Raj
out of tree builds can break the assumption about setup.py being in the current directory, seen especially with devtool when using externalsrc many python modules cant build since it cant find setup.py in devtool workspace Signed-off-by: Khem Raj ---

[OE-core] [PATCH 2/9] ltp: Upgrade to 20160126 and fix build on musl

2016-02-10 Thread Khem Raj
Signed-off-by: Khem Raj --- .../ltp/ltp/0001-Fix-compilation-for-gcc-5.x.patch | 79 - ...tests_noltp.sh-script-so-have-unique-name.patch | 202 --- ...tch => 0001-ltp-Don-t-link-against-libfl.patch} | 11 +- ...-control-whether-numa-support-should-be-c.patch |

[OE-core] [PATCH 4/9] uclibc-ng: Bump up to 1.0.12 release

2016-02-10 Thread Khem Raj
Here are changes between 1.0.11 and 1.0.12 release 1.0.12 - Chimay Brune Leonid Lisovskiy (5): libdl: dlopen() mustn't forget RTLD_NODELETE flag tests: Extend OMIT LDFLAGS logic to test binaries too Provide __adjtimex() alias, like glibc. ldso: Fix fail of $ORIGIN expansion

[OE-core] [PATCH 5/9] uclibc: fetch from master branch not 1.0

2016-02-10 Thread Khem Raj
From: Ross Burton The SRC_URI was fetching from the "1.0" branch but the uclibc maintainers appear to have removed this, presumably because it's synonymous with master as all of the releases are also on the master branch. [ YOCTO #9074 ] Signed-off-by: Ross Burton

[OE-core] [PATCH 0/9] Upgrade uclibc/musl to latest

2016-02-10 Thread Khem Raj
ltp upgrade is prerequisite for glibc 2.23 patches to fix more musl recipes distutils patch to let pythonic recipes work with devtool The following changes since commit 8092aa8ff63d9b2016bff138ec05ceb0d0155869: ptest-runner: Explicitly set EXTRA_OEMAKE as required (2016-02-10 15:51:05 +)

[OE-core] [PATCH 3/9] musl: Upgrade to tip of tree

2016-02-10 Thread Khem Raj
Add explicit runtime dep on bsd-headers-dev so we dont miss them in dev images Signed-off-by: Khem Raj --- meta/recipes-core/musl/musl_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/musl/musl_git.bb

[OE-core] [PATCH 6/9] strace: build fix for MIPS + musl libc

2016-02-10 Thread Khem Raj
From: Andre McCurdy The MIPS specific header is provided by glibc and uclibc but not by musl. Regardless of the libc, the kernel headers provide which provides the same definitions, so use that instead. Signed-off-by: Andre McCurdy Signed-off-by:

[OE-core] create_image.wic is missing u-boot SPL file

2016-02-10 Thread Oliver Graute
Hello list, I observe a problem with the create_image.wic script after second execution of bitbake fsl-image NOTE: recipe fsl-image-1.0-r0: task do_rootfs: Started 2016-02-10T03:21:41.323Z: ERROR: Error: The image creation script

[OE-core] [PATCH v2] mdadm: update to version 3.4

2016-02-10 Thread Maxin B. John
3.3.4 -> 3.4 a) Removed the following upstreamed patch: 1. 0001-Define-_POSIX_C_SOURCE-if-undefined.patch b) Added following patches to fix uclibc,musl and x32 build failures 1. 0001-mdadm.h-bswap-is-already-defined-in-uclibc.patch 2.

[OE-core] [PATCH 7/9] gdb: build fix for MIPS + musl libc

2016-02-10 Thread Khem Raj
From: Andre McCurdy The MIPS specific header is provided by glibc and uclibc but not by musl. Regardless of the libc, the kernel headers provide which provides the same definitions, so use that instead. Signed-off-by: Andre McCurdy Signed-off-by:

[OE-core] [PATCH 9/9] nettle.inc: drop duplicate LIC_FILES_CHKSUM and SRC_URI hashes

2016-02-10 Thread Khem Raj
From: Andre McCurdy LIC_FILES_CHKSUM and the SRC_URI hashes are both set from within the recipe files, so should not be duplicated in nettle.inc. Signed-off-by: Andre McCurdy Signed-off-by: Khem Raj ---

[OE-core] [PATCH 8/9] gdb: drop unnecessary CC_FOR_BUILD etc exports

2016-02-10 Thread Khem Raj
From: Andre McCurdy These exports are all provided by autotool.bbclass http://git.openembedded.org/openembedded-core/commit/?id=edf30561184ec42e5692a55fdf93304fac0fdb1b Signed-off-by: Andre McCurdy Signed-off-by: Khem Raj ---

Re: [OE-core] [PATCH 1/5] connman-gnome: rrecommend connman, don't rdepend

2016-02-10 Thread Burton, Ross
On 10 February 2016 at 12:31, Jussi Kukkonen wrote: > Ping? Please let me know if this was not actually a good idea. > Entirely my fault for the patch falling off page 1 of my mailbox. Staged locally, thanks. Ross -- ___

Re: [OE-core] [PATCH v2 4/7] systemd: extend PACKAGECONFIG flags

2016-02-10 Thread Andreas Müller
On Wed, Feb 10, 2016 at 1:32 PM, Maciej Borzecki wrote: > We currently ship a rather full-blown setup of system. Very few > configuration knobs are actually exposed through PACKAGECONFIG > flags. This patch adds new PACKAGECONFIG flags for some finer tuning of >

[OE-core] [PATCH] curl: add PACKAGECONFIG options for less common / legacy protocols

2016-02-10 Thread Andre McCurdy
As a result of this commit, the following protocols will now be disabled by default: DICT GOPHER IMAP IMAPS POP3 POP3S RTSP SMTP SMTPS TELNET TFTP Also add a PACKAGECONFIG option for libidn (previously disabled unconditionally). Signed-off-by: Andre McCurdy ---

[OE-core] [PATCH] e2fsprogs: Fix multiple xattr handling

2016-02-10 Thread Richard Purdie
There is an ordering issue when adding multiple xattr values to an ext filesystem build using the -d option to mkfs. This patch fixes that issue. Its been posted for discussion with the upstream community. Signed-off-by: Richard Purdie diff --git

Re: [OE-core] [PATCH 1/9] distutils: Consider S != B case

2016-02-10 Thread Phil Blundell
On Wed, 2016-02-10 at 17:43 +, Khem Raj wrote: > +cwd=$PWD;cd ${S} > +STAGING_INCDIR=${STAGING_INCDIR} \ > +STAGING_LIBDIR=${STAGING_LIBDIR} \ > +BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ > +${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN}

Re: [OE-core] [PATCH 1/9] distutils: Consider S != B case

2016-02-10 Thread Khem Raj
> On Feb 10, 2016, at 10:29 AM, Richard Purdie > wrote: > > On Wed, 2016-02-10 at 17:43 +, Khem Raj wrote: >> out of tree builds can break the assumption about setup.py being in >> the >> current directory, seen especially with devtool when using >>

Re: [OE-core] [PATCH 1/9] distutils: Consider S != B case

2016-02-10 Thread Richard Purdie
On Wed, 2016-02-10 at 17:43 +, Khem Raj wrote: > out of tree builds can break the assumption about setup.py being in > the > current directory, seen especially with devtool when using > externalsrc > many python modules cant build since it cant find setup.py in devtool > workspace > >

Re: [OE-core] [PATCH 1/9] distutils: Consider S != B case

2016-02-10 Thread Khem Raj
> On Feb 10, 2016, at 10:54 AM, Phil Blundell wrote: > > On Wed, 2016-02-10 at 17:43 +, Khem Raj wrote: >> +cwd=$PWD;cd ${S} >> +STAGING_INCDIR=${STAGING_INCDIR} \ >> +STAGING_LIBDIR=${STAGING_LIBDIR} \ >> +BUILD_SYS=${BUILD_SYS}

[OE-core] [[master][PATCH 2/2] qemu: Security fix CVE-2016-2198

2016-02-10 Thread Armin Kuster
From: Armin Kuster CVE-2016-2198 Qemu: usb: ehci null pointer dereference in ehci_caps_write Signed-off-by: Armin Kuster --- .../recipes-devtools/qemu/qemu/CVE-2016-2198.patch | 45 ++ meta/recipes-devtools/qemu/qemu_2.5.0.bb

[OE-core] [[master][PATCH 1/2] qemu: Security fix CVE-2016-2197

2016-02-10 Thread Armin Kuster
From: Armin Kuster CVE-2016-2197 Qemu: ide: ahci null pointer dereference when using FIS CLB engines Signed-off-by: Armin Kuster --- .../recipes-devtools/qemu/qemu/CVE-2016-2197.patch | 59 ++

[OE-core] [PATCH] python-setuptools: Add python-compile on RDEPENDS

2016-02-10 Thread Alejandro Hernandez
When trying to install packages using python-setuptools, compilation may fail complaining about the py_compile module not existing, this presented itself when installing pyephem for example, this patch adds python-compile to setuptools RDEPENDS to fix the issue. [YOCTO 9009] Signed-off-by:

[OE-core] [PATCH] piglit: upgrade SRCREV

2016-02-10 Thread Ross Burton
Upgrade the SRVREV to a slightly more up-to-date revision, this time from 2015-02-19. This commit in particular was chosen as it's the one before Piglit gained a hard dependnecy on python-six, which isn't yet in oe-core. Signed-off-by: Ross Burton ---

Re: [OE-core] [PATCH 4/9] uclibc-ng: Bump up to 1.0.12 release

2016-02-10 Thread akuster808
This update includes CVE-2016-2224 and CVE-2016-2225 - armin On 02/10/2016 09:43 AM, Khem Raj wrote: > Here are changes between 1.0.11 and 1.0.12 > > release 1.0.12 - Chimay Brune > > Leonid Lisovskiy (5): > libdl: dlopen() mustn't forget RTLD_NODELETE flag > tests: Extend OMIT

[OE-core] [PATCH 0/2] git gst-plugins compiler warning fixes

2016-02-10 Thread Andre McCurdy
Andre McCurdy (2): gstreamer1.0-plugins-good_git: fix gst_structure_get() compiler warning gstreamer1.0-plugins-bad_git: fix gst_structure_get() etc compiler warnings ...valid-sentinels-for-gst_structure_get-etc.patch | 67 ++ .../gstreamer/gstreamer1.0-plugins-bad_git.bb

[OE-core] [PATCH 1/2] gstreamer1.0-plugins-good_git: fix gst_structure_get() compiler warning

2016-02-10 Thread Andre McCurdy
| ../../../gst-plugins-good-1.7.1/ext/taglib/gstid3v2mux.cc: In function 'void add_image_tag(TagLib::ID3v2::Tag*, const GstTagList*, const gchar*, guint, const gchar*)': | ../../../gst-plugins-good-1.7.1/ext/taglib/gstid3v2mux.cc:468:63: error: missing sentinel in function call

[OE-core] [master][PATCH] libbsd: Security fix and update 0.8.2

2016-02-10 Thread Armin Kuster
From: Armin Kuster This update includes: CVE-2016-2090 Heap buffer overflow in fgetwln function of libbsd libbsd 0.8.1 and earlier contains a buffer overflow in the function fgetwln(). An if checks if it is necessary to reallocate memory in the target buffer. However this

[OE-core] [PATCH 2/2] gstreamer1.0-plugins-bad_git: fix gst_structure_get() etc compiler warnings

2016-02-10 Thread Andre McCurdy
| ../../../gst-plugins-bad-1.7.1/sys/decklink/gstdecklinkaudiosrc.cpp: In function 'gboolean gst_decklink_audio_src_set_caps(GstBaseSrc*, GstCaps*)': | ../../../gst-plugins-bad-1.7.1/sys/decklink/gstdecklinkaudiosrc.cpp:315:59: error: missing sentinel in function call [-Werror=format=] |

[OE-core] [PATCH] uninative.bbclass: capture stdout/err from patchelf-uninative

2016-02-10 Thread Patrick Ohly
When patchelf-uninative fails, reporting only the exit code as done by subprocess.check_call() is not enough to understand the problem. We also need to capture and report the output of the command. Signed-off-by: Patrick Ohly --- meta/classes/uninative.bbclass | 8

[OE-core] [PATCH 1/1] image_types_uboot: add cpio.gz.uboot to supported IMAGE_TYPES

2016-02-10 Thread Arnold Csorvasi
U-Boot needs the U-Boot header in a ramdisk image to boot it. Add this header to the cpio.gz image, so that it can be booted with U-Boot. Signed-off-by: Arnold Csorvasi --- meta/classes/image_types_uboot.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[OE-core] [PATCH] oeqa: setup bitbake logger after tinfoil.shutdown

2016-02-10 Thread Ed Bartosh
Bitbake logger stops working after tinfoil.shutdown removes console handler from it. This makes bb.{error,warn,note,critical} messages disappear from the console. Adding console handler to bitbake logger again should fix this issue. Signed-off-by: Ed Bartosh ---

Re: [OE-core] [PATCH 1/3] mdadm: update to version 3.4

2016-02-10 Thread Maxin B. John
Hi Ross, On Tue, Feb 09, 2016 at 10:22:26PM +, Burton, Ross wrote: >>On 9 February 2016 at 17:48, Maxin B. John wrote: >> >>3.3.4 -> 3.4 > poky builds fail with ptest enabled: > >| restripe.c: In function 'test_stripes': >| restripe.c:845:4: error: ignoring

[OE-core] [PATCH v2] udhcpc: specify full path for ip command calls

2016-02-10 Thread Mark O'Donovan
Signed-off-by: Mark O'Donovan --- meta/recipes-core/busybox/busybox.inc | 3 ++- meta/recipes-core/busybox/files/simple.script | 28 +-- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git

Re: [OE-core] [PATCH 4/4] xserver-xorg: Add PACKAGECONFIG for crypto libraries

2016-02-10 Thread Jussi Kukkonen
On 9 February 2016 at 20:04, Mark Hatle wrote: > On 2/9/16 11:54 AM, Khem Raj wrote: > > > >> On Feb 9, 2016, at 1:39 AM, Nicolas Dechesne < > nicolas.deche...@linaro.org> wrote: > >> > >> On Tue, Feb 9, 2016 at 10:24 AM, Jussi Kukkonen > >>

Re: [OE-core] [PATCH 6/7] liburcu: Add nios2 support

2016-02-10 Thread Paul Eggleton
On Tue, 09 Feb 2016 18:56:09 Marek Vasut wrote: > On Tuesday, February 09, 2016 at 06:52:12 PM, Khem Raj wrote: > > > On Feb 9, 2016, at 4:07 AM, Marek Vasut wrote: > > > > > > On Tuesday, February 09, 2016 at 12:53:01 PM, Burton, Ross wrote: > > >> On 9 February 2016 at 11:31,

Re: [OE-core] [PATCH] iproute2: enable previously unselected utilities

2016-02-10 Thread Maxin B. John
Hi Randy, On Tue, Feb 09, 2016 at 09:47:35PM -0500, Randy MacLeod wrote: > On 2015-12-01 12:58 AM, Maxin B. John wrote: > >Hi, > > > >On Tue, Dec 01, 2015 at 01:29:43AM -0800, Khem Raj wrote: > >>On Tue, Dec 1, 2015 at 1:27 AM, Anders Darander > >>wrote: > >>>Hi, > >>> >

[OE-core] [PATCH v2] iproute2: update to version 4.4.0

2016-02-10 Thread Maxin B. John
4.3.0 -> 4.4.0 a) Added iproute2-fix-building-with-musl.patch to fix build with musl. b) Include below listed utilities that are not yet enabled/packaged in the iproute2 recipe: 1. lnstat 2. ifstat 3. genl 4. rtacct 5. nstat 6. ss Signed-off-by: Maxin B. John ---

[OE-core] [PATCH v2 1/7] systemd: move bash completion into separate package

2016-02-10 Thread Maciej Borzecki
Inherit bash-completion for automatic systemd-bash-completion package. Signed-off-by: Maciej Borzecki --- meta/recipes-core/systemd/systemd_228.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meta/recipes-core/systemd/systemd_228.bb

[OE-core] [PATCH v2 4/7] systemd: extend PACKAGECONFIG flags

2016-02-10 Thread Maciej Borzecki
We currently ship a rather full-blown setup of system. Very few configuration knobs are actually exposed through PACKAGECONFIG flags. This patch adds new PACKAGECONFIG flags for some finer tuning of systemd's functionality. The default setting attempts to preserve all of the features that were

[OE-core] [PATCH v2 6/7] systemd: tighten timesyncd and journal-gateway user accounts

2016-02-10 Thread Maciej Borzecki
Make sure that systemd-timesync and systemd-journal-gateway are created without dedicated home directories, home set to / and /bin/nologin as shell. This makes us in sync with what systemd-sysusers sets when adding users during startup. Signed-off-by: Maciej Borzecki

Re: [OE-core] [RFC][PATCH] buildhistory.bbclass: Break up the find to catch failures

2016-02-10 Thread Paul Eggleton
On Tue, 09 Feb 2016 09:34:41 Mark Hatle wrote: > If for some reason the 'find' operation were to fail, the buildhistory would > not fail, but instead store invalid history! > > [YOCTO #9031] > > Note this fixes the symptom, but not the cause of 9031. That is a separate > issue, see the defect

Re: [OE-core] [PATCH 6/7] liburcu: Add nios2 support

2016-02-10 Thread Marek Vasut
On Wednesday, February 10, 2016 at 10:05:52 AM, Paul Eggleton wrote: > On Tue, 09 Feb 2016 18:56:09 Marek Vasut wrote: > > On Tuesday, February 09, 2016 at 06:52:12 PM, Khem Raj wrote: > > > > On Feb 9, 2016, at 4:07 AM, Marek Vasut wrote: > > > > > > > > On Tuesday, February 09,

Re: [OE-core] [PATCH 1/5] connman-gnome: rrecommend connman, don't rdepend

2016-02-10 Thread Jussi Kukkonen
Ping? Please let me know if this was not actually a good idea. - Jussi On 25 November 2015 at 15:05, Jussi Kukkonen wrote: > connman-gnome doesn't have a binary dependency on connman, and using > RRECOMMEND is better for multilib builds (connman-gnome works fine >

Re: [OE-core] [PATCH] buildhistory.bbclass: remove out-dated information on request

2016-02-10 Thread Paul Eggleton
On Mon, 08 Feb 2016 13:35:20 Patrick Ohly wrote: > On Mon, 2016-02-08 at 08:52 +, Richard Purdie wrote: > > On Mon, 2016-02-08 at 07:56 +0100, Patrick Ohly wrote: > > > buildhistory.bbclass by design is incremental: each build adds or > > > updates information. Information is never removed. >

[OE-core] [PATCH v2 2/7] systemd: realign packages list

2016-02-10 Thread Maciej Borzecki
Reformat list of built packages to a package per line format. Makes easier to cope with subsequent changes. Signed-off-by: Maciej Borzecki --- meta/recipes-core/systemd/systemd_228.bb | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git

[OE-core] [PATCH v2 0/7] systemd cleanups & trimming

2016-02-10 Thread Maciej Borzecki
This is a second iteration of patches aiming at providing more knobs for configuration of systemd. The default configuration of systemd produces a package of significant size. By carefully setting the knobs it is possible to enable/disable functionality that is required for particular use cases.

[OE-core] [PATCH v2 5/7] systemd: move some tools into systemd-extra-utils package

2016-02-10 Thread Maciej Borzecki
This patch attempts to split some of the extra functionality delivered by systemd utilities from the main package into a separate package. This allows for trimming the size of a default systemd installation down to ~7MB with all configuration features disabled. The new systemd-extra-utils package

[OE-core] [PATCH v2 7/7] systemd: rename systemd-zsh to systemd-zsh-completion

2016-02-10 Thread Maciej Borzecki
Try to keep consistent naming with bash-completion package. Signed-off-by: Maciej Borzecki --- meta/recipes-core/systemd/systemd_228.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/systemd/systemd_228.bb

[OE-core] [PATCH v2 3/7] classes/useradd: handle whitespace only USERADD/GROUPADD/GROUPMEMS

2016-02-10 Thread Maciej Borzecki
Useradd attempts to add users/groups even when {USERADD,GROUPADD,GROUPMEMS}_PARAM is whitespace only. This scenario is possible when variables and modified using one of +=, =+ operator, yet the content being added is conditional (i.e. may depend on PACKAGECONFIG flags). Signed-off-by: Maciej

[OE-core] [PATCH 2/7] gstreamer1.0: fix upstream check for unstable versions from git

2016-02-10 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_git.bb| 1 + meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_git.bb | 1 + meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_git.bb | 1 +

[OE-core] [PATCH 0/7] Version updates

2016-02-10 Thread Alexander Kanavin
A few version updates and fixes that have piled up. The following changes since commit 7d5d8d0cd985edf507c8d00e2e162d1b9fff3589: scripts/lib/bsp/engine: trailing whitespace cleanup (2016-02-08 10:54:56 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib

[OE-core] [PATCH 3/7] bash-completion: fix upstream version check

2016-02-10 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-support/bash-completion/bash-completion_2.1.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-support/bash-completion/bash-completion_2.1.bb

[OE-core] [PATCH 4/7] iso-codes: update to 3.65

2016-02-10 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- .../iso-codes/{iso-codes_3.64.bb => iso-codes_3.65.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/iso-codes/{iso-codes_3.64.bb => iso-codes_3.65.bb} (76%) diff

[OE-core] [PATCH 1/7] ffmpeg: update to 2.8.6

2016-02-10 Thread Alexander Kanavin
Add libxv dependency only when libavdevice is enabled (as nothing else needs it). Signed-off-by: Alexander Kanavin --- .../ffmpeg/{ffmpeg_2.8.5.bb => ffmpeg_2.8.6.bb} | 8 1 file changed, 4 insertions(+), 4 deletions(-) rename

[OE-core] [PATCH 5/7] libwnck3: update to 3.14.1

2016-02-10 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-gnome/libwnck/{libwnck3_3.14.0.bb => libwnck3_3.14.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-gnome/libwnck/{libwnck3_3.14.0.bb => libwnck3_3.14.1.bb} (77%) diff --git

[OE-core] [PATCH 7/7] pixz: fix upstream version check

2016-02-10 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-extended/pixz/pixz_1.0.6.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-extended/pixz/pixz_1.0.6.bb b/meta/recipes-extended/pixz/pixz_1.0.6.bb index 279fb54..67681d4 100644 ---

[OE-core] [PATCH 6/7] webkitgtk: update to 2.10.7

2016-02-10 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- meta/recipes-sato/webkit/{webkitgtk_2.10.5.bb => webkitgtk_2.10.7.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-sato/webkit/{webkitgtk_2.10.5.bb => webkitgtk_2.10.7.bb} (96%) diff --git

Re: [OE-core] issues with gcc 5 + mesa

2016-02-10 Thread Nicolas Dechesne
On Fri, Oct 9, 2015 at 9:03 AM, Khem Raj wrote: >> I am seeing this error on my board when compilng core-image-x11 based image: >> >> root@ifc6410:~# glxgears >> Running synchronized to the vertical refresh. The framerate should be >> approximately the same as the monitor

[OE-core] [Jethro][PATCH 2/2] uclibc: Security fix CVE-2016-2225

2016-02-10 Thread Armin Kuster
From: Armin Kuster CVE-2016-2225 Make sure to always terminate decoded string This change is being provide to comply to Yocto compatiblility. Signed-off-by: Armin Kuster --- meta/recipes-core/uclibc/uclibc-git.inc| 1 +

[OE-core] [Jethro][PATCH 1/2] uclibc: Security fix CVE-2016-2224

2016-02-10 Thread Armin Kuster
From: Armin Kuster CVE-2016-2224 Do not follow compressed items forever. This change is being provide to comply to Yocto compatiblity. Signed-off-by: Armin Kuster --- meta/recipes-core/uclibc/uclibc-git.inc| 1 +

[OE-core] [PATCH] classes/sanity: check_perl_modules provide output when fail

2016-02-10 Thread Aníbal Limón
When check_perl_modules fail is a good idea to print perl interpeter output for debug purposes. Signed-off-by: Aníbal Limón --- meta/classes/sanity.bbclass | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/classes/sanity.bbclass

Re: [OE-core] [PATCH 0/1] pseudo 1.7.5 [jethro][fido]

2016-02-10 Thread Peter Seebach
On Tue, 9 Feb 2016 22:52:53 +0100 Andreas Müller wrote: > Are user IDs affected? If yes there would be a chance to reduce loads > of host contamination warnings.. They could be in some cases, especially with build history. In most cases, packages were fine, but

[OE-core] [PATCH 2/2] freetype: update 2.6.2 -> 2.6.3

2016-02-10 Thread Andre McCurdy
Update LICENSE.TXT hash due to minor rewording to clarify licensing of fthash.c and fthash.h files. No changes to overall licensing. Other changes from the upstream changelog: I. IMPORTANT CHANGES - Khmer, Myanmar, Bengali, and Kannada script support has been added to the

[OE-core] [PATCH 0/2] freetype: formatting tweaks + update 2.6.2 -> 2.6.3

2016-02-10 Thread Andre McCurdy
Andre McCurdy (2): freetype: minor formatting improvements freetype: update 2.6.2 -> 2.6.3 .../{freetype_2.6.2.bb => freetype_2.6.3.bb} | 26 -- 1 file changed, 14 insertions(+), 12 deletions(-) rename meta/recipes-graphics/freetype/{freetype_2.6.2.bb =>

[OE-core] [PATCH 1/2] freetype: minor formatting improvements

2016-02-10 Thread Andre McCurdy
No functional changes. Signed-off-by: Andre McCurdy --- meta/recipes-graphics/freetype/freetype_2.6.2.bb | 22 -- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/meta/recipes-graphics/freetype/freetype_2.6.2.bb

[OE-core] [PATCH 00/11] Fixes/enhancements for devtool/recipetool/externalsrc

2016-02-10 Thread Paul Eggleton
Note in particular patch 6/11 which changes the behaviour of devtool modify without -x to extract by default which is a bit more logical (I'd been thinking about this for a while, but Khem suggested it most recently). The following changes since commit 4bd658f7dae76ae8790fd1dfdd89fa58a456a0a4:

[OE-core] [PATCH 01/11] classes/externalsrc: disable rm_work when active

2016-02-10 Thread Paul Eggleton
If you're using externalsrc, it's very likely that you're going to want to examine the intermediate build results even if the recipe builds successfully; therefore you won't want rm_work to delete those. Signed-off-by: Paul Eggleton ---

[OE-core] [PATCH 06/11] devtool: modify: make -x the default behaviour

2016-02-10 Thread Paul Eggleton
It's going to be more common for users not to have the prepared source tree for a recipe already, so the default behaviour ought to be to extract it for them from the recipe. Change the default to extract (effectively making the -x option a no-op) and add a --no-extract/-n option to disable it.

[OE-core] [PATCH 11/11] oe-selftest: devtool: add another devtool add test

2016-02-10 Thread Paul Eggleton
Add a test so we validate the following recently implemented/fixed aspects of "devtool add": * Adding from a local directory with no name specified * Auto-detecting the name and version from autoconf files * Setting SRC_URI and S from the local git repo * Showing the recipe file path in "devtool

[OE-core] [PATCH 03/11] devtool: commit for extra tasks that modify source when extracting

2016-02-10 Thread Paul Eggleton
When extracting source for a recipe, if there are additional custom tasks run that make changes to the source, create a commit in the generated git branch so they are contained. This is particularly useful for tasks that come before do_patch since otherwise the changes might get incorporated in

[OE-core] [PATCH 07/11] devtool: add: fix adding from a local source directory

2016-02-10 Thread Paul Eggleton
Fix a regression introduced in in OE-Core revision aedfc5a5db1c4b2b80a36147c9a13b31764d91dd where specifying a local source tree without specifying a name resulted in a traceback. Fixes [YOCTO #9086]. Signed-off-by: Paul Eggleton ---

[OE-core] [PATCH 10/11] recipetool: create: set S when we set SRC_URI from local git repo

2016-02-10 Thread Paul Eggleton
If you specify a local directory which happens to be a git repository with an origin remote (and it is in fact remote), we can use that for SRC_URI as implemented by OE-Core revision b143d414846854dc8b3e0a47358daf5646eded38, however we also need to set S if the recipe is going to be of any use

[OE-core] [PATCH 04/11] recipetool: create: support cmake find_library directive

2016-02-10 Thread Paul Eggleton
CMake supports a find_library() directive to find named libraries, so detect dependencies from this. Signed-off-by: Paul Eggleton --- scripts/lib/recipetool/create_buildsys.py | 10 ++ 1 file changed, 10 insertions(+) diff --git

[OE-core] [PATCH 08/11] recipetool: create: ensure URL parameters don't make it into the name

2016-02-10 Thread Paul Eggleton
When auto-detecting the name for a recipe from the URL, strip off any parameters (";name=value...") before parsing the URL, otherwise this just ends up in the recipe name which is undesirable. Signed-off-by: Paul Eggleton --- scripts/lib/recipetool/create.py | 2

[OE-core] [PATCH 02/11] classes/externalsrc: create symlinks for workdir and logs

2016-02-10 Thread Paul Eggleton
Auto-create symlinks in the source directory to the work directory (${WORKDIR}) and logs directory (${T}) so that they are easier for the user to find. This is particularly useful within the extensible SDK where the user is less likely to be familiar enough with the structure of the build system

[OE-core] [PATCH 05/11] recipetool: create: determine name/version from github/bitbucket URLs

2016-02-10 Thread Paul Eggleton
Both BitBucket and GitHub provide "release" downloads that unfortunately don't include the actual project name. For recipetool this means we have to have special handling for these URLs or else the current code assumes the name of the project is something like "v0.9.1". Borrow and adapt some code

[OE-core] [PATCH 09/11] recipetool: create: convert http git URLs that don't end in .git but contain /git/

2016-02-10 Thread Paul Eggleton
When recipetool create is given a URL that starts with http(s):// and contains /git/, such as the URLs at git.yoctoproject.org, it's fairly safe to assume it's a git repository and not something that should be fetched with wget, so rewrite the URL. Signed-off-by: Paul Eggleton