From: Steve Sakoman <steve@sakoman.com>
To: openembedded-core@lists.openembedded.org
Subject: [OE-core][langdale 00/28] Patch review
Date: Sat, 11 Feb 2023 11:23:23 -1000 [thread overview]
Message-ID: <cover.1676150527.git.steve@sakoman.com> (raw)
Please review this set of patches for langdale and have comments back by
end of day Tuesday.
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/4920
The following changes since commit ab39d244cb844c9d183296945a095c17fdfef29e:
Fix missing leading whitespace with ':append' (2023-01-31 13:15:53 -1000)
are available in the Git repository at:
https://git.openembedded.org/openembedded-core-contrib stable/langdale-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/langdale-nut
Alejandro Hernandez Samaniego (1):
testimage: Fix error message to reflect new syntax
Alexander Kanavin (3):
vulkan-samples: branch rename master -> main
gdk-pixbuf: do not use tools from gdk-pixbuf-native when building
tests
oeqa/qemurunner: do not use Popen.poll() when terminating runqemu with
a signal
Arnout Vandecappelle (1):
python3-pytest: depend on python3-tomli instead of python3-toml
Bruce Ashfield (2):
linux-yocto/5.15: update to v5.15.89
linux-yocto/5.15: update to v5.15.91
Changqing Li (1):
apt: fix do_package_qa failure
Chee Yang Lee (1):
git: upgrade to 2.37.5
Harald Seiler (1):
bootchart2: Fix usrmerge support
Khem Raj (2):
scons: Pass MAXLINELENGTH to scons invocation
scons.bbclass: Make MAXLINELENGTH overridable
Louis Rannou (1):
oeqa/selftest/locales: Add selftest for locale generation/presence
Martin Jansa (1):
meta: remove True option to getVar and getVarFlag calls (again)
Mikko Rapeli (1):
oeqa context.py: fix --target-ip comment to include ssh port number
Mingli Yu (1):
glslang: branch rename master -> main
Pawel Zalewski (1):
classes/fs-uuid: Fix command output decoding issue
Richard Purdie (4):
kernel/linux-kernel-base: Fix kernel build artefact determinism issues
make-mod-scripts: Ensure kernel build output is deterministic
perf: Enable debug/source packaging
libc-locale: Fix on target locale generation
Ross Burton (4):
git: ignore CVE-2022-41953
buildtools-tarball: set pkg-config search path
sdkext/cases/devtool: pass a logger to HTTPService
httpserver: add error handler that write to the logger
Tobias Hagelborn (1):
sstate.bbclass: Fetch non-existing local .sig files if needed
Ulrich Ölmann (2):
recipe_sanity: fix old override syntax
lsof: fix old override syntax
meta/classes-global/sstate.bbclass | 5 +-
meta/classes-recipe/fs-uuid.bbclass | 2 +-
meta/classes-recipe/image.bbclass | 2 +-
meta/classes-recipe/kernel.bbclass | 3 -
meta/classes-recipe/libc-package.bbclass | 1 +
meta/classes-recipe/license_image.bbclass | 2 +-
meta/classes-recipe/linux-kernel-base.bbclass | 4 +
.../classes-recipe/rust-target-config.bbclass | 2 +-
meta/classes-recipe/scons.bbclass | 8 +-
meta/classes-recipe/testimage.bbclass | 2 +-
meta/classes/recipe_sanity.bbclass | 2 +-
meta/lib/oe/package_manager/deb/__init__.py | 8 +-
meta/lib/oeqa/runtime/context.py | 4 +-
meta/lib/oeqa/sdkext/cases/devtool.py | 2 +-
meta/lib/oeqa/selftest/cases/locales.py | 45 +++++
meta/lib/oeqa/utils/httpserver.py | 6 +
meta/lib/oeqa/utils/qemurunner.py | 11 +-
meta/recipes-core/meta/buildtools-tarball.bb | 3 +
meta/recipes-devtools/apt/apt_2.4.5.bb | 1 +
.../0001-bootchart2-support-usrmerge.patch | 37 ----
.../bootchart2/bootchart2_0.14.9.bb | 11 +-
.../git/{git_2.37.4.bb => git_2.37.5.bb} | 4 +-
meta/recipes-devtools/go/go_1.19.4.bb | 4 +-
.../python/python3-pytest_7.1.3.bb | 2 +-
meta/recipes-devtools/rust/rust.inc | 22 +--
meta/recipes-extended/lsof/lsof_4.95.0.bb | 2 +-
.../0001-Add-use_prebuilt_tools-option.patch | 173 ------------------
...w-a-subset-of-tests-in-cross-compile.patch | 66 +++++++
.../gdk-pixbuf/gdk-pixbuf_2.42.10.bb | 17 +-
.../glslang/glslang_1.3.216.0.bb | 2 +-
.../vulkan/vulkan-samples_git.bb | 2 +-
.../linux/linux-yocto-rt_5.15.bb | 6 +-
.../linux/linux-yocto-tiny_5.15.bb | 6 +-
meta/recipes-kernel/linux/linux-yocto_5.15.bb | 26 +--
.../make-mod-scripts/make-mod-scripts_1.0.bb | 2 +-
meta/recipes-kernel/perf/perf.bb | 14 +-
scripts/contrib/image-manifest | 2 +-
scripts/lib/devtool/menuconfig.py | 2 +-
38 files changed, 216 insertions(+), 297 deletions(-)
create mode 100644 meta/lib/oeqa/selftest/cases/locales.py
delete mode 100644 meta/recipes-devtools/bootchart2/bootchart2/0001-bootchart2-support-usrmerge.patch
rename meta/recipes-devtools/git/{git_2.37.4.bb => git_2.37.5.bb} (97%)
delete mode 100644 meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-Add-use_prebuilt_tools-option.patch
create mode 100644 meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch
--
2.34.1
next reply other threads:[~2023-02-11 21:24 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-11 21:23 Steve Sakoman [this message]
2023-02-11 21:23 ` [OE-core][langdale 01/28] git: ignore CVE-2022-41953 Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 02/28] git: upgrade to 2.37.5 Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 03/28] linux-yocto/5.15: update to v5.15.89 Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 04/28] linux-yocto/5.15: update to v5.15.91 Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 05/28] kernel/linux-kernel-base: Fix kernel build artefact determinism issues Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 06/28] python3-pytest: depend on python3-tomli instead of python3-toml Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 07/28] vulkan-samples: branch rename master -> main Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 08/28] buildtools-tarball: set pkg-config search path Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 09/28] classes/fs-uuid: Fix command output decoding issue Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 10/28] gdk-pixbuf: do not use tools from gdk-pixbuf-native when building tests Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 11/28] make-mod-scripts: Ensure kernel build output is deterministic Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 12/28] scons: Pass MAXLINELENGTH to scons invocation Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 13/28] scons.bbclass: Make MAXLINELENGTH overridable Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 14/28] oeqa/qemurunner: do not use Popen.poll() when terminating runqemu with a signal Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 15/28] sdkext/cases/devtool: pass a logger to HTTPService Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 16/28] httpserver: add error handler that write to the logger Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 17/28] glslang: branch rename master -> main Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 18/28] meta: remove True option to getVar and getVarFlag calls (again) Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 19/28] apt: fix do_package_qa failure Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 20/28] oeqa/selftest/locales: Add selftest for locale generation/presence Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 21/28] sstate.bbclass: Fetch non-existing local .sig files if needed Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 22/28] testimage: Fix error message to reflect new syntax Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 23/28] perf: Enable debug/source packaging Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 24/28] libc-locale: Fix on target locale generation Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 25/28] bootchart2: Fix usrmerge support Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 26/28] recipe_sanity: fix old override syntax Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 27/28] lsof: " Steve Sakoman
2023-02-11 21:23 ` [OE-core][langdale 28/28] oeqa context.py: fix --target-ip comment to include ssh port number Steve Sakoman
-- strict thread matches above, loose matches on Subject: below --
2023-02-26 17:01 [OE-core][langdale 00/28] Patch review Steve Sakoman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1676150527.git.steve@sakoman.com \
--to=steve@sakoman.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.