From: "Anuj Mittal" <anuj.mittal@intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [gatesgarth][PATCH 00/25] patch review request
Date: Tue, 2 Feb 2021 13:33:43 +0800 [thread overview]
Message-ID: <cover.1612243805.git.anuj.mittal@intel.com> (raw)
Please review these changes for gatesgarth. Builds cleanly on
autobuilder except for one intermittent failure while executing
oe-selftest on a CentOS 7 worker:
https://autobuilder.yoctoproject.org/typhoon/#/builders/79/builds/1784/steps/10/logs/step2d
This doesn't look related to the proposed changes and didn't happen
again.
Thanks,
Anuj
The following changes since commit 4e8022635fc8543d135fed3091a9f555899d1b3c:
linuxloader: Avoid confusing string concat errors (2021-01-27 09:32:36 +0000)
are available in the Git repository at:
git://push.openembedded.org/openembedded-core-contrib anujm/gatesgarth
Anuj Mittal (3):
python3: fix CVE-2021-3177
sudo: fix CVE-2021-23239
gstreamer1.0: fix failing ptest
Dorinda (2):
sanity: Verify that user isn't building in PSEUDO_IGNORE_PATHS
sanity.bbclass: sanity check for if bitbake is present in PATH
Lee Chee Yang (4):
gdk-pixbuf: fix CVE-2020-29385
p11-kit: upgrade 0.23.21 -> 0.23.22
cve-check: replace Looseversion with custom version class
cve_check: add CVE_VERSION_SUFFIX to indicate suffix in versioning
Oleksiy Obitotskyy (1):
dtc: improve reproducibility
Ovidiu Panait (1):
timezone: upgrade to 2021a
Peter Bergin (1):
buildhistory.bbclass: avoid exception for empty BUILDHISTORY_FEATURES
variable
Richard Purdie (3):
gobject-introspection: Fix variable override order
pseudo: Update to include passwd and file renaming fixes
image_types: Ensure tar archives are reproducible
Ross Burton (2):
core-image-sato-sdk-ptest: these images need ptest
ovmf-shell-image: image is only buildable on x86-64
Tomasz Dziendzielski (5):
externalsrc: Fix parsing error with devtool non-git sources
devtool: Fix file:// fetcher symlink directory structure
externalsrc: Detect code changes in submodules
lib/oe/patch.py: Don't return command stderr from runcmd function
python3: Use addtask statement instead of task dependencies
Yi Fan Yu (2):
oeqa/selftest/cases/tinfoil.py: increase timeout 10->60s
test_wait_event
strace: increase ptest timeout duration 120->240s
zhengruoqin (1):
ca-certificates: upgrade 20200601 -> 20210119
meta/classes/buildhistory.bbclass | 2 +-
meta/classes/cve-check.bbclass | 14 +-
meta/classes/externalsrc.bbclass | 16 +-
meta/classes/image_types.bbclass | 2 +-
meta/classes/sanity.bbclass | 12 ++
meta/lib/oe/cve_check.py | 60 ++++++
meta/lib/oe/patch.py | 14 +-
meta/lib/oeqa/selftest/cases/cve_check.py | 36 ++++
meta/lib/oeqa/selftest/cases/tinfoil.py | 6 +-
meta/recipes-core/ovmf/ovmf-shell-image.bb | 1 +
meta/recipes-devtools/pseudo/pseudo_git.bb | 2 +-
.../python/python3/CVE-2021-3177.patch | 191 ++++++++++++++++++
meta/recipes-devtools/python/python3_3.8.5.bb | 6 +-
meta/recipes-devtools/strace/strace/run-ptest | 2 +-
.../sudo/files/CVE-2021-23239.patch | 62 ++++++
meta/recipes-extended/sudo/sudo_1.9.3.bb | 1 +
meta/recipes-extended/timezone/timezone.inc | 6 +-
.../gdk-pixbuf/CVE-2020-29385.patch | 55 +++++
.../gdk-pixbuf/gdk-pixbuf_2.40.0.bb | 1 +
.../gobject-introspection_1.64.1.bb | 4 +-
meta/recipes-kernel/dtc/dtc.inc | 2 +
...-Makefile-to-add-CFLAGS-not-override.patch | 36 ++++
...-use-too-strict-timeout-for-validati.patch | 32 +++
.../gstreamer/gstreamer1.0_1.16.3.bb | 1 +
.../images/core-image-sato-ptest-fast.bb | 3 +
.../images/core-image-sato-sdk-ptest.bb | 3 +
.../0001-certdata2pem.py-use-python3.patch | 37 ----
...0200601.bb => ca-certificates_20210119.bb} | 3 +-
...{p11-kit_0.23.21.bb => p11-kit_0.23.22.bb} | 7 +-
scripts/lib/devtool/standard.py | 6 +-
30 files changed, 554 insertions(+), 69 deletions(-)
create mode 100644 meta/lib/oe/cve_check.py
create mode 100644 meta/lib/oeqa/selftest/cases/cve_check.py
create mode 100644 meta/recipes-devtools/python/python3/CVE-2021-3177.patch
create mode 100644 meta/recipes-extended/sudo/files/CVE-2021-23239.patch
create mode 100644 meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/CVE-2020-29385.patch
create mode 100644 meta/recipes-kernel/dtc/dtc/0001-dtc-Fix-Makefile-to-add-CFLAGS-not-override.patch
create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-tests-seek-Don-t-use-too-strict-timeout-for-validati.patch
delete mode 100644 meta/recipes-support/ca-certificates/ca-certificates/0001-certdata2pem.py-use-python3.patch
rename meta/recipes-support/ca-certificates/{ca-certificates_20200601.bb => ca-certificates_20210119.bb} (96%)
rename meta/recipes-support/p11-kit/{p11-kit_0.23.21.bb => p11-kit_0.23.22.bb} (75%)
--
2.29.2
next reply other threads:[~2021-02-02 5:34 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-02 5:33 Anuj Mittal [this message]
2021-02-02 5:33 ` [gatesgarth][PATCH 01/25] python3: fix CVE-2021-3177 Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 02/25] sudo: fix CVE-2021-23239 Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 03/25] gdk-pixbuf: fix CVE-2020-29385 Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 04/25] p11-kit: upgrade 0.23.21 -> 0.23.22 Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 05/25] externalsrc: Fix parsing error with devtool non-git sources Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 06/25] oeqa/selftest/cases/tinfoil.py: increase timeout 10->60s test_wait_event Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 07/25] devtool: Fix file:// fetcher symlink directory structure Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 08/25] gstreamer1.0: fix failing ptest Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 09/25] timezone: upgrade to 2021a Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 10/25] sanity: Verify that user isn't building in PSEUDO_IGNORE_PATHS Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 11/25] sanity.bbclass: sanity check for if bitbake is present in PATH Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 12/25] externalsrc: Detect code changes in submodules Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 13/25] buildhistory.bbclass: avoid exception for empty BUILDHISTORY_FEATURES variable Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 14/25] gobject-introspection: Fix variable override order Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 15/25] pseudo: Update to include passwd and file renaming fixes Anuj Mittal
2021-02-02 5:33 ` [gatesgarth][PATCH 16/25] ca-certificates: upgrade 20200601 -> 20210119 Anuj Mittal
2021-02-02 5:34 ` [gatesgarth][PATCH 17/25] cve-check: replace Looseversion with custom version class Anuj Mittal
2021-02-02 5:34 ` [gatesgarth][PATCH 18/25] cve_check: add CVE_VERSION_SUFFIX to indicate suffix in versioning Anuj Mittal
2021-02-02 5:34 ` [gatesgarth][PATCH 19/25] lib/oe/patch.py: Don't return command stderr from runcmd function Anuj Mittal
2021-02-02 5:34 ` [gatesgarth][PATCH 20/25] python3: Use addtask statement instead of task dependencies Anuj Mittal
2021-02-02 5:34 ` [gatesgarth][PATCH 21/25] image_types: Ensure tar archives are reproducible Anuj Mittal
2021-02-02 5:34 ` [gatesgarth][PATCH 22/25] dtc: improve reproducibility Anuj Mittal
2021-02-02 5:34 ` [gatesgarth][PATCH 23/25] core-image-sato-sdk-ptest: these images need ptest Anuj Mittal
2021-02-02 5:34 ` [gatesgarth][PATCH 24/25] ovmf-shell-image: image is only buildable on x86-64 Anuj Mittal
2021-02-02 5:34 ` [gatesgarth][PATCH 25/25] strace: increase ptest timeout duration 120->240s Anuj Mittal
2021-02-02 8:38 ` [OE-core] [gatesgarth][PATCH 00/25] patch review request Lee Chee Yang
2021-02-03 2:39 ` Anuj Mittal
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.1612243805.git.anuj.mittal@intel.com \
--to=anuj.mittal@intel.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.