All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core] [PATCH] nettle: upgrade 3.7.3 -> 3.8
@ 2022-06-06 12:27 Wang Mingyu
  2022-06-06 12:27 ` [OE-core] [PATCH] kbd: upgrade 2.4.0 -> 2.5.0 Wang Mingyu
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Wang Mingyu @ 2022-06-06 12:27 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

Changelog:
==========
This release includes a couple of new features, and many
performance improvements. It adds assembly code for two more
architectures: ARM64 and S390x.

The new version is intended to be fully source and binary
compatible with Nettle-3.6. The shared library names are
libnettle.so.8.5 and libhogweed.so.6.5, with sonames
libnettle.so.8 and libhogweed.so.6.

New features:
--------------
* AES keywrap (RFC 3394), contributed by Nicolas Mora.

* SM3 hash function, contributed by Tianjia Zhang.

* New functions cbc_aes128_encrypt, cbc_aes192_encrypt,
  cbc_aes256_encrypt.

  On processors where AES is fast enough, e.g., x86_64 with
  aesni instructions, the overhead of using Nettle's general
  cbc_encrypt can be significant. The new functions can be
  implemented in assembly, to do multiple blocks with reduced
  per-block overhead.

  Note that there's no corresponding new decrypt functions,
  since the general cbc_decrypt doesn't suffer from the same
  performance problem.

Bug fixes:
-------------
* Fix fat builds for x86_64 windows, these appear to never
  have worked.

Optimizations:
----------------
* New ARM64 implementation of AES, GCM, Chacha, SHA1 and
  SHA256, for processors supporting crypto extensions. Great
  speedups, and fat builds are supported. Contributed by
  Mamone Tarsha.

* New s390x implementation of AES, GCM, Chacha, memxor, SHA1,
  SHA256, SHA512 and SHA3. Great speedups, and fat builds are
  supported. Contributed by Mamone Tarsha.

* New PPC64 assembly for ecc modulo/redc operations,
  contributed by Amitay Isaacs, Martin Schwenke and Alastair
  D´Silva.

* The x86_64 AES implementation using aesni instructions has
  been reorganized with one separate function per key size,
  each interleaving the processing of two blocks at a time
  (when the caller processes multiple blocks with each call).
  This gives a modest performance improvement on some
  processors.

* Rewritten and faster x86_64 poly1305 assembly.

Known issues:
-------------
* Nettle's testsuite doesn't work out-of-the-box on recent
  MacOS, due to /bin/sh discarding the DYLD_LIBRARY_PATH
  environment variable. Nettle's test scripts handle this in
  some cases, but currently fails the test cases that are
  themselves written as /bin/sh scripts. As a workaround, use

  make check EMULATOR='env DYLD_LIBRARY_PATH=$(TEST_SHLIB_DIR)'

Miscellaneous:
--------------
* Updated manual to current makeinfo conventions, with no
  explicit node pointers. Generate pdf version with texi2pdf,
  to get working hyper links.

* Added square root functions for NIST ecc curves, as a
  preparation for supporting compact point representation.

* Reworked internal GCM/ghash interfaces, simplifying assembly
  implementations. Deleted unused GCM C implementation
  variants with less than 8-bit lookup table.


Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-support/nettle/{nettle_3.7.3.bb => nettle_3.8.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/nettle/{nettle_3.7.3.bb => nettle_3.8.bb} (96%)

diff --git a/meta/recipes-support/nettle/nettle_3.7.3.bb b/meta/recipes-support/nettle/nettle_3.8.bb
similarity index 96%
rename from meta/recipes-support/nettle/nettle_3.7.3.bb
rename to meta/recipes-support/nettle/nettle_3.8.bb
index 889dc74667..0d6562dbce 100644
--- a/meta/recipes-support/nettle/nettle_3.7.3.bb
+++ b/meta/recipes-support/nettle/nettle_3.8.bb
@@ -24,7 +24,7 @@ SRC_URI:append:class-target = "\
             file://dlopen-test.patch \
             "

-SRC_URI[sha256sum] = "661f5eb03f048a3b924c3a8ad2515d4068e40f67e774e8a26827658007e3bcf0"
+SRC_URI[sha256sum] = "7576c68481c198f644b08c160d1a4850ba9449e308069455b5213319f234e8e6"

 UPSTREAM_CHECK_REGEX = "nettle-(?P<pver>\d+(\.\d+)+)\.tar"

--
2.25.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [OE-core] [PATCH] kbd: upgrade 2.4.0 -> 2.5.0
  2022-06-06 12:27 [OE-core] [PATCH] nettle: upgrade 3.7.3 -> 3.8 Wang Mingyu
@ 2022-06-06 12:27 ` Wang Mingyu
  2022-06-06 12:27 ` [OE-core] [PATCH] mesa: upgrade 22.0.3 -> 22.1.1 Wang Mingyu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Wang Mingyu @ 2022-06-06 12:27 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

License-Update: Remove extra spaces.

Changelog:
=========
libkfont:
---------
    Make libkfont public library.
    Add kfont_free().
    Initialize kfont_context->options.
    Тake the verbose parameter into account when logging messages.

libkeymap:
---------
    Better error message on unsupported unicode value.

setvtrgb:
--------
    Add hexadecimal file support.

keymaps:
-------
    fa.map: drop high codepoint character that chokes loadkeys.
    i386/neo/3l.map: Add 3l keymap.
    i386/neo: use Delete instead of Backspace.
    i386/qwerty/ie.map: Add Irish keyboard map.
    i386/qwerty/it.map: Add braces to IT keyboard map.
    pine/en.map: Keymap for PinePhone keyboard.
    pt-latin1.map: Add Euro at Portuguese keyboards.

docs:
------
    Fix typos.

po:
-------
    Update translations (from translationproject.org).

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-core/kbd/{kbd_2.4.0.bb => kbd_2.5.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-core/kbd/{kbd_2.4.0.bb => kbd_2.5.0.bb} (90%)

diff --git a/meta/recipes-core/kbd/kbd_2.4.0.bb b/meta/recipes-core/kbd/kbd_2.5.0.bb
similarity index 90%
rename from meta/recipes-core/kbd/kbd_2.4.0.bb
rename to meta/recipes-core/kbd/kbd_2.5.0.bb
index 4b23f1a89d..c0317a5d84 100644
--- a/meta/recipes-core/kbd/kbd_2.4.0.bb
+++ b/meta/recipes-core/kbd/kbd_2.5.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.kbd-project.org/"
 DESCRIPTION = "The kbd project contains tools for managing Linux console (Linux console, virtual terminals, keyboard, etc.) – mainly, what they do is loading console fonts and keyboard maps."
 # everything minus console-fonts is GPL-2.0-or-later
 LICENSE = "GPL-2.0-or-later"
-LIC_FILES_CHKSUM = "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"

 inherit autotools gettext pkgconfig

@@ -16,7 +16,7 @@ RCONFLICTS:${PN} = "console-tools"
 SRC_URI = "${KERNELORG_MIRROR}/linux/utils/${BPN}/${BP}.tar.xz \
            "

-SRC_URI[sha256sum] = "55f0740458cfd3a84e775e50d7e8b92dc01846db1edad8e2411ccc293ece9b9f"
+SRC_URI[sha256sum] = "ad95964a4dede55f9239dd63b455fa4498cf3db3a0075ccd1d65a9f0e622a0fd"

 PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)} \
                   "
--
2.25.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [OE-core] [PATCH] mesa: upgrade 22.0.3 -> 22.1.1
  2022-06-06 12:27 [OE-core] [PATCH] nettle: upgrade 3.7.3 -> 3.8 Wang Mingyu
  2022-06-06 12:27 ` [OE-core] [PATCH] kbd: upgrade 2.4.0 -> 2.5.0 Wang Mingyu
@ 2022-06-06 12:27 ` Wang Mingyu
  2022-06-07 10:40   ` Luca Ceresoli
  2022-06-06 12:27 ` [OE-core] [PATCH] python3-hypothesis: upgrade 6.46.9 -> 6.46.11 Wang Mingyu
  2022-06-06 12:27 ` [OE-core] [PATCH] xkeyboard-config: upgrade 2.35.1 -> 2.36 Wang Mingyu
  3 siblings, 1 reply; 7+ messages in thread
From: Wang Mingyu @ 2022-06-06 12:27 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../mesa/{mesa-gl_22.0.3.bb => mesa-gl_22.1.1.bb}               | 0
 meta/recipes-graphics/mesa/mesa.inc                             | 2 +-
 meta/recipes-graphics/mesa/{mesa_22.0.3.bb => mesa_22.1.1.bb}   | 0
 3 files changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/mesa/{mesa-gl_22.0.3.bb => mesa-gl_22.1.1.bb} (100%)
 rename meta/recipes-graphics/mesa/{mesa_22.0.3.bb => mesa_22.1.1.bb} (100%)

diff --git a/meta/recipes-graphics/mesa/mesa-gl_22.0.3.bb b/meta/recipes-graphics/mesa/mesa-gl_22.1.1.bb
similarity index 100%
rename from meta/recipes-graphics/mesa/mesa-gl_22.0.3.bb
rename to meta/recipes-graphics/mesa/mesa-gl_22.1.1.bb
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc
index a5de6f9dbf..d268b19323 100644
--- a/meta/recipes-graphics/mesa/mesa.inc
+++ b/meta/recipes-graphics/mesa/mesa.inc
@@ -22,7 +22,7 @@ SRC_URI = "https://mesa.freedesktop.org/archive/mesa-${PV}.tar.xz \
            file://0001-util-format-Check-for-NEON-before-using-it.patch \
            "
 
-SRC_URI[sha256sum] = "9f2b30f5276a9abaf71aafc6979685e2636189de1a87aea2c9e69744a6d0ebb9"
+SRC_URI[sha256sum] = "46940865ffe794db73ac2bc7ab7ff2570042a0b61a8ac43ca1688863e2bc0ef1"
 
 UPSTREAM_CHECK_GITTAGREGEX = "mesa-(?P<pver>\d+(\.\d+)+)"
 
diff --git a/meta/recipes-graphics/mesa/mesa_22.0.3.bb b/meta/recipes-graphics/mesa/mesa_22.1.1.bb
similarity index 100%
rename from meta/recipes-graphics/mesa/mesa_22.0.3.bb
rename to meta/recipes-graphics/mesa/mesa_22.1.1.bb
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [OE-core] [PATCH] python3-hypothesis: upgrade 6.46.9 -> 6.46.11
  2022-06-06 12:27 [OE-core] [PATCH] nettle: upgrade 3.7.3 -> 3.8 Wang Mingyu
  2022-06-06 12:27 ` [OE-core] [PATCH] kbd: upgrade 2.4.0 -> 2.5.0 Wang Mingyu
  2022-06-06 12:27 ` [OE-core] [PATCH] mesa: upgrade 22.0.3 -> 22.1.1 Wang Mingyu
@ 2022-06-06 12:27 ` Wang Mingyu
  2022-06-06 12:27 ` [OE-core] [PATCH] xkeyboard-config: upgrade 2.35.1 -> 2.36 Wang Mingyu
  3 siblings, 0 replies; 7+ messages in thread
From: Wang Mingyu @ 2022-06-06 12:27 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

Changelog:
===========
Mention "hypothesis.strategies.timezones()" in the documentation of
"hypothesis.strategies.datetimes()" for completeness.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...thon3-hypothesis_6.46.9.bb => python3-hypothesis_6.46.11.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-hypothesis_6.46.9.bb => python3-hypothesis_6.46.11.bb} (91%)

diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.46.9.bb b/meta/recipes-devtools/python/python3-hypothesis_6.46.11.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-hypothesis_6.46.9.bb
rename to meta/recipes-devtools/python/python3-hypothesis_6.46.11.bb
index 1a1defc583..1d9772d4ff 100644
--- a/meta/recipes-devtools/python/python3-hypothesis_6.46.9.bb
+++ b/meta/recipes-devtools/python/python3-hypothesis_6.46.11.bb
@@ -13,7 +13,7 @@ SRC_URI += " \
     file://test_rle.py \
     "
 
-SRC_URI[sha256sum] = "8b1349dab58cf9bc85687e2721c008e99f23a32fb70e688779c81b0298904160"
+SRC_URI[sha256sum] = "f5c1cf61b24b094355577a6b8fbbb8eb54c1b0216fbc0519af97c46bddf43c42"
 
 RDEPENDS:${PN} += " \
     python3-attrs \
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [OE-core] [PATCH] xkeyboard-config: upgrade 2.35.1 -> 2.36
  2022-06-06 12:27 [OE-core] [PATCH] nettle: upgrade 3.7.3 -> 3.8 Wang Mingyu
                   ` (2 preceding siblings ...)
  2022-06-06 12:27 ` [OE-core] [PATCH] python3-hypothesis: upgrade 6.46.9 -> 6.46.11 Wang Mingyu
@ 2022-06-06 12:27 ` Wang Mingyu
  3 siblings, 0 replies; 7+ messages in thread
From: Wang Mingyu @ 2022-06-06 12:27 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{xkeyboard-config_2.35.1.bb => xkeyboard-config_2.36.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/xorg-lib/{xkeyboard-config_2.35.1.bb => xkeyboard-config_2.36.bb} (92%)

diff --git a/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.35.1.bb b/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.36.bb
similarity index 92%
rename from meta/recipes-graphics/xorg-lib/xkeyboard-config_2.35.1.bb
rename to meta/recipes-graphics/xorg-lib/xkeyboard-config_2.36.bb
index 5215131e3e..9e6d17c780 100644
--- a/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.35.1.bb
+++ b/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.36.bb
@@ -13,7 +13,7 @@ LICENSE = "MIT & MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=0e7f21ca7db975c63467d2e7624a12f9"
 
 SRC_URI = "${XORG_MIRROR}/individual/data/xkeyboard-config/${BPN}-${PV}.tar.xz"
-SRC_URI[sha256sum] = "18ce50ff0c74ae6093062bce1aeab3d363913ea35162fe271f8a0ce399de85cc"
+SRC_URI[sha256sum] = "1f1bb1292a161d520a3485d378609277d108cd07cde0327c16811ff54c3e1595"
 
 SECTION = "x11/libs"
 DEPENDS = "util-macros libxslt-native"
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [OE-core] [PATCH] mesa: upgrade 22.0.3 -> 22.1.1
  2022-06-06 12:27 ` [OE-core] [PATCH] mesa: upgrade 22.0.3 -> 22.1.1 Wang Mingyu
@ 2022-06-07 10:40   ` Luca Ceresoli
  2022-06-09 10:00     ` Alexander Kanavin
  0 siblings, 1 reply; 7+ messages in thread
From: Luca Ceresoli @ 2022-06-07 10:40 UTC (permalink / raw)
  To: wangmy; +Cc: openembedded-core

Hi wangmy,

On Mon, 6 Jun 2022 20:27:12 +0800
"wangmy" <wangmy@fujitsu.com> wrote:

> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>

There are lots of failures when testing with this patch applied:

  (EE) AIGLX error: Calling driver entry point failed

Here are some logs:

https://autobuilder.yoctoproject.org/typhoon/#/builders/73/builds/5275/steps/12/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/64/builds/5318/steps/13/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/76/builds/5291/steps/13/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/72/builds/5338/steps/19/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/109/builds/4202/steps/13/logs/stdio

-- 
Luca Ceresoli, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [OE-core] [PATCH] mesa: upgrade 22.0.3 -> 22.1.1
  2022-06-07 10:40   ` Luca Ceresoli
@ 2022-06-09 10:00     ` Alexander Kanavin
  0 siblings, 0 replies; 7+ messages in thread
From: Alexander Kanavin @ 2022-06-09 10:00 UTC (permalink / raw)
  To: Luca Ceresoli; +Cc: wangmy, OE-core

I have looked into this and submitted a patch upstream for this:
https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16942

Let's defer the update until upstream addresses this one way or another.

Alex

On Tue, 7 Jun 2022 at 12:41, Luca Ceresoli via lists.openembedded.org
<luca.ceresoli=bootlin.com@lists.openembedded.org> wrote:
>
> Hi wangmy,
>
> On Mon, 6 Jun 2022 20:27:12 +0800
> "wangmy" <wangmy@fujitsu.com> wrote:
>
> > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
>
> There are lots of failures when testing with this patch applied:
>
>   (EE) AIGLX error: Calling driver entry point failed
>
> Here are some logs:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/73/builds/5275/steps/12/logs/stdio
> https://autobuilder.yoctoproject.org/typhoon/#/builders/64/builds/5318/steps/13/logs/stdio
> https://autobuilder.yoctoproject.org/typhoon/#/builders/76/builds/5291/steps/13/logs/stdio
> https://autobuilder.yoctoproject.org/typhoon/#/builders/72/builds/5338/steps/19/logs/stdio
> https://autobuilder.yoctoproject.org/typhoon/#/builders/109/builds/4202/steps/13/logs/stdio
>
> --
> Luca Ceresoli, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#166658): https://lists.openembedded.org/g/openembedded-core/message/166658
> Mute This Topic: https://lists.openembedded.org/mt/91575609/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-06-09 10:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-06 12:27 [OE-core] [PATCH] nettle: upgrade 3.7.3 -> 3.8 Wang Mingyu
2022-06-06 12:27 ` [OE-core] [PATCH] kbd: upgrade 2.4.0 -> 2.5.0 Wang Mingyu
2022-06-06 12:27 ` [OE-core] [PATCH] mesa: upgrade 22.0.3 -> 22.1.1 Wang Mingyu
2022-06-07 10:40   ` Luca Ceresoli
2022-06-09 10:00     ` Alexander Kanavin
2022-06-06 12:27 ` [OE-core] [PATCH] python3-hypothesis: upgrade 6.46.9 -> 6.46.11 Wang Mingyu
2022-06-06 12:27 ` [OE-core] [PATCH] xkeyboard-config: upgrade 2.35.1 -> 2.36 Wang Mingyu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.