All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core][dunfell 00/28] Patch review
@ 2020-05-05  3:18 Steve Sakoman
  2020-05-05  3:18 ` [OE-core][dunfell 01/28] bzip2/pbzip2: Correct license information Steve Sakoman
                   ` (27 more replies)
  0 siblings, 28 replies; 30+ messages in thread
From: Steve Sakoman @ 2020-05-05  3:18 UTC (permalink / raw)
  To: openembedded-core

Please review this next set of patches for dunfell and have comments back
by end of day Wednesday.

The following changes since commit 2cc3fac9cd1a0d77931c9e49dbe2941fa8619c51:

  parselogs.py: ignore pulseaudio startup warning messages (2020-04-30 11:59:59 -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

Alex Kiernan (1):
  run-postinsts: Set RemainAfterExit on systemd unit

Alexander Kanavin (2):
  testimage.bbclass: correctly process SIGTERM
  buildtools-extended-tarball: add libgomp-dev

Andrew Geissler (2):
  boost: revert 1.72.0 regression
  libffi: fix v3.3 compile on ppc64le

Domarys Correa (1):
  insane.bbclass: Add test for shebang line length

Drew Moseley (1):
  perl: Add missing dependency for tie-hash on carp.

Jan Luebbe (1):
  openssl: upgrade 1.1.1f -> 1.1.1g

Joe Slater (1):
  vim: do not adjust script paths building for target

Kai Kang (1):
  pseudo: add macro guard for seccomp

Khem Raj (6):
  packagegroup-go-sdk-target: Enable on rv64
  go: Rely on go-runtime to provide needed modules
  packagegroup-go-sdk-target: Add go to packagegroup
  gcc: Configure all gccs with --disable-install-libiberty
  binutils: Detect proper static-libstdc++ support when using clang
  binutils: Install PIC version of libiberty.a

Mingli Yu (2):
  pbzip2: Fix license warning
  iputils: Initialize libgcrypt

Peter Kjellerstedt (1):
  busybox: Correct the name of the bzip2 license

Richard Purdie (6):
  bzip2/pbzip2: Correct license information
  oeqa/selftest: Add test for conflicting sysroot provider
  staging: Fix overlapping file failures
  targetcontrol: Fix leaking log handler
  oeqa/qemurunner: Clean up failure handling
  gcc-target: Ensure buildtools-extended-tarball doesn't use arch=native

Tim Orling (1):
  scripts/install-buildtools: bump to 3.1 release by default

Trevor Gamblin (1):
  python3: fix CVE-2020-8492

Wang Mingyu (1):
  icu: CVE-2020-10531

 .../sysroot-test/sysroot-test-arch1_1.0.bb    |  14 +
 .../sysroot-test/sysroot-test-arch2_1.0.bb    |  14 +
 .../sysroot-test/sysroot-test_1.0.bb          |   6 +
 meta/classes/insane.bbclass                   |  25 +-
 meta/classes/staging.bbclass                  |  12 +-
 meta/classes/testimage.bbclass                |   8 +-
 .../common-licenses/{bzip2 => bzip2-1.0.6}    |   0
 meta/lib/oeqa/selftest/cases/sysroot.py       |  37 +++
 meta/lib/oeqa/targetcontrol.py                |   7 +-
 meta/lib/oeqa/utils/qemurunner.py             |  11 +-
 .../{openssl_1.1.1f.bb => openssl_1.1.1g.bb}  |   2 +-
 meta/recipes-core/busybox/busybox.inc         |   2 +-
 .../meta/buildtools-extended-tarball.bb       |   1 +
 .../packagegroup-go-sdk-target.bb             |   3 +-
 .../binutils/binutils-2.34.inc                |   1 +
 meta/recipes-devtools/binutils/binutils.inc   |   5 +
 ...or-clang-before-checking-gcc-version.patch |  48 ++++
 .../gcc/gcc-configure-common.inc              |   1 +
 .../gcc/gcc-cross-canadian.inc                |   6 -
 meta/recipes-devtools/gcc/gcc-cross.inc       |   4 -
 meta/recipes-devtools/gcc/gcc-target.inc      |  14 +-
 meta/recipes-devtools/go/go-target.inc        |   4 +-
 .../perl/files/perl-rdepends.txt              |   1 +
 .../pseudo/files/seccomp.patch                |  15 +-
 ...20-8492-Fix-AbstractBasicAuthHandler.patch | 248 ++++++++++++++++++
 meta/recipes-devtools/python/python3_3.8.2.bb |   1 +
 .../run-postinsts/run-postinsts.service       |   2 +-
 meta/recipes-extended/bzip2/bzip2_1.0.8.bb    |   2 +-
 .../0001-iputils-Initialize-libgcrypt.patch   |  55 ++++
 .../iputils/iputils_s20190709.bb              |   1 +
 meta/recipes-extended/pbzip2/pbzip2_1.1.13.bb |   2 +-
 meta/recipes-support/boost/boost_1.72.0.bb    |   1 +
 ...001-revert-cease-dependence-on-range.patch |  53 ++++
 .../icu/icu/CVE-2020-10531.patch              | 128 +++++++++
 meta/recipes-support/icu/icu_66.1.bb          |   1 +
 ...pc.h-fix-build-failure-with-powerpc7.patch |  62 +++++
 meta/recipes-support/libffi/libffi_3.3.bb     |   1 +
 .../vim/files/no-path-adjust.patch            |  27 ++
 meta/recipes-support/vim/vim.inc              |  12 +-
 scripts/install-buildtools                    |   6 +-
 40 files changed, 793 insertions(+), 50 deletions(-)
 create mode 100644 meta-selftest/recipes-test/sysroot-test/sysroot-test-arch1_1.0.bb
 create mode 100644 meta-selftest/recipes-test/sysroot-test/sysroot-test-arch2_1.0.bb
 create mode 100644 meta-selftest/recipes-test/sysroot-test/sysroot-test_1.0.bb
 rename meta/files/common-licenses/{bzip2 => bzip2-1.0.6} (100%)
 create mode 100644 meta/lib/oeqa/selftest/cases/sysroot.py
 rename meta/recipes-connectivity/openssl/{openssl_1.1.1f.bb => openssl_1.1.1g.bb} (98%)
 create mode 100644 meta/recipes-devtools/binutils/binutils/0016-Check-for-clang-before-checking-gcc-version.patch
 create mode 100644 meta/recipes-devtools/python/files/0001-bpo-39503-CVE-2020-8492-Fix-AbstractBasicAuthHandler.patch
 create mode 100644 meta/recipes-extended/iputils/iputils/0001-iputils-Initialize-libgcrypt.patch
 create mode 100644 meta/recipes-support/boost/files/0001-revert-cease-dependence-on-range.patch
 create mode 100644 meta/recipes-support/icu/icu/CVE-2020-10531.patch
 create mode 100644 meta/recipes-support/libffi/libffi/0001-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch
 create mode 100644 meta/recipes-support/vim/files/no-path-adjust.patch

-- 
2.17.1


^ permalink raw reply	[flat|nested] 30+ messages in thread
* [OE-core][dunfell 00/28] Patch review
@ 2021-02-08 13:51 Steve Sakoman
  0 siblings, 0 replies; 30+ messages in thread
From: Steve Sakoman @ 2021-02-08 13:51 UTC (permalink / raw)
  To: openembedded-core

Please review this next set of patches for dunfell and have comments back by
end of day Wednesday.

Passed a-full on autobuilder:

https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/1837

The following changes since commit e0cd2e1f9ae956d72b8033ce1c4403d8bd99d3d5:

  staging: Clean up files installed into the sysroot (2021-01-29 04:48:10 -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 (1):
  ca-certificates: correct upstream version check

Anatol Belski (1):
  glib-2.0: Rename patch file for CVE-2020-35457

Awais Belal (1):
  kernel.bbclass: fix deployment for initramfs images

Bruce Ashfield (3):
  linux-yocto/5.4: update to v5.4.90
  linux-yocto-rt/5.4: fix 5.4-stable caused build breakage
  linux-yocto/5.4: update to v5.4.94

Dorinda (1):
  sanity.bbclass: Check if PSEUDO_IGNORE_PATHS and paths under pseudo
    control overlap

Julien Massot (1):
  rng-tools: fix rngd_jitter initialization

Lee Chee Yang (4):
  cve-check: replace Looseversion with custom version class
  cve_check: add CVE_VERSION_SUFFIX to indicate suffix in versioning
  openssl: set CVE_VERSION_SUFFIX
  wic/selftest: test_permissions also test bitbake image

Mark Hatle (1):
  package.bbclass: hash equivalency and pr service

Peter Bergin (1):
  buildhistory.bbclass: avoid exception for empty BUILDHISTORY_FEATURES
    variable

Ricardo Ribalda (1):
  classes/image_types_wic: Reorder do_flush_pseudodb

Ricardo Ribalda Delgado (1):
  oeqa: wic: Add tests for permissions and change-directory

Richard Purdie (5):
  pseudo: Update to include passwd and file renaming fixes
  package: Ensure do_packagedata is cleaned correctly
  image_types: Ensure tar archives are reproducible
  qemu.inc: Should depend on qemu-system-native, not qemu-native
  opkg: Fix build reproducibility issue

Sourabh Banerjee (1):
  layer.conf: fix sanity error for PATH variable in extensible SDK
    workflow

Tomasz Dziendzielski (3):
  python3: Use addtask statement instead of task dependencies
  lib/oe/patch.py: Ignore scissors line on applying patch
  sstatesig: Add descriptive error message to getpwuid/getgrgid "uid/gid
    not found" KeyError

Vyacheslav Yurkov (1):
  npm.bbclass: use python3 for npm config

Wang Mingyu (1):
  ca-certificates: upgrade 20190110 -> 20200601

zhengruoqin (1):
  ca-certificates: upgrade 20200601 -> 20210119

 meta/classes/buildhistory.bbclass             |   2 +-
 meta/classes/cve-check.bbclass                |  14 ++-
 meta/classes/image_types.bbclass              |   2 +-
 meta/classes/image_types_wic.bbclass          |   2 +-
 meta/classes/kernel.bbclass                   |   2 +-
 meta/classes/npm.bbclass                      |   6 +-
 meta/classes/package.bbclass                  |  59 ++++++++--
 meta/classes/sanity.bbclass                   |  10 ++
 meta/conf/bitbake.conf                        |   1 +
 meta/conf/layer.conf                          |   4 +-
 meta/conf/machine/include/qemu.inc            |   2 +-
 meta/lib/oe/cve_check.py                      |  60 ++++++++++
 meta/lib/oe/patch.py                          |   2 +-
 meta/lib/oe/sstatesig.py                      |   6 +-
 meta/lib/oeqa/selftest/cases/cve_check.py     |  36 ++++++
 meta/lib/oeqa/selftest/cases/prservice.py     |   8 +-
 meta/lib/oeqa/selftest/cases/wic.py           | 106 ++++++++++++++++++
 .../openssl/openssl_1.1.1i.bb                 |   2 +
 ...onEntry-lis.patch => CVE-2020-35457.patch} |   0
 meta/recipes-core/glib-2.0/glib-2.0_2.62.6.bb |   2 +-
 .../opkg/opkg/sourcedateepoch.patch           |  25 +++++
 meta/recipes-devtools/opkg/opkg_0.4.2.bb      |   1 +
 meta/recipes-devtools/pseudo/pseudo_git.bb    |   2 +-
 meta/recipes-devtools/python/python3_3.8.2.bb |   5 +-
 .../linux/linux-yocto-rt_5.4.bb               |   6 +-
 .../linux/linux-yocto-tiny_5.4.bb             |   8 +-
 meta/recipes-kernel/linux/linux-yocto_5.4.bb  |  22 ++--
 .../0001-certdata2pem.py-use-python3.patch    |  37 ------
 ...0190110.bb => ca-certificates_20210119.bb} |   6 +-
 ...-O_NONBLOCK-setting-for-entropy-pipe.patch |  26 +++++
 ...ialize-AES-key-before-setting-the-en.patch |  38 +++++++
 ...ys-read-from-entropy-pipe-before-set.patch |  38 +++++++
 .../rng-tools/rng-tools_6.9.bb                |   3 +
 33 files changed, 450 insertions(+), 93 deletions(-)
 create mode 100644 meta/lib/oe/cve_check.py
 create mode 100644 meta/lib/oeqa/selftest/cases/cve_check.py
 rename meta/recipes-core/glib-2.0/glib-2.0/{0001-goption-Add-a-precondition-to-avoid-GOptionEntry-lis.patch => CVE-2020-35457.patch} (100%)
 create mode 100644 meta/recipes-devtools/opkg/opkg/sourcedateepoch.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_20190110.bb => ca-certificates_20210119.bb} (93%)
 create mode 100644 meta/recipes-support/rng-tools/rng-tools/0001-rngd_jitter-fix-O_NONBLOCK-setting-for-entropy-pipe.patch
 create mode 100644 meta/recipes-support/rng-tools/rng-tools/0002-rngd_jitter-initialize-AES-key-before-setting-the-en.patch
 create mode 100644 meta/recipes-support/rng-tools/rng-tools/0003-rngd_jitter-always-read-from-entropy-pipe-before-set.patch

-- 
2.25.1


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

end of thread, other threads:[~2021-02-08 13:52 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-05  3:18 [OE-core][dunfell 00/28] Patch review Steve Sakoman
2020-05-05  3:18 ` [OE-core][dunfell 01/28] bzip2/pbzip2: Correct license information Steve Sakoman
2020-05-05  3:18 ` [OE-core][dunfell 02/28] busybox: Correct the name of the bzip2 license Steve Sakoman
2020-05-05  3:18 ` [OE-core][dunfell 03/28] pbzip2: Fix license warning Steve Sakoman
2020-05-05  3:18 ` [OE-core][dunfell 04/28] packagegroup-go-sdk-target: Enable on rv64 Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 05/28] go: Rely on go-runtime to provide needed modules Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 06/28] packagegroup-go-sdk-target: Add go to packagegroup Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 07/28] gcc: Configure all gccs with --disable-install-libiberty Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 08/28] binutils: Detect proper static-libstdc++ support when using clang Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 09/28] binutils: Install PIC version of libiberty.a Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 10/28] insane.bbclass: Add test for shebang line length Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 11/28] vim: do not adjust script paths building for target Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 12/28] boost: revert 1.72.0 regression Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 13/28] perl: Add missing dependency for tie-hash on carp Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 14/28] testimage.bbclass: correctly process SIGTERM Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 15/28] run-postinsts: Set RemainAfterExit on systemd unit Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 16/28] scripts/install-buildtools: bump to 3.1 release by default Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 17/28] oeqa/selftest: Add test for conflicting sysroot provider Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 18/28] staging: Fix overlapping file failures Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 19/28] python3: fix CVE-2020-8492 Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 20/28] targetcontrol: Fix leaking log handler Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 21/28] oeqa/qemurunner: Clean up failure handling Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 22/28] buildtools-extended-tarball: add libgomp-dev Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 23/28] libffi: fix v3.3 compile on ppc64le Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 24/28] pseudo: add macro guard for seccomp Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 25/28] gcc-target: Ensure buildtools-extended-tarball doesn't use arch=native Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 26/28] iputils: Initialize libgcrypt Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 27/28] openssl: upgrade 1.1.1f -> 1.1.1g Steve Sakoman
2020-05-05  3:19 ` [OE-core][dunfell 28/28] icu: CVE-2020-10531 Steve Sakoman
  -- strict thread matches above, loose matches on Subject: below --
2021-02-08 13:51 [OE-core][dunfell 00/28] Patch review Steve Sakoman

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.