From: Steve Sakoman <steve@sakoman.com>
To: openembedded-core@lists.openembedded.org
Subject: [OE-core][dunfell 00/29] Patch review
Date: Sun, 31 Oct 2021 06:57:19 -1000 [thread overview]
Message-ID: <cover.1635699172.git.steve@sakoman.com> (raw)
Please review this set of patches for dunfell and have comments back by end
of day Tuesday.
Passed a-full on autobuilder:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/2833
The following changes since commit a7520c47573cd166d441e504737492b86f5aa42e:
selftest/reproducible: adjust exclusion list for dunfell (2021-10-25 13:28:19 -1000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib stable/dunfell-nut
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=stable/dunfell-nut
Alexander Kanavin (7):
linux-firmware: upgrade 20210511 -> 20210818
linux-firmware: upgrade 20210818 -> 20210919
wireless-regdb: upgrade 2021.04.21 -> 2021.07.14
wireless-regdb: upgrade 2021.07.14 -> 2021.08.28
ca-certificates: update 20210119 -> 20211016
tzdata: upgrade 2021a -> 2021d
tzdata: update 2021d -> 2021e
Daniel McGregor (1):
bitbake.conf: Add gpg-agent as a host tool
Jose Quaresma (1):
sstate: fix touching files inside pseudo
Minjae Kim (1):
vim: fix 2021-3796
Oleksandr Kravchuk (1):
mirrors.bbclass: remove dead infozip mirrors
Ranjitsinh Rathod (1):
curl: Whitelist CVE-2021-22897
Richard Purdie (5):
base: Clean up unneeded len() calls
base: Use repr() for printing exceptions
reproducible_build: Drop obsolete sstate workaround
patch: Use repr() with exceptions instead of str()
git: Fix determinism issue
Ross Burton (8):
devtool: fix modify with patches in override directories
sstate: don't silently handle all exceptions in sstate_checkhashes
oe/license: implement ast.NodeVisitor.visit_Constant
license.bbclass: implement ast.NodeVisitor.visit_Constant
oe/utils: log exceptions in ThreadedWorker functions
testimage: fix unclosed testdata file
oeqa/runtime: load modules using importlib
oeqa/runtime: search sys.path explicitly for modules
Steve Sakoman (3):
waffle: old website is down, update to new project URLs
stress-ng: convert to git, website is down
stress-ng: improve reproducibility
Teoh Jay Shen (1):
oeqa/runtime/parselogs: modified drm error in common errors list
meta/classes/base.bbclass | 12 +--
meta/classes/devtool-source.bbclass | 4 +-
meta/classes/license.bbclass | 4 +
meta/classes/mirrors.bbclass | 1 -
meta/classes/patch.bbclass | 4 +-
meta/classes/reproducible_build.bbclass | 4 -
meta/classes/sstate.bbclass | 11 +--
meta/classes/testimage.bbclass | 7 +-
meta/conf/bitbake.conf | 2 +-
meta/lib/oe/license.py | 6 ++
meta/lib/oe/utils.py | 3 +-
meta/lib/oeqa/runtime/cases/parselogs.py | 2 +-
meta/lib/oeqa/runtime/context.py | 29 +++----
meta/lib/oeqa/selftest/cases/bbtests.py | 3 -
meta/recipes-devtools/git/git.inc | 2 +-
meta/recipes-devtools/git/git/fixsort.patch | 36 +++++++++
...write-the-timestamp-into-compressed-.patch | 26 ++++++
.../stress-ng/stress-ng_0.11.17.bb | 7 +-
meta/recipes-extended/timezone/timezone.inc | 7 +-
meta/recipes-graphics/waffle/waffle_1.6.0.bb | 12 +--
...20210511.bb => linux-firmware_20210919.bb} | 6 +-
....04.21.bb => wireless-regdb_2021.08.28.bb} | 2 +-
...ertdata2pem.py-print-a-warning-for-e.patch | 80 +++++++++++++++++++
.../ca-certificates/sbindir.patch | 26 ------
...pdate-ca-certificates-support-Toybox.patch | 33 --------
...0210119.bb => ca-certificates_20211016.bb} | 5 +-
meta/recipes-support/curl/curl_7.69.1.bb | 5 ++
.../vim/files/CVE-2021-3796.patch | 50 ++++++++++++
28 files changed, 266 insertions(+), 123 deletions(-)
create mode 100644 meta/recipes-devtools/git/git/fixsort.patch
create mode 100644 meta/recipes-extended/stress-ng/stress-ng/0001-Makefile-do-not-write-the-timestamp-into-compressed-.patch
rename meta/recipes-kernel/linux-firmware/{linux-firmware_20210511.bb => linux-firmware_20210919.bb} (99%)
rename meta/recipes-kernel/wireless-regdb/{wireless-regdb_2021.04.21.bb => wireless-regdb_2021.08.28.bb} (94%)
create mode 100644 meta/recipes-support/ca-certificates/ca-certificates/0001-Revert-mozilla-certdata2pem.py-print-a-warning-for-e.patch
delete mode 100644 meta/recipes-support/ca-certificates/ca-certificates/sbindir.patch
delete mode 100644 meta/recipes-support/ca-certificates/ca-certificates/update-ca-certificates-support-Toybox.patch
rename meta/recipes-support/ca-certificates/{ca-certificates_20210119.bb => ca-certificates_20211016.bb} (95%)
create mode 100644 meta/recipes-support/vim/files/CVE-2021-3796.patch
--
2.25.1
next reply other threads:[~2021-10-31 16:58 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-31 16:57 Steve Sakoman [this message]
2021-10-31 16:57 ` [OE-core][dunfell 01/29] curl: Whitelist CVE-2021-22897 Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 02/29] vim: fix 2021-3796 Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 03/29] sstate: fix touching files inside pseudo Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 04/29] devtool: fix modify with patches in override directories Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 05/29] sstate: don't silently handle all exceptions in sstate_checkhashes Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 06/29] base: Clean up unneeded len() calls Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 07/29] base: Use repr() for printing exceptions Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 08/29] bitbake.conf: Add gpg-agent as a host tool Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 09/29] oe/license: implement ast.NodeVisitor.visit_Constant Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 10/29] license.bbclass: " Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 11/29] oe/utils: log exceptions in ThreadedWorker functions Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 12/29] reproducible_build: Drop obsolete sstate workaround Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 13/29] patch: Use repr() with exceptions instead of str() Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 14/29] testimage: fix unclosed testdata file Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 15/29] oeqa/runtime: load modules using importlib Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 16/29] oeqa/runtime: search sys.path explicitly for modules Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 17/29] oeqa/runtime/parselogs: modified drm error in common errors list Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 18/29] mirrors.bbclass: remove dead infozip mirrors Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 19/29] waffle: old website is down, update to new project URLs Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 20/29] stress-ng: convert to git, website is down Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 21/29] stress-ng: improve reproducibility Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 22/29] git: Fix determinism issue Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 23/29] linux-firmware: upgrade 20210511 -> 20210818 Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 24/29] linux-firmware: upgrade 20210818 -> 20210919 Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 25/29] wireless-regdb: upgrade 2021.04.21 -> 2021.07.14 Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 26/29] wireless-regdb: upgrade 2021.07.14 -> 2021.08.28 Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 27/29] ca-certificates: update 20210119 -> 20211016 Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 28/29] tzdata: upgrade 2021a -> 2021d Steve Sakoman
2021-10-31 16:57 ` [OE-core][dunfell 29/29] tzdata: update 2021d -> 2021e 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.1635699172.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.