[OE-core] [PATCH v2] slang: 2.3.0 -> 2.3.1

2016-12-07 Thread Huang Qiyu
1)Upgrade slang from 2.3.0 to 2.3.1. 2)Delete 0001-Fix-error-conflicting-types-for-posix_close.patch, since it is integrated upstream. Signed-off-by: Huang Qiyu --- ...x-error-conflicting-types-for-posix_close.patch | 39 --

[OE-core] [PATCH] mpfr: 3.1.4 -> 3.1.5

2016-12-07 Thread Huang Qiyu
Upgrade mpfr from 3.1.4 to 3.1.5. Signed-off-by: Huang Qiyu --- meta/recipes-support/mpfr/{mpfr_3.1.4.bb => mpfr_3.1.5.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/mpfr/{mpfr_3.1.4.bb => mpfr_3.1.5.bb} (75%) diff --git

Re: [OE-core] [PATCH 3/4] kern-tools: fix processing for no branch meta-data

2016-12-07 Thread Bruce Ashfield
On 2016-12-07 6:50 PM, Trevor Woerner wrote: On Wed, Dec 7, 2016 at 1:05 PM, Trevor Woerner wrote: On Wed, Dec 7, 2016 at 11:18 AM, Bruce Ashfield wrote: With the attached patch, I see nothing else that is named in /tmp/ If you have the

[OE-core] [PATCH] slang: 2.3.0 -> 2.3.1

2016-12-07 Thread Huang Qiyu
1)Upgrade slang from 2.3.0 to 2.3.1. 2)Delete one patch, since it is integrated upstream. 0001-Fix-error-conflicting-types-for-posix_close.patch Signed-off-by: Huang Qiyu --- meta/recipes-extended/slang/{slang_2.3.0.bb => slang_2.3.1.bb} | 6 +++--- 1 file

[OE-core] [PATCH v2] xkeyboard-config: 2.18 -> 2.19

2016-12-07 Thread Zheng Ruoqin
Upgrade xkeyboard-config from 2.18 to 2.19 Signed-off-by: zhengruoqin --- .../xorg-lib/{xkeyboard-config_2.18.bb => xkeyboard-config_2.19.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-graphics/xorg-lib/{xkeyboard-config_2.18.bb

[OE-core] [PATCH] libnotify : 0.7.6 -> 0.7.7

2016-12-07 Thread Huang Qiyu
Upgrade libnotify from 0.7.6 to 0.7.7. Signed-off-by: Huang Qiyu --- .../libnotify/{libnotify_0.7.6.bb => libnotify_0.7.7.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-gnome/libnotify/{libnotify_0.7.6.bb =>

Re: [OE-core] [PATCH 3/4] kern-tools: fix processing for no branch meta-data

2016-12-07 Thread Trevor Woerner
On Wed, Dec 7, 2016 at 1:05 PM, Trevor Woerner wrote: > On Wed, Dec 7, 2016 at 11:18 AM, Bruce Ashfield > wrote: >> With the attached patch, I see nothing else that is named in /tmp/ >> >> If you have the cycles, can you give it a try and let me

Re: [OE-core] [PATCH 0/4] Load devtool and reciptool plugins in a well-defined manner

2016-12-07 Thread Paul Eggleton
On Tue, 06 Dec 2016 07:37:16 Ola x Nilsson wrote: > Ping? I guess Ross / Richard were waiting for my ack - sorry about that. Acked-by: Paul Eggleton Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre --

[OE-core] [PATCHv2 23/32] oeqa/utils: Move targetbuild to buildproject module

2016-12-07 Thread Aníbal Limón
The new buildproject module will contain only BuildProject class a helper class for build source code. The remaining classes TargetBuildProject and SDKBuildProject was move to runtime and sdk respectively. [YOCTO #10599] Signed-off-by: Aníbal Limón Signed-off-by:

[OE-core] [PATCHv2 24/32] oeqa/utils: {Target, SDK, }BuildProject remove dependency of bb

2016-12-07 Thread Aníbal Limón
Don't use bitbake references inside utils modules, in order todo that changes getVar calls for arguments in the __init__ method like dl_dir for all the classes and testlogdir, builddatetime in SDKBUildProject. Also don't export proxies inside _download_archive method, a good practice is to setup

[OE-core] [PATCHv2 32/32] oeqa: Fix files handling on runtime tests.

2016-12-07 Thread Aníbal Limón
Common files was move to oeqa/files from oeqa/runtime/files because the same files are used across Runtime,SDK,eSDK tests. Signed-off-by: Aníbal Limón --- meta/classes/testexport.bbclass | 5 + meta/lib/oeqa/oetest.py | 1 + meta/lib/oeqa/runtime/gcc.py

[OE-core] [PATCHv2 28/32] oeqa/sdkext: Adds case and context modules.

2016-12-07 Thread Aníbal Limón
The extensible sdk context and case modules extends the sdk ones, this means that the tests from sdk are run also the sdkext tests. Enables support in context for use oe-test esdk command for run the test suites, the same options of sdk are required for run esdk tests. Removes old related to

[OE-core] [PATCHv2 31/32] oeqa/runtime: Fix TargetBuildProject instances

2016-12-07 Thread Aníbal Limón
TargetBuildProject was refactored to avoid bitbake dependency so the instance don't allow to pass data store anymore. classes/testimage: Export proxies before run tests The TargetBuildProject based tests download archives from network. Signed-off-by: Aníbal Limón

[OE-core] [PATCHv2 27/32] oeqa/sdkext: Move test cases inside cases directory

2016-12-07 Thread Aníbal Limón
For match with the new structure of the OEQA framework. In the new framework Test component base directory in this case sdk module will contain case and context implementations. [YOCTO #10599] Signed-off-by: Aníbal Limón --- meta/lib/oeqa/sdkext/__init__.py

[OE-core] [PATCHv2 30/32] oeqa/sdkext/cases: Migrate test case to new OEQA framework

2016-12-07 Thread Aníbal Limón
Summary, - Changes base case class to OESDKExtTest. - Changes decorator classes to new ones. - Chnages variable names sdktestdir -> sdk_dir. - Added missing license to MIT. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/sdk/cases/buildgalculator.py | 2 +-

[OE-core] [PATCHv2 29/32] classes/testsdk: Migrate to use the new OESDKExtTestContext

2016-12-07 Thread Aníbal Limón
Signed-off-by: Aníbal Limón --- meta/classes/testsdk.bbclass | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index 24529ca..1d6547a 100644 --- a/meta/classes/testsdk.bbclass

[OE-core] [PATCHv2 26/32] classes/testsdk: Remove the need of TEST_LOG_DIR variable

2016-12-07 Thread Aníbal Limón
The TEST_LOG_DIR was used for store sdk_target_log this log contains the output of the run of build commands now that information could be found also on log.do_testsdk under WORKDIR. The log will continue to store into SDK_DIR instead of TEST_LOG_DIR. Signed-off-by: Aníbal Limón

[OE-core] [PATCHv2 25/32] oeqa/sdk/cases: Migrate tests to the new OEQA framework

2016-12-07 Thread Aníbal Limón
Summary of the changes: - Remove auto extend_path using pkgutil at __init__, is not needed. - Change base class to OESDKTestCase. - Add td_vars attr to set dependencies of certain variables in test data. - Change skips from module level to class level because Test context (tc) now isn't at

[OE-core] [PATCHv2 19/32] oeqa/sdk: Move test cases inside cases directory

2016-12-07 Thread Aníbal Limón
For match with the new structure of the OEQA framework. In the new framework Test component base directory in this case sdk module will contain case and context implementations. [YOCTO #10599] Signed-off-by: Aníbal Limón Signed-off-by: Mariano Lopez

[OE-core] [PATCHv2 22/32] classes/testsdk: Migrates testsdk.bbclass to use new OESDKTestContext

2016-12-07 Thread Aníbal Limón
The functionality provided is the same with imporvements on code reuse and better interfaces. Signed-off-by: Aníbal Limón --- meta/classes/testsdk.bbclass | 67 1 file changed, 55 insertions(+), 12 deletions(-) diff

[OE-core] [PATCHv2 21/32] oeqa/sdk: Add case and context modules for the SDK component

2016-12-07 Thread Aníbal Limón
Adds case and context modules for SDK based on oetest.py old code. Enables SDK Test component usage with oe-test, the SDK Test component adds command line options for specify sdk installed dir, sdk environment and target/hosts maniftest. [YOCTO #10599] Signed-off-by: Aníbal Limón

[OE-core] [PATCHv2 20/32] oeqa/{runtime, sdk}/files: Move testsdkmakefile from runtime to sdk module

2016-12-07 Thread Aníbal Limón
It doesn't make sense to have files related to sdk module into runtime module. [YOCTO #10599] Signed-off-by: Aníbal Limón Signed-off-by: Mariano Lopez --- meta/lib/oeqa/{runtime => sdk}/files/testsdkmakefile | 0 1 file changed, 0

[OE-core] [PATCHv2 18/32] oeqa: Move common files to oeqa/files instead of runtime only

2016-12-07 Thread Aníbal Limón
Those files are used by runtime and sdk test cases, so move to base directory of oeqa module. [YOCTO #10599] Signed-off-by: Aníbal Limón Signed-off-by: Mariano Lopez --- meta/lib/oeqa/{runtime => }/files/test.c | 0

[OE-core] [PATCHv2 17/32] oeqa/utils/path: Add remove_safe function

2016-12-07 Thread Aníbal Limón
Checks if path exists before try to remove of avoid exception. Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/utils/path.py | 5 + 1 file changed, 5 insertions(+) diff --git a/meta/lib/oeqa/core/utils/path.py b/meta/lib/oeqa/core/utils/path.py index

[OE-core] [PATCHv2 15/32] classes/populate_sdk_base: Add write_sdk_test_data to postprocess

2016-12-07 Thread Aníbal Limón
This function will generates testdata.json per SDK type. [YOCTO #10231] Signed-off-by: Aníbal Limón --- meta/classes/populate_sdk_base.bbclass | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/meta/classes/populate_sdk_base.bbclass

[OE-core] [PATCHv2 14/32] classes/rootfs-postcommands: Add write_image_test_data

2016-12-07 Thread Aníbal Limón
This function will generates testdata.json by image type. [YOCTO #10231] Signed-off-by: Aníbal Limón --- meta/classes/rootfs-postcommands.bbclass | 18 ++ 1 file changed, 18 insertions(+) diff --git a/meta/classes/rootfs-postcommands.bbclass

[OE-core] [PATCHv2 16/32] oeqa/core: Change name of d to td

2016-12-07 Thread Aníbal Limón
The d variable references the test data into a test context, so makes a more sense to call it: td (test data). [YOCTO #10231] Signed-off-by: Aníbal Limón --- meta/lib/oeqa/core/case.py | 22 ++--

[OE-core] [PATCHv2 11/32] oeqa/core/cases: Add example test cases

2016-12-07 Thread Aníbal Limón
Serves as an first input of how to the OEQA framework works. Signed-off-by: Aníbal Limón Signed-off-by: Mariano Lopez --- meta/lib/oeqa/core/cases/__init__.py | 0 meta/lib/oeqa/core/cases/example/data.json | 1 +

[OE-core] [PATCHv2 09/32] scripts/oe-test: Add new oe-test script

2016-12-07 Thread Aníbal Limón
The new oe-test script will be use to run test components with one single script. The oe-test script search for test components inside meta/lib/oeqa, the test components needs to implement OETestContextExecutor inside context module in order to be supported by oe-test. [YOCTO #10230]

[OE-core] [PATCHv2 10/32] oeqa/core/context: Add support of OETestContextExecutor

2016-12-07 Thread Aníbal Limón
The OETestContextExecutor class supports to use oe-test for run core test component also is a base class for the other test components (runtime, sdk, selftest). Te principal functionality is to support cmdline parsing and execution of OETestContext, the test components could extend the common

[OE-core] [PATCHv2 13/32] oe/data: Add export2json function

2016-12-07 Thread Aníbal Limón
The export2json function export the variables contained in the data store to JSON format, the main usage for now will be to provide test data to QA framework. Signed-off-by: Aníbal Limón --- meta/lib/oe/data.py | 28 1 file changed, 28

[OE-core] [PATCHv2 12/32] oeqa/core: Add README

2016-12-07 Thread Aníbal Limón
The README has an introduction and explains how to run the test suite and creates a new Test component. Signed-off-by: Aníbal Limón Signed-off-by: Mariano Lopez --- meta/lib/oeqa/core/README | 38

[OE-core] [PATCHv2 08/32] oeqa/core: Add tests for the OEQA framework

2016-12-07 Thread Aníbal Limón
From: Mariano Lopez This test suite covers the current functionality for the OEQA framework. For run certain test suite, $ cd meta/lib/oeqa/core/tests $ ./test_data.py Signed-off-by: Aníbal Limón Signed-off-by: Mariano Lopez

[OE-core] [PATCHv2 07/32] oeqa/core/decorator: Add support for OETestDataDepends and skipIfDataVar

2016-12-07 Thread Aníbal Limón
The OETestDataDepends decorator skips a test case if a variable isn't into test data (d). The skipIfDataVar decorator skips a test case if a variable has certain value. Signed-off-by: Aníbal Limón Signed-off-by: Mariano Lopez ---

[OE-core] [PATCHv2 06/32] oeqa/core/decorator: Add support for OETimeout decorator

2016-12-07 Thread Aníbal Limón
From: Mariano Lopez The OETimeout provides support for specify certain timeout in seconds for a test case, if the timeout is reach the SIGALRM is sent and an exception is raised to notify the timeout. [YOCTO #10235] Signed-off-by: Mariano Lopez

[OE-core] [PATCHv2 02/32] oeqa/core: Add utils module for OEQA framework

2016-12-07 Thread Aníbal Limón
From: Mariano Lopez misc: Functions for transform object to other types. path: Functions for path handling. test: Functions for operations related to test cases and suites. [YOCTO #10232] Signed-off-by: Mariano Lopez Signed-off-by:

[OE-core] [PATCHv2 04/32] oeqa/core/decorator: Add support for OETestDepends

2016-12-07 Thread Aníbal Limón
The OETestDepends decorator could be used over test cases to define some dependency between them. At loading time sorting the tests to grauntee that a test case executes before also raise an exception if found a circular dependency between test cases. At before test case run reviews if the

[OE-core] [PATCHv2 05/32] oeqa/core/decorator: Add support for OETestID and OETestTag

2016-12-07 Thread Aníbal Limón
From: Mariano Lopez These two decorators stores certain TAG or ID for the test case also provides support for filtering in loading step. [YOCTO #10236] Signed-off-by: Mariano Lopez Signed-off-by: Aníbal Limón

[OE-core] [PATCHv2 03/32] oeqa/core: Add loader, context and decorator modules

2016-12-07 Thread Aníbal Limón
loader: Implements OETestLoader handling OETestDecorator and filtering support when load tests. The OETestLoader is responsible to set custom methods, attrs of the OEQA frameowork. [YOCTO #10231] [YOCTO #10317] [YOCTO #10353] decorator: Add base class OETestDecorator to provide a common way to

[OE-core] [PATCHv2 01/32] oeqa/core: Add base OEQA framework

2016-12-07 Thread Aníbal Limón
case: Defines OETestCase base class that provides custom methods/attrs defined by the framework. Every OETestCase instance contains a reference to the test data (d), the test context (tc) and the logger. Also implements _oe{SetUp,TearDown}Class for make special handling of OEQA

[OE-core] [PATCHv2 00/32] OEQA Framework Refactor & Improvements

2016-12-07 Thread Aníbal Limón
This patchset is related to OEQA Framework for details read the RFC send to the Openembedded architecture ML. http://lists.openembedded.org/pipermail/openembedded-architecture/2016-December/000351.html This v2 fixes sdk extensible test case sdk_update. The following changes since commit

[OE-core] [PATCH] Revert "webkitgtk: drop patch 0001-WebKitMacros-Append-to-I-and-not-to-isystem.patch"

2016-12-07 Thread Carlos Alberto Lopez Perez
This reverts commit 812c52f654c1bccca033163100055e3a8b8cda6e. Upstream fixed the issue with GCC. But the build still fails with Clang. Therefore reintroduce this patch until a better solution is found. Upstream bug: https://bugs.webkit.org/show_bug.cgi?id=161697 Signed-off-by: Carlos Alberto

Re: [OE-core] [oe-core][PATCH] webkitgtk: drop patch 0001-WebKitMacros-Append-to-I-and-not-to-isystem.patch

2016-12-07 Thread Khem Raj
On Wed, Dec 7, 2016 at 11:46 AM, Carlos Alberto Lopez Perez wrote: > On 05/12/16 23:56, Khem Raj wrote: >> Carlos >> >> webkitgtk fails now e.g. see >> >> http://errors.yoctoproject.org/Errors/Details/111221/ >> >> >>

Re: [OE-core] [oe-core][PATCH] webkitgtk: drop patch 0001-WebKitMacros-Append-to-I-and-not-to-isystem.patch

2016-12-07 Thread Carlos Alberto Lopez Perez
On 05/12/16 23:56, Khem Raj wrote: > Carlos > > webkitgtk fails now e.g. see > > http://errors.yoctoproject.org/Errors/Details/111221/ > > > fatal error: 'stdlib.h' file not found > #include_next > > This is when building with clang, I

Re: [OE-core] [PATCH] gstreamer1.0-plugins-bad: Add PKG_CONFIG_SYSROOT_DIR to output of pkg-config

2016-12-07 Thread Khem Raj
On Wed, Dec 7, 2016 at 4:25 AM, Jussi Kukkonen wrote: > > > On 5 December 2016 at 21:08, Khem Raj wrote: >> >> >> On Dec 5, 2016, at 5:20 AM, Jussi Kukkonen >> wrote: >> >> >> >> On 1 December 2016 at 10:37, Khem Raj

Re: [OE-core] [PATCH] liburi-perl: Uprev from 1.60 to 1.71 to pickup bugfixes and compatibilty

2016-12-07 Thread Jason Wessel
Looks like someone beat me to it, but it had not been merged yet, so this can be ignored. Cheers, Jason. On 12/07/2016 12:31 PM, Jason Wessel wrote: The exo recipe from meta-oe no longer compiles and some parts of URI::Escape no longer work due to changes in perl 5. The main reason for the

[OE-core] [PATCH] liburi-perl: Uprev from 1.60 to 1.71 to pickup bugfixes and compatibilty

2016-12-07 Thread Jason Wessel
The exo recipe from meta-oe no longer compiles and some parts of URI::Escape no longer work due to changes in perl 5. The main reason for the uprev is to pickup the fix for this problem: ERROR: \C is in regex; marked by <-- HERE in m/(\C <-- HERE )/ at /perl5/URI/Escape.pm line 205. The perl

Re: [OE-core] [PATCH V2 5/6] runqemu: fixes for slirp, network device and hostfwd

2016-12-07 Thread Randy Witt
def setup_slirp(self): """Setup user networking""" if self.fstype == 'nfs': self.setup_nfs() self.kernel_cmdline_script += ' ip=dhcp' -self.set('NETWORK_CMD', self.get('QB_SLIRP_OPT')) +# Port mapping +hostfwd =

Re: [OE-core] [PATCH 3/4] kern-tools: fix processing for no branch meta-data

2016-12-07 Thread Trevor Woerner
On Wed, Dec 7, 2016 at 11:18 AM, Bruce Ashfield wrote: > With the attached patch, I see nothing else that is named in /tmp/ > > If you have the cycles, can you give it a try and let me know ? Yes, I'm giving it a whirl right now. Thanks! --

Re: [OE-core] [PATCH 1/3] cve-check: allow recipes to override the product name

2016-12-07 Thread Mariano Lopez
On 07/12/16 10:50, Ross Burton wrote: > Add a new variable CVE_PRODUCT for the product name to look up in the NVD > database. Default this to BPN, but allow recipes such as tiff (which is > libtiff > in NVD) to override it. > > Signed-off-by: Ross Burton > I like the

[OE-core] [PATCH 2/3] tiff: set CVE_PRODUCT

2016-12-07 Thread Ross Burton
This is 'libtiff' in NVD. Signed-off-by: Ross Burton --- meta/recipes-multimedia/libtiff/tiff_4.0.6.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-multimedia/libtiff/tiff_4.0.6.bb b/meta/recipes-multimedia/libtiff/tiff_4.0.6.bb index

[OE-core] [PATCH 1/3] cve-check: allow recipes to override the product name

2016-12-07 Thread Ross Burton
Add a new variable CVE_PRODUCT for the product name to look up in the NVD database. Default this to BPN, but allow recipes such as tiff (which is libtiff in NVD) to override it. Signed-off-by: Ross Burton --- meta/classes/cve-check.bbclass | 6 +- 1 file changed, 5

[OE-core] [PATCH 3/3] curl: set CVE_PRODUCT

2016-12-07 Thread Ross Burton
This is 'libcurl' in NVD. Signed-off-by: Ross Burton --- meta/recipes-support/curl/curl_7.51.0.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-support/curl/curl_7.51.0.bb b/meta/recipes-support/curl/curl_7.51.0.bb index e1a996b..a9589b8 100644 ---

Re: [OE-core] [PATCH V2 0/6] runqemu: fix for slirp, network device and hostfwd

2016-12-07 Thread Nathan Rossi
On 6 December 2016 at 19:01, Robert Yang wrote: > > > On 12/06/2016 04:55 PM, Robert Yang wrote: >> >> * V2 >> - Add QB_NETWORK_DEVICE to set network device for both slirp and tap, >> the idea is from Randy and Nathan. > > > Add Randy and Nathan in the loop, I had

Re: [OE-core] [PATCH 3/4] kern-tools: fix processing for no branch meta-data

2016-12-07 Thread Bruce Ashfield
On 2016-12-07 10:11 AM, Trevor Woerner wrote: This patch does fix the raspberrypi issue, and it has been pushed, thankfully. But I'm still seeing hard-coded filenames in /tmp that are messing up the ability for more than one person to use a given build machine. E.g.:

Re: [OE-core] [PATCH 00/33] Accumulated patches for deb packaging

2016-12-07 Thread Alexander Kanavin
On 12/07/2016 05:30 PM, Andreas Oberritter wrote: These are most of my patches which accumulated since our distro switched from opkg to dpkg and apt two years ago. They were tested thoroughly on dora and krogoth and just a little bit on master. How about updating apt and dpkg to latest

Re: [OE-core] [PATCH 00/33] Accumulated patches for deb packaging

2016-12-07 Thread Andreas Oberritter
Hi Alex, On 07.12.2016 13:25, Alexander Kanavin wrote: > On 12/06/2016 01:49 PM, Andreas Oberritter wrote: >> These are most of my patches which accumulated since our distro >> switched from opkg to dpkg and apt two years ago. They were tested >> thoroughly on dora and krogoth and just a little

Re: [OE-core] [PATCH 3/4] kern-tools: fix processing for no branch meta-data

2016-12-07 Thread Bruce Ashfield
On 2016-12-07 10:11 AM, Trevor Woerner wrote: This patch does fix the raspberrypi issue, and it has been pushed, thankfully. But I'm still seeing hard-coded filenames in /tmp that are messing up the ability for more than one person to use a given build machine. E.g.:

Re: [OE-core] [PATCH 3/4] kern-tools: fix processing for no branch meta-data

2016-12-07 Thread Trevor Woerner
This patch does fix the raspberrypi issue, and it has been pushed, thankfully. But I'm still seeing hard-coded filenames in /tmp that are messing up the ability for more than one person to use a given build machine. E.g.: /tmp/patch.standard.arm-versatile-926ejs.queue

[OE-core] [PATCH] wic: Create a logical partition only when it is really mandatory

2016-12-07 Thread Alessio Igor Bogani
Don't worth bother with logical partition on MBR partition type (aka msdos) if disk image generated by wic should have 4 partitions. Signed-off-by: Alessio Igor Bogani --- scripts/lib/wic/utils/partitionedfs.py | 7 --- 1 file changed, 4 insertions(+), 3

Re: [OE-core] what is the closest alternative to red hat's ABRT in OE?

2016-12-07 Thread Burton, Ross
On 7 December 2016 at 13:37, Robert P. J. Day wrote: > and pretty sure i asked this before ... is there some reasonable > equivalent to "sosreport" for OE? > For people who don't run Fedora, you might have better luck saying what functionality you're after. Ross --

Re: [OE-core] what is the closest alternative to red hat's ABRT in OE?

2016-12-07 Thread Robert P. J. Day
On Tue, 6 Dec 2016, Maciej Borzęcki wrote: > On Tue, Dec 6, 2016 at 3:49 PM, Robert P. J. Day > wrote: > > > > as in: > > > > https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/ch-abrt.html > > > > specifically, to manage core

Re: [OE-core] [PATCH v2] less: 481 -> 487

2016-12-07 Thread Alexander Kanavin
On 12/07/2016 08:11 PM, Huang Qiyu wrote: Upgrade less from 481 to 487. License checksum changes are not related to license changes. You should still say what has caused them, however. Alex -- ___ Openembedded-core mailing list

Re: [OE-core] [PATCH] less: 481 -> 487

2016-12-07 Thread Alexander Kanavin
On 12/07/2016 01:05 AM, Huang Qiyu wrote: LICENSE = "GPLv3+ | BSD-2-Clause" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ -file://LICENSE;md5=48c26a307f91af700e1f00585f215aaf" +

Re: [OE-core] [PATCH] gstreamer1.0-plugins-bad: Add PKG_CONFIG_SYSROOT_DIR to output of pkg-config

2016-12-07 Thread Jussi Kukkonen
On 5 December 2016 at 21:08, Khem Raj wrote: > > On Dec 5, 2016, at 5:20 AM, Jussi Kukkonen > wrote: > > > > On 1 December 2016 at 10:37, Khem Raj wrote: > >> When configure pokes for wayland-protocols isntallations it ended up

Re: [OE-core] [PATCH 00/33] Accumulated patches for deb packaging

2016-12-07 Thread Alexander Kanavin
On 12/06/2016 01:49 PM, Andreas Oberritter wrote: These are most of my patches which accumulated since our distro switched from opkg to dpkg and apt two years ago. They were tested thoroughly on dora and krogoth and just a little bit on master. How about updating apt and dpkg to latest

Re: [OE-core] tiff: fix several tiff CVE issues

2016-12-07 Thread Alexander Kanavin
On 12/07/2016 10:01 AM, mingli...@windriver.com wrote: These commits fix several tiff CVE issues: CVE-2016-9533, CVE-2016-9534, CVE-2016-9535, CVE-2016-9536, CVE-2016-9537 and CVE-2016-9538 Please update tiff to latest upstream version (see http://packages.yoctoproject.org/), and then apply

Re: [OE-core] [PATCH] xkeyboard-config: 2.18 -> 2.19

2016-12-07 Thread Jussi Kukkonen
Since you're already resending: please set "diff.renames" in your git configuration to get smaller diffs. Example from my ~/.gitconfig: [diff] renames = true Thanks, Jussi On 7 December 2016 at 13:05, Burton, Ross wrote: > Can you resend with a proper From:

Re: [OE-core] [PATCH] xkeyboard-config: 2.18 -> 2.19

2016-12-07 Thread Burton, Ross
Can you resend with a proper From: address please not just root? Ross On 7 December 2016 at 10:33, root wrote: > Upgrade xkeyboard-config from 2.18 to 2.19 > > Signed-off-by: zhengruoqin > --- > .../xorg-lib/xkeyboard-config_2.18.bb

[OE-core] [PATCH] xkeyboard-config: 2.18 -> 2.19

2016-12-07 Thread root
Upgrade xkeyboard-config from 2.18 to 2.19 Signed-off-by: zhengruoqin --- .../xorg-lib/xkeyboard-config_2.18.bb | 31 -- .../xorg-lib/xkeyboard-config_2.19.bb | 31 ++ 2 files changed, 31

[OE-core] [PATCH v2] cups: 2.1.4 -> 2.2.1

2016-12-07 Thread Huang Qiyu
Upgrade cups from 2.1.4 to 2.2.1. License checksum changes are not related to license changes. Signed-off-by: Huang Qiyu --- meta/recipes-extended/cups/cups.inc | 2 +- meta/recipes-extended/cups/cups_2.1.4.bb | 6 --

[OE-core] [PATCH] cups: 2.1.4 -> 2.2.1

2016-12-07 Thread Huang Qiyu
Upgrade cups from 2.1.4 to 2.1.1. License checksum changes are not related to license changes. Signed-off-by: Huang Qiyu --- meta/recipes-extended/cups/cups.inc | 2 +- meta/recipes-extended/cups/cups_2.1.4.bb | 6 --

Re: [OE-core] [PATCH] kern-tools: update to avoid kernel_metadata failures

2016-12-07 Thread Burton, Ross
Bruce already sent this, and it's in staging now. Ross On 7 December 2016 at 09:50, Awais Belal wrote: > Update kernel native tools to avoid do_kernel_metadata > failures. This is mainly to bring in >

[OE-core] [PATCH v2] less: 481 -> 487

2016-12-07 Thread Huang Qiyu
Upgrade less from 481 to 487. License checksum changes are not related to license changes. Signed-off-by: Huang Qiyu --- meta/recipes-extended/less/{less_481.bb => less_487.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename

[OE-core] [PATCH] kern-tools: update to avoid kernel_metadata failures

2016-12-07 Thread Awais Belal
Update kernel native tools to avoid do_kernel_metadata failures. This is mainly to bring in https://git.yoctoproject.org/cgit/cgit.cgi/yocto-kernel-tools/commit/?id=a287da4bfe0b4acb8f2b0627bd8e7abd1a1dde26 but we should pick up whatever enhancements are currently available. Without this builds

[OE-core] [PATCH] pciutils: 3.5.1 -> 3.5.2

2016-12-07 Thread Huang Qiyu
Upgrade pciutils from 3.5.1 to 3.5.2. Signed-off-by: Huang Qiyu --- meta/recipes-bsp/pciutils/{pciutils_3.5.1.bb => pciutils_3.5.2.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-bsp/pciutils/{pciutils_3.5.1.bb =>

[OE-core] [PATCH v2] dhcp: 4.3.4 -> 4.3.5

2016-12-07 Thread Huang Qiyu
Upgrade dhcp from 4.3.4 to 4.3.5. Signed-off-by: Huang Qiyu --- meta/recipes-connectivity/dhcp/{dhcp_4.3.4.bb => dhcp_4.3.5.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-connectivity/dhcp/{dhcp_4.3.4.bb => dhcp_4.3.5.bb} (81%)

[OE-core] [PATCH 2/3] tiff: Security fix CVE-2016-9538

2016-12-07 Thread mingli.yu
From: Mingli Yu * tools/tiffcrop.c: fix read of undefined buffer in readContigStripsIntoBuffer() due to uint16 overflow. External References: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-9538 Patch from:

[OE-core] [PATCH 3/3] tiff: Fix several CVE issues

2016-12-07 Thread mingli.yu
From: Mingli Yu Fix CVE-2016-9533, CVE-2016-9534, CVE-2016-9536 and CVE-2016-9537 External References: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-9533 http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-9534

[OE-core] [PATCH 1/3] tiff: Security fix CVE-2016-9535

2016-12-07 Thread mingli.yu
From: Mingli Yu * libtiff/tif_predict.h, libtiff/tif_predict.c: Replace assertions by runtime checks to avoid assertions in debug mode, or buffer overflows in release mode. Can happen when dealing with unusual tile size like YCbCr with subsampling. External References:

[OE-core] tiff: fix several tiff CVE issues

2016-12-07 Thread mingli.yu
These commits fix several tiff CVE issues: CVE-2016-9533, CVE-2016-9534, CVE-2016-9535, CVE-2016-9536, CVE-2016-9537 and CVE-2016-9538 -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org