Re: [OE-core] [PATCH] insane: Add SH4 musl mapping to the QA arch tests

2016-12-08 Thread Vladimir Zapolskiy
Hello Khem, On 12/09/2016 03:29 AM, Khem Raj wrote: > >> On Dec 6, 2016, at 7:17 AM, Vladimir Zapolskiy <v...@mleia.com> wrote: >> >> This change allows to pass QA for packages built with sh4-oe-linux-musl >> toolchain, the problem is reproted while b

[OE-core] [PATCH] insane: Add SH4 musl mapping to the QA arch tests

2016-12-06 Thread Vladimir Zapolskiy
This change allows to pass QA for packages built with sh4-oe-linux-musl toolchain, the problem is reproted while building core-image-minimal target: ERROR: readline-7.0-r0 do_package_qa: Error executing a python function in exec_python_func() autogenerated Signed-off-by: Vladimir Zapolskiy

[OE-core] [PATCH 1/2] chrpath: correct subprocess.Popen.communicate() return values

2016-08-05 Thread Vladimir Zapolskiy
point of view, however formally there is no error in the code. The change is desired to have to avoid copy-paste errors in future. Signed-off-by: Vladimir Zapolskiy <v...@mleia.com> --- meta/classes/chrpath.bbclass | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-)

[OE-core] [PATCH 2/2] package: correct subprocess.Popen.communicate() return values

2016-08-05 Thread Vladimir Zapolskiy
point of view, however formally there is no error in the code. The change is desired to have to avoid copy-paste errors in future. Signed-off-by: Vladimir Zapolskiy <v...@mleia.com> --- meta/classes/package.bbclass | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff

[OE-core] [PATCH 0/2] meta/classes: correct subprocess.Popen.communicate() return values

2016-08-05 Thread Vladimir Zapolskiy
astonishment while reading code and of course copy-paste errors in future. Vladimir Zapolskiy (2): chrpath: correct subprocess.Popen.communicate() return values package: correct subprocess.Popen.communicate() return values meta/classes/chrpath.bbclass | 18 +- meta/classes

Re: [OE-core] [PATCH] package_ipk: allow to specify OPKG_ARGS in local.conf

2015-12-02 Thread Vladimir Zapolskiy
Hi Ross, On 02.12.2015 11:48, Burton, Ross wrote: > > On 2 December 2015 at 04:48, Vladimir Zapolskiy <v...@mleia.com > <mailto:v...@mleia.com>> wrote: > > sh: /tmp/opkg-5jPLag/run-postinsts-UsUtaI/preinst: /bin/sh: bad > interpreter: Permission denied &g

[OE-core] [PATCH] package_ipk: allow to specify OPKG_ARGS in local.conf

2015-12-01 Thread Vladimir Zapolskiy
nterpreter: Permission denied sh: /tmp/opkg-5jPLag/busybox-syslog-sJmfbw/preinst: /bin/sh: bad interpreter: Permission denied ... Signed-off-by: Vladimir Zapolskiy <v...@mleia.com> --- meta/classes/package_ipk.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --gi

[OE-core] [PATCH] lttng: support more compatible hosts

2012-10-11 Thread Vladimir Zapolskiy
THis change extends COMAPTIBLE_HOST matchings, which allows to include more hosts with TARGET_OS like linux-gnuspe or linux-gnueabi etc. Signed-off-by: Vladimir Zapolskiy vladimir_zapols...@mentor.com --- meta/recipes-kernel/lttng-2.0/babeltrace_0.12.bb |4 ++-- meta/recipes-kernel/lttng

Re: [OE-core] Feature Developement vs. Stablisation and Bug fixing

2012-09-12 Thread Vladimir Zapolskiy
Hi Richard, On 12.09.2012 13:15, Richard Purdie wrote: Hi, I know in the past this has taken some people by surprise. Both OE-Core and the Yocto Project are aiming at release points every six months, roughly October and April. In order to prepare for those there is a period of 6-8 weeks

[OE-core] [PATCH 5/6] classes/license: correct license info in lisense.manifest

2012-09-10 Thread Vladimir Zapolskiy
Trivial change, do not cut off plus symbol from license name, otherwise information about package license is corrupted. Signed-off-by: Vladimir Zapolskiy vladimir_zapols...@mentor.com --- meta/classes/license.bbclass |9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git

[OE-core] [PATCH 4/6] classes/license: account LICENSE_${pkg} values in manifest

2012-09-10 Thread Vladimir Zapolskiy
Trivial change, process LICENSE_${pkg} and LICENSE values. This fixes multiple cases, when license is not specified at all in license.manifest Signed-off-by: Vladimir Zapolskiy vladimir_zapols...@mentor.com --- meta/classes/license.bbclass |7 ++- 1 file changed, 6 insertions(+), 1

[OE-core] [PATCH 6/6] classes/license: place all found licenses on one line

2012-09-10 Thread Vladimir Zapolskiy
Cosmetic change, settle all found licenses into one line and report warning about missing licenses loudly. Signed-off-by: Vladimir Zapolskiy vladimir_zapols...@mentor.com --- meta/classes/license.bbclass |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/classes

[OE-core] [PATCH 1/6] classes/license: define LICENSE_MANIFEST variable

2012-09-10 Thread Vladimir Zapolskiy
Cosmetic change, saves space and reduces code line length. Signed-off-by: Vladimir Zapolskiy vladimir_zapols...@mentor.com --- meta/classes/license.bbclass | 21 +++-- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/meta/classes/license.bbclass b/meta/classes

[OE-core] [PATCH 3/6] classes/license: remove redundant nested if statements

2012-09-10 Thread Vladimir Zapolskiy
Cosmetic change, which improves code perception. Also check for locale packages firstly, this shall improve performance a little. Signed-off-by: Vladimir Zapolskiy vladimir_zapols...@mentor.com --- meta/classes/license.bbclass | 40 +++- 1 file changed, 23

[OE-core] [PATCH 2/6] classes/license: check license manifest for double records

2012-09-10 Thread Vladimir Zapolskiy
Trivial typo bugfix, avoid multiple records in license.manifest. Signed-off-by: Vladimir Zapolskiy vladimir_zapols...@mentor.com --- meta/classes/license.bbclass |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass

[OE-core] [PATCH 0/6] classes/license: various bugfixes and improvements

2012-09-10 Thread Vladimir Zapolskiy
to improve performance and source code readability. Vladimir Zapolskiy (6): classes/license: define LICENSE_MANIFEST variable classes/license: check license manifest for double records classes/license: remove redundant nested if statements classes/license: account LICENSE_${pkg} values

[OE-core] [PATCH 6/6 v2] classes/license: place all found licenses on one line

2012-09-10 Thread Vladimir Zapolskiy
Cosmetic change, settle all found licenses into one line and report warning about missing licenses loudly. Signed-off-by: Vladimir Zapolskiy vladimir_zapols...@mentor.com --- Changes from v1 to v2: * interpret backslash escapes in the closing echo meta/classes/license.bbclass |8 1