[oe] [meta-oe] [PATCH] uftrace: upgrade 0.9.4 -> 0.10

2021-05-25 Thread wangmy
0001-aarch64-Fix-a-plthook-crash-on-aarch64-with-binutils.patch removed since it is removed in 0.10 Signed-off-by: Wang Mingyu --- ...thook-crash-on-aarch64-with-binutils.patch | 47 --- .../{uftrace_0.9.4.bb => uftrace_0.10.bb} | 3 +- 2 files changed, 1 insertion(+), 49 de

Re: [oe] [meta-networking][RESEND][PATCH] dhcp-relay: add recipe

2021-05-25 Thread Khem Raj
fails to compile for riscv32 https://errors.yoctoproject.org/Errors/Details/585529/ and rv64 https://errors.yoctoproject.org/Errors/Details/585530/ On Tue, May 25, 2021 at 7:01 AM Khem Raj wrote: > > > > On 5/25/21 1:56 AM, Yi Zhao wrote: > > The current default dhcp server kea in oe-core doesn't

[oe] [meta-python][PATCH] python3-prettytable: add python3-sqlite3 for ptest

2021-05-25 Thread Trevor Gamblin
Add python3-sqlite3 to ptest RDEPENDS. Signed-off-by: Trevor Gamblin --- .../recipes-devtools/python/python3-prettytable_2.1.0.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-python/recipes-devtools/python/python3-prettytable_2.1.0.bb b/meta-python/recipes-de

[oe] [PATCH] thunar: fix CVE-2021-32563

2021-05-25 Thread Stefan Ghinea
An issue was discovered in Thunar before 4.16.7 and 4.17.x before 4.17.2. When called with a regular file as a command-line argument, it delegates to a different program (based on the file type) without user confirmation. This could be used to achieve code execution. References: https://nvd.nist.g

[oe] [meta-networking][PATCH] libiec61850: Upgrade to 1.5.0

2021-05-25 Thread Romain Naour
Remove all upstream patches Rename patch 0003 -> 0001 Signed-off-by: Romain Naour --- ...break-CMAKE_INSTALL_PATH-by-trying-.patch} | 4 +-- ...001-use-poll.h-instead-of-sys-poll.h.patch | 33 --- ...linux-Add-missing-include-sys-time.h.patch | 32 -- ...c61850_1

Re: [oe] [meta-networking][RESEND][PATCH] dhcp-relay: add recipe

2021-05-25 Thread Khem Raj
On 5/25/21 1:56 AM, Yi Zhao wrote: The current default dhcp server kea in oe-core doesn't provide dhcp-relay tool. Add a recipe to provide dhcrelay which is from dhcp. This patch is picked up from dhcp recipe with some tweaks. In order to fix the build dependency, we use bundled bind instead of

[oe] [meta-python][PATCH 4/4] python3-sqlalchemy: Upgrade 1.4.11 -> 1.4.15

2021-05-25 Thread Leon Anavi
Upgrade to release 1.4.15: - A new approach has been applied to the warnings system in SQLAlchemy to accurately predict the appropriate stack level for each warning dynamically. This allows evaluating the source of SQLAlchemy-generated warnings and deprecation warnings to be more straightf

[oe] [meta-python][PATCH 3/4] python3-alembic: Upgrade 1.6.2 -> 1.6.4

2021-05-25 Thread Leon Anavi
Upgrade to release 1.6.4: - Fixed regression caused by just fixed bug that scaled back the filter for unique=True/index=True too far such that these directives no longer worked for the op.create_table() op, this has been fixed. - Fixed 1.6-series regression where UniqueConstraint and to a

[oe] [meta-python][PATCH 2/4] python3-websocket-client: Upgrade 1.0.0 -> 1.0.1

2021-05-25 Thread Leon Anavi
Upgrade to release 1.0.1: - Fix exception handling bug Signed-off-by: Leon Anavi --- ...socket-client_1.0.0.bb => python3-websocket-client_1.0.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-websocket-client_1.0.0.bb => python3-w

[oe] [meta-python][PATCH 1/4] python3-xmlschema: Upgrade 1.6.1 -> 1.6.2

2021-05-25 Thread Leon Anavi
Upgrade to release 1.6.2: - Fix for issue key/keyref with dynamic types - Change default decoding of mixed content with only text to a string instead of a dictionary Signed-off-by: Leon Anavi --- .../{python3-xmlschema_1.6.1.bb => python3-xmlschema_1.6.2.bb} | 3 ++- 1 file changed, 2 inserti

Re: [oe] [meta-oe][PATCH] zsh: recipe overhaul

2021-05-25 Thread Andreas Müller
On Tue, May 25, 2021 at 3:41 PM Dan McGregor wrote: Although my interest in zsh is limited, I get the feeling that this turns zsh into an unmaintainable state and so far from upstream that we are on ourselves in case of trouble. Just my 2ct Cheers Andreas > > From: Daniel McGregor > > Patch co

[oe] [meta-networking][dunfell][PATCH] ebtables: use bitbake optimization levels

2021-05-25 Thread Mikko Rapeli
Don't overwrite with O3 optimization. Reduces ebtables binary package size from 416241 to 412145 bytes, and enables further optimizations with e.g. -Os flags via bitbake distro wide settings. Only ebtables versions up to 2.0.10-4 and dunfell are affected. The version 2.0.11 from hardknott and mast

Re: [oe] [meta-oe][hardknott 1/2] opencv: remove tbb packageconfig for powerpc

2021-05-25 Thread Armin Kuster
On 5/24/21 8:29 AM, Saul Wold wrote: > From: Saul Wold > > Since tbb does not build for powerpc remove it from the enabled list thanks. Got this in hardlkknott-nut already. https://git.openembedded.org/meta-openembedded-contrib/commit/?h=stable/hardknott-nut&id=c7c0a292cf5089dcbd7840b01027d636

[oe] [meta-networking][RESEND][PATCH] dhcp-relay: add recipe

2021-05-25 Thread Yi Zhao
The current default dhcp server kea in oe-core doesn't provide dhcp-relay tool. Add a recipe to provide dhcrelay which is from dhcp. This patch is picked up from dhcp recipe with some tweaks. In order to fix the build dependency, we use bundled bind instead of external bind. Signed-off-by: Yi Zhao

Re: [oe] [meta-networking][PATCH] dhcp-relay: add recipe

2021-05-25 Thread Yi Zhao
On 5/24/21 10:23 PM, Khem Raj wrote: Can you resend this patch ? secondly, I worry that since kea is way to go we are adding a package which perhaps is virtually going to be dead soon. Is there any work on kea itself providing similar functionality? The kea doesn't provide a dhcp relay agent

[oe] [PATCH] hunspell-dictionaries: use better names for dictionary files

2021-05-25 Thread Andreas Müller
Played around with gspell and followed their suggestion to prefer hunspell [1] in enchant [2]. Tests with gedit showed that all entries for sub-languages (e.g English UK) were missing. By changing names of *.dic and *.aff from -.* to _.* languages as 'English UK' appear and can be selected in ged