Re: [OE-core] [PATCH 00/18] Move python3-pytest to oe-core

2020-11-27 Thread Khem Raj
On Fri, Nov 27, 2020 at 8:24 PM Tim Orling wrote: > > From: Tim Orling > > We are increasingly needing pytest in oe-core, so it is time to move it > from meta-python. > > This series first imports the recipes -- as-is -- from meta-python. > Second, the maintainers.inc is updated to add myself as

[OE-core] [PATCH 18/18] python3-pytest: RDEPENDS on python3-toml

2020-11-27 Thread Tim Orling
From: Tim Orling The generated requires.txt in pytest-*-py3.9.egg-info shows the requirement. Caught during ptest of python3-wcwidth: Signed-off-byROR collecting tests/test_core.py __ tests/test_core.py:4: in import pkg_resources

[OE-core] [PATCH 17/18] python3-importlib-metadata: upgrade 2.0.0 to 3.1.0

2020-11-27 Thread Tim Orling
From: Tim Orling Upstream release notes: " v3.1.0 Merge with 2.1.0. v2.1.0 #253: When querying for package metadata, the lookup now honors package normalization rules. v3.0.0 Require Python 3.6 or later. " Signed-off-by: Tim Orling --- ...etadata_2.0.0.bb =>

[OE-core] [PATCH 16/18] python3-more-itertools: upgrade 8.5.0 -> 8.6.0

2020-11-27 Thread Tim Orling
From: Tim Orling Upstream release notes: " * New itertools - all_unique (thanks to brianmaissy) - nth_product and nth_permutation (thanks to N8Brooks) * Changes to existing itertools - chunked and sliced now accept a strict parameter (thanks to shlomif and jtwool) * Other changes -

[OE-core] [PATCH 15/18] maintainers.inc: add self for new pytest packages

2020-11-27 Thread Tim Orling
From: Tim Orling Signed-off-by: Tim Orling --- meta/conf/distro/include/maintainers.inc | 14 ++ 1 file changed, 14 insertions(+) diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc index ad5f4672c7a..f77965f8e0b 100644 ---

[OE-core] [PATCH 14/18] python3-pytest: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Simple powerful testing with python Signed-off-by: Tim Orling --- ...he-setup_requires-for-setuptools-scm.patch | 39 +++ .../python/python3-pytest_6.1.2.bb| 38 ++ 2 files changed, 77 insertions(+) create mode 100644

[OE-core] [PATCH 13/18] python3-pluggy: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Plugin and hook calling mechanisms for python * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- .../python/python3-pluggy/run-ptest | 3 +++ .../python/python3-pluggy_0.13.1.bb | 27 +++ 2 files changed, 30

[OE-core] [PATCH 12/18] python3-importlib-metadata: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Read metadata from Python packages * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- .../python/python3-importlib-metadata_2.0.0.bb | 18 ++ 1 file changed, 18 insertions(+) create mode 100644

[OE-core] [PATCH 11/18] python3-zipp: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Backport of pathlib-compatible object wrapper for zip files * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- .../python/python3-zipp_3.4.0.bb | 19 +++ 1 file changed, 19 insertions(+) create mode 100644

[OE-core] [PATCH 10/18] python3-wcwidth: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Library for bulding powerful interactive command lines in Python * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- .../python/python3-wcwidth/run-ptest | 3 +++ .../python/python3-wcwidth_0.2.5.bb | 25 +++ 2 files

[OE-core] [PATCH 09/18] python3-packaging: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Core utilities for Python packages * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- .../python/python3-packaging_20.4.bb | 14 ++ 1 file changed, 14 insertions(+) create mode 100644

[OE-core] [PATCH 08/18] python3-setuptools-scm: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling The blessed package to manage your versions by scm tags * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- .../python/python3-setuptools-scm_4.1.2.bb| 21 +++ 1 file changed, 21 insertions(+) create mode 100644

[OE-core] [PATCH 07/18] python3-py: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Library with cross-pythonpath, ini-parsing, io, code, log facilities * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- meta/recipes-devtools/python/python3-py_1.9.0.bb | 15 +++ 1 file changed, 15 insertions(+) create mode 100644

[OE-core] [PATCH 06/18] python3-toml: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Python Library for Tom's Obvious, Minimimal Language * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- .../python/python3-toml_0.10.2.bb | 15 +++ 1 file changed, 15 insertions(+) create mode 100644

[OE-core] [PATCH 05/18] python3-pathlib2: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Object-oriented filesystem paths * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- .../python/python3-pathlib2_2.3.5.bb| 13 + 1 file changed, 13 insertions(+) create mode 100644

[OE-core] [PATCH 04/18] python3-more-itertools: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling More routines for operating on iterables, beyond itertools * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- .../python/python3-more-itertools/run-ptest | 3 +++ .../python/python3-more-itertools_8.5.0.bb| 24 +++ 2 files changed,

[OE-core] [PATCH 02/18] python3-attrs: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Classes Without Boilerplate * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- .../python/python3-attrs_20.3.0.bb| 20 +++ 1 file changed, 20 insertions(+) create mode 100644

[OE-core] [PATCH 03/18] python3-iniconfig: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling A small and simple INI-file parser module * Part of the dependency chain for pytest Signed-off-by: Tim Orling --- meta/recipes-devtools/python/python3-iniconfig_1.1.1.bb | 9 + 1 file changed, 9 insertions(+) create mode 100644

[OE-core] [PATCH 01/18] python3-atomicwrites: move from meta-python

2020-11-27 Thread Tim Orling
From: Tim Orling Powerful Python library for atomic file writes * Part of the dependency chain for python3-pytest Signed-off-by: Tim Orling --- .../python/python3-atomicwrites/run-ptest | 3 +++ .../python/python3-atomicwrites_1.4.0.bb | 25 +++ 2 files changed, 28

[OE-core] [PATCH 00/18] Move python3-pytest to oe-core

2020-11-27 Thread Tim Orling
From: Tim Orling We are increasingly needing pytest in oe-core, so it is time to move it from meta-python. This series first imports the recipes -- as-is -- from meta-python. Second, the maintainers.inc is updated to add myself as maintainer for all the new recipes. Third, the two recipes that

Re: [OE-core][RFC] weston-init: Stop running weston as root

2020-11-27 Thread Peter Bergin
Hi, this is a good improvement to the security, thanks for sharing this! As the global socket now is at /run/wayland-0 users that belongs to group 'wayland' and want to use weston needs to set its XDG_RUNTIME_DIR accordingly. As probably more applications than weston client is using

[OE-core] [pseudo][PATCH v2] pseudo_client: Print PSEUDO_LOGFILE path in abort message on path mismatches

2020-11-27 Thread Tomasz Dziendzielski
The logfile path should be more visible so it's easier investigate the error. Signed-off-by: Tomasz Dziendzielski --- pseudo_client.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pseudo_client.c b/pseudo_client.c index 116d926..ea9d551 100644 --- a/pseudo_client.c +++

[OE-core] [PATCH] wireless-regdb: upgrade 2020.04.29 -> 2020.11.20

2020-11-27 Thread zangrc
Signed-off-by: Zang Ruochen --- ...ireless-regdb_2020.04.29.bb => wireless-regdb_2020.11.20.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-kernel/wireless-regdb/{wireless-regdb_2020.04.29.bb => wireless-regdb_2020.11.20.bb} (94%) diff --git

[OE-core] [PATCH] pulseaudio: upgrade 13.0 -> 14.0

2020-11-27 Thread zangrc
0001-remap-arm-Adjust-inline-asm-constraints.patch 0001-remap_neon-use-register-r12-instead-of-r7.patch Removed since these are included in 14.0. Signed-off-by: Zang Ruochen --- ...ap-arm-Adjust-inline-asm-constraints.patch | 114 -- ..._neon-use-register-r12-instead-of-r7.patch

[OE-core] [PATCH] libxkbcommon: upgrade 1.0.1 -> 1.0.3

2020-11-27 Thread zangrc
Signed-off-by: Zang Ruochen --- .../xorg-lib/{libxkbcommon_1.0.1.bb => libxkbcommon_1.0.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-graphics/xorg-lib/{libxkbcommon_1.0.1.bb => libxkbcommon_1.0.3.bb} (92%) diff --git

[OE-core] [pseudo][PATCH] pseudo_client: Print PSEUDO_LOGFILE path to abort message on path mismatches

2020-11-27 Thread Tomasz Dziendzielski
The logfile path should be more visible so it's easier investigate the error. Signed-off-by: Tomasz Dziendzielski --- pseudo_client.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pseudo_client.c b/pseudo_client.c index 116d926..ea9d551 100644 --- a/pseudo_client.c +++