Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dunfell xilinx staging2 #430

Open
wants to merge 7 commits into
base: dunfell
Choose a base branch
from

Conversation

karthikpoduval
Copy link
Contributor

No description provided.

Signed-off-by: Karthik Poduval <karthik.poduval@gmail.com>
Signed-off-by: Karthik Poduval <karthik.poduval@gmail.com>
Signed-off-by: Karthik Poduval <karthik.poduval@gmail.com>
Add support for Xilinx ZCU102 development board

Signed-off-by: Karthik Poduval <karthik.poduval@gmail.com>
ZCU102 customizations separated by machine class

Signed-off-by: Karthik Poduval <karthik.poduval@gmail.com>
Signed-off-by: Karthik Poduval <karthik.poduval@gmail.com>
This is done to prevent a note from build.
NOTE: Multiple providers are available for qemu-native (qemu-native,
qemu-xilinx-native)
Consider defining a PREFERRED_PROVIDER entry to match qemu-native
NOTE: Multiple providers are available for runtime nativesdk-qemu
(nativesdk-qemu, nativesdk-qemu-xilinx)
Consider defining a PREFERRED_RPROVIDER entry to match nativesdk-qemu
@@ -71,6 +71,17 @@ IMAGE_BOOT_FILES_append_sama5d27-som1-ek-sd = "\
"
WKS_FILE_sama5d27-som1-ek-sd = "yoe-sdimage.wks"

PREFERRED_PROVIDER_qemu-native ?= "qemu-native"
PREFERRED_PROVIDER_nativesdk-qemu ?= "nativesdk-qemu"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure if this will be generally compatible with all machines -- will defer to @kraj

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be ok since, it is doing the default setup, so no change for normal operations. But it offers a nice way to override it when needed. So I am ok with this change

PREFERRED_PROVIDER_nativesdk-qemu_zcu102-zynqmp = "nativesdk-qemu-xilinx"
PREFERRED_PROVIDER_virtual/pmu-firmware_zcu102-zynqmp = "pmu-firmware"
PREFERRED_PROVIDER_virtual/boot-bin_zcu102-zynqmp = "xilinx-bootbin"
PREFERRED_PROVIDER_virtual/dtb_zcu102-zynqmp = "device-tree"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that looks better, as options are only set for Xilinx machines. thoughts @kraj ?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if these options are only being used for single machine zcu102-zynqmp then better place for this is machine config file but if its SOC family settings then it makes sense here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kraj do you mean in meta-xilinx/meta-xilinx-bsp/conf/machine/zcu102-zynqmp.conf ? But that would be a pull request for the xilinx giuthub.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

right

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if these options are only being used for single machine zcu102-zynqmp then better place for this is machine config file but if its SOC family settings then it makes sense here.

@kraj
I haven't tried other SoC's from Xilinx but they may require this change too, I don't want to assume without trying. On a separate note, is wildcard possible here ? Something like.
PREFERRED_PROVIDER_virtual/dtb_*-zynqmp = "device-tree"

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think wildcard work in such cases and its also not a good idea, since you want to be particular about it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

right

I looked a bit closer, it looks like Xilinx sets PREFERRED_PROVIDER_virtual/pmu-firmware, PREFERRED_PROVIDER_virtual/boot-bin and PREFERRED_PROVIDER_virtual/dtb in their petalinux distro
https://github.com/Xilinx/meta-petalinux/blob/master/conf/distro/include/petalinux-features.conf#L34

So I tried to build using DISTRO=petalinux bitbake petalinux-image-minimal
but the petalinux distro is including the poky distro.
https://github.com/Xilinx/meta-petalinux/blob/master/conf/distro/petalinux.conf#L1

however poky distro isn't being provided by Yoe workspace in my understanding.
Not sure how to proceed, kindly advise

If build with petalinux distro then then following variable don't need to be set.
PREFERRED_PROVIDER_virtual/pmu-firmware, PREFERRED_PROVIDER_virtual/boot-bin and PREFERRED_PROVIDER_virtual/dtb

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure best how to handle the poky requirement ... it is my opinion that distros should not require poky -- that severely limits the portability of the layer.

This brings up a more basic question -- should we support multiple distros in the Yoe directory structure? I don't see any reason offhand why we can't -- simply remove meta-yoe from the layers -- however, we then loose many of the nice yoe defaults ...

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these are all machine specific settings, so they should either be in machine config file or perhaps user specific local.conf

/home/kpoduval/workspace/yoe-zcu/sources/meta-xilinx/meta-xilinx-bsp \
/home/kpoduval/workspace/yoe-zcu/sources/meta-xilinx/meta-xilinx-contrib \
/home/kpoduval/workspace/yoe-zcu/sources/meta-xilinx/meta-xilinx-pynq \
/home/kpoduval/workspace/yoe-zcu/sources/meta-xilinx/meta-xilinx-standalone \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think its hard-coding paths here perhaps a bug in our layer adding tool but please replace it with ${TOPDIR}

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, it looks like the very next patch in the series fixed it to ${TOPDIR} (looks like yoe_/bitbake- scripts did the magic. Should I squash all the xilinx related patches to one ? Also should these be moved to BSPLAYERS instead of BBLAYERS ? If yes then the rockchip layer should be moved too. Please confirm.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think just squash the one which fixes the above issue into one. Rest seem to be ok

kraj added a commit that referenced this pull request Mar 23, 2022
… sources/meta-atmel sources/meta-clang sources/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-qt5 sources/openembedded-core

* sources/bitbake ac868167...3f6654ee (12):
  > fetcher2: Use SkipRecipe instead of erroring out
  > utils: Fix lockfile path length issues
  > Revert "checksum: Support uri formatted file list"
  > checksum: Support uri formatted file list
  > Revert "ast: Fix YOCTO #8621?"
  > ast: Fix YOCTO #8621?
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-96boards 3389eed...4d42978 (9):
  > u-boot: Make recipe specific to poplar
  > u-boot-orangepi-i96: Enable it for selected machine
  > u-boot-juno: Remove recipe
  > Merge pull request #354 from YoeDistro/yoe/pu
  > layer.conf: switch compatible to kirkstone
  < layers: Bump to use kirkstone
  < u-boot: Make recipe specific to poplar
  < u-boot-orangepi-i96: Enable it for selected machine
  < u-boot-juno: Remove recipe

* sources/meta-arm bff49b6...c45673c (2):
  > ffa-debugfs-mod: Do not build for rpi machines
  > CI: save task logs when a job fails

* sources/meta-atmel 62ef874...ff457ba (1):
  > cryptoauthlib: shared library paths can not be nonarch

* sources/meta-clang 1d8389b...912edc5 (4):
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...311b4323 (3):
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b2...f8c0d6a8d (80):
  > XXX: Add Github actions CI support
  > drbd-utils: update 9.13.1 -> 9.20.2
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...eafaf3b (4):
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-qt5 4837db1...5a64ae9 (1):
  > ogl-runtime: Check for ppc64 before ppc

* sources/openembedded-core 25d6bf8079...b38eedacc0 (30):
  > core-image-ptest-all,core-image-ptest-fast: Depend on core-image class
  > qemux86: Add identical qemux86copy variant for tests
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > Revert "selftest/lic_checksum: Add test for filename containing space"
  > selftest/lic_checksum: Add test for filename containing space
  > gcc: sanitizer: Fix tsan against glibc 2.34
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > qemu: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj added a commit that referenced this pull request Mar 23, 2022
… sources/meta-atmel sources/meta-clang sources/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-qt5 sources/openembedded-core

* sources/bitbake ac868167...3f6654ee (12):
  > fetcher2: Use SkipRecipe instead of erroring out
  > utils: Fix lockfile path length issues
  > Revert "checksum: Support uri formatted file list"
  > checksum: Support uri formatted file list
  > Revert "ast: Fix YOCTO #8621?"
  > ast: Fix YOCTO #8621?
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-96boards 3389eed...4d42978 (9):
  > u-boot: Make recipe specific to poplar
  > u-boot-orangepi-i96: Enable it for selected machine
  > u-boot-juno: Remove recipe
  > Merge pull request #354 from YoeDistro/yoe/pu
  > layer.conf: switch compatible to kirkstone
  < layers: Bump to use kirkstone
  < u-boot: Make recipe specific to poplar
  < u-boot-orangepi-i96: Enable it for selected machine
  < u-boot-juno: Remove recipe

* sources/meta-arm bff49b6...c45673c (2):
  > ffa-debugfs-mod: Do not build for rpi machines
  > CI: save task logs when a job fails

* sources/meta-atmel 62ef874...ff457ba (1):
  > cryptoauthlib: shared library paths can not be nonarch

* sources/meta-clang 1d8389b...912edc5 (4):
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...311b4323 (3):
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b2...dd5e426d7 (84):
  > XXX: Add Github actions CI support
  > ncmpc: upgrade to 0.46
  > mpc: upgrade to 0.34
  > libmpdclient: upgrade to 2.20
  > mpd: upgrade to 0.23.6
  > drbd-utils: update 9.13.1 -> 9.20.2
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...eafaf3b (4):
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-qt5 4837db1...5a64ae9 (1):
  > ogl-runtime: Check for ppc64 before ppc

* sources/openembedded-core 25d6bf8079...9877fad188 (30):
  > qemu: Depend on virtual/egl
  > core-image-ptest-all,core-image-ptest-fast: Depend on core-image class
  > qemux86: Add identical qemux86copy variant for tests
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > Revert "selftest/lic_checksum: Add test for filename containing space"
  > selftest/lic_checksum: Add test for filename containing space
  > gcc: sanitizer: Fix tsan against glibc 2.34
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj added a commit that referenced this pull request Mar 24, 2022
… sources/meta-atmel sources/meta-clang sources/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-qt5 sources/openembedded-core

* sources/bitbake ac868167...3f6654ee (12):
  > fetcher2: Use SkipRecipe instead of erroring out
  > utils: Fix lockfile path length issues
  > Revert "checksum: Support uri formatted file list"
  > checksum: Support uri formatted file list
  > Revert "ast: Fix YOCTO #8621?"
  > ast: Fix YOCTO #8621?
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-96boards 3389eed...4d42978 (9):
  > u-boot: Make recipe specific to poplar
  > u-boot-orangepi-i96: Enable it for selected machine
  > u-boot-juno: Remove recipe
  > Merge pull request #354 from YoeDistro/yoe/pu
  > layer.conf: switch compatible to kirkstone
  < layers: Bump to use kirkstone
  < u-boot: Make recipe specific to poplar
  < u-boot-orangepi-i96: Enable it for selected machine
  < u-boot-juno: Remove recipe

* sources/meta-arm bff49b6...c45673c (2):
  > ffa-debugfs-mod: Do not build for rpi machines
  > CI: save task logs when a job fails

* sources/meta-atmel 62ef874...ff457ba (1):
  > cryptoauthlib: shared library paths can not be nonarch

* sources/meta-clang 1d8389b...912edc5 (4):
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...311b4323 (3):
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b2...72e4c01dc (85):
  > XXX: Add Github actions CI support
  > folks: Upgrade to 0.15.5
  > ncmpc: upgrade to 0.46
  > mpc: upgrade to 0.34
  > libmpdclient: upgrade to 2.20
  > mpd: upgrade to 0.23.6
  > drbd-utils: update 9.13.1 -> 9.20.2
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...eafaf3b (4):
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-qt5 4837db1...5a64ae9 (1):
  > ogl-runtime: Check for ppc64 before ppc

* sources/openembedded-core 25d6bf8079...a8016f575d (30):
  > qemu: Depend on libepoxy instead of virtual/libgl
  > core-image-ptest-all,core-image-ptest-fast: Depend on core-image class
  > qemux86: Add identical qemux86copy variant for tests
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > Revert "selftest/lic_checksum: Add test for filename containing space"
  > selftest/lic_checksum: Add test for filename containing space
  > gcc: sanitizer: Fix tsan against glibc 2.34
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj added a commit that referenced this pull request Mar 24, 2022
… sources/meta-atmel sources/meta-clang sources/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-qt5 sources/openembedded-core

* sources/bitbake ac868167...3f6654ee (12):
  > fetcher2: Use SkipRecipe instead of erroring out
  > utils: Fix lockfile path length issues
  > Revert "checksum: Support uri formatted file list"
  > checksum: Support uri formatted file list
  > Revert "ast: Fix YOCTO #8621?"
  > ast: Fix YOCTO #8621?
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-96boards 3389eed...4d42978 (9):
  > u-boot: Make recipe specific to poplar
  > u-boot-orangepi-i96: Enable it for selected machine
  > u-boot-juno: Remove recipe
  > Merge pull request #354 from YoeDistro/yoe/pu
  > layer.conf: switch compatible to kirkstone
  < layers: Bump to use kirkstone
  < u-boot: Make recipe specific to poplar
  < u-boot-orangepi-i96: Enable it for selected machine
  < u-boot-juno: Remove recipe

* sources/meta-arm bff49b6...c45673c (2):
  > ffa-debugfs-mod: Do not build for rpi machines
  > CI: save task logs when a job fails

* sources/meta-atmel 62ef874...ff457ba (1):
  > cryptoauthlib: shared library paths can not be nonarch

* sources/meta-clang 1d8389b...912edc5 (4):
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...311b4323 (3):
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b2...2cf5c1809 (84):
  > XXX: Add Github actions CI support
  > folks: Upgrade to 0.15.5
  > ncmpc: upgrade to 0.46
  > mpc: upgrade to 0.34
  > libmpdclient: upgrade to 2.20
  > mpd: upgrade to 0.23.6
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...eafaf3b (4):
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-qt5 4837db1...5a64ae9 (1):
  > ogl-runtime: Check for ppc64 before ppc

* sources/openembedded-core 25d6bf8079...a8016f575d (30):
  > qemu: Depend on libepoxy instead of virtual/libgl
  > core-image-ptest-all,core-image-ptest-fast: Depend on core-image class
  > qemux86: Add identical qemux86copy variant for tests
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > Revert "selftest/lic_checksum: Add test for filename containing space"
  > selftest/lic_checksum: Add test for filename containing space
  > gcc: sanitizer: Fix tsan against glibc 2.34
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj added a commit that referenced this pull request Mar 24, 2022
… sources/meta-atmel sources/meta-clang sources/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-qt5 sources/openembedded-core

* sources/bitbake ac868167...3f6654ee (12):
  > fetcher2: Use SkipRecipe instead of erroring out
  > utils: Fix lockfile path length issues
  > Revert "checksum: Support uri formatted file list"
  > checksum: Support uri formatted file list
  > Revert "ast: Fix YOCTO #8621?"
  > ast: Fix YOCTO #8621?
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-96boards 3389eed...4d42978 (9):
  > u-boot: Make recipe specific to poplar
  > u-boot-orangepi-i96: Enable it for selected machine
  > u-boot-juno: Remove recipe
  > Merge pull request #354 from YoeDistro/yoe/pu
  > layer.conf: switch compatible to kirkstone
  < layers: Bump to use kirkstone
  < u-boot: Make recipe specific to poplar
  < u-boot-orangepi-i96: Enable it for selected machine
  < u-boot-juno: Remove recipe

* sources/meta-arm bff49b6...c45673c (2):
  > ffa-debugfs-mod: Do not build for rpi machines
  > CI: save task logs when a job fails

* sources/meta-atmel 62ef874...ff457ba (1):
  > cryptoauthlib: shared library paths can not be nonarch

* sources/meta-clang 1d8389b...912edc5 (4):
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...311b4323 (3):
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b2...a41c0978d (84):
  > XXX: Add Github actions CI support
  > folks: Upgrade to 0.15.5
  > ncmpc: upgrade to 0.46
  > mpc: upgrade to 0.34
  > libmpdclient: upgrade to 2.20
  > mpd: upgrade to 0.23.6
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...eafaf3b (4):
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-qt5 4837db1...5a64ae9 (1):
  > ogl-runtime: Check for ppc64 before ppc

* sources/openembedded-core 25d6bf8079...a8016f575d (30):
  > qemu: Depend on libepoxy instead of virtual/libgl
  > core-image-ptest-all,core-image-ptest-fast: Depend on core-image class
  > qemux86: Add identical qemux86copy variant for tests
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > Revert "selftest/lic_checksum: Add test for filename containing space"
  > selftest/lic_checksum: Add test for filename containing space
  > gcc: sanitizer: Fix tsan against glibc 2.34
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj added a commit that referenced this pull request Mar 24, 2022
… sources/meta-atmel sources/meta-clang sources/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-qt5 sources/meta-riscv sources/openembedded-core

* sources/bitbake ac868167...3f6654ee (12):
  > fetcher2: Use SkipRecipe instead of erroring out
  > utils: Fix lockfile path length issues
  > Revert "checksum: Support uri formatted file list"
  > checksum: Support uri formatted file list
  > Revert "ast: Fix YOCTO #8621?"
  > ast: Fix YOCTO #8621?
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-96boards 3389eed...4d42978 (9):
  > u-boot: Make recipe specific to poplar
  > u-boot-orangepi-i96: Enable it for selected machine
  > u-boot-juno: Remove recipe
  > Merge pull request #354 from YoeDistro/yoe/pu
  > layer.conf: switch compatible to kirkstone
  < layers: Bump to use kirkstone
  < u-boot: Make recipe specific to poplar
  < u-boot-orangepi-i96: Enable it for selected machine
  < u-boot-juno: Remove recipe

* sources/meta-arm bff49b6...c45673c (2):
  > ffa-debugfs-mod: Do not build for rpi machines
  > CI: save task logs when a job fails

* sources/meta-atmel 62ef874...35b860b (13):
  > cryptoauthlib: shared library paths can not be nonarch
  > mpio: Inherit setuptools3
  > g1-decoder: update git fetcher
  > git fetcher: replace gitsm by git in specifying the git fetcher
  > mchp-egt-demo-init: egtdemo: export LANG environment
  > egt-samples: bump to 1.22
  > egt-thermostat: bump to 1.3
  > recipes-egt: add new package lohit fonts
  > egt-samples-contribution: new recipe
  > libegt: bump to 1.3
  > gstreamer1.0-plugins: update the git fetcher
  > at91bootstrap_git: remove unused recipe
  < mpio: Inherit setuptools3

* sources/meta-clang 1d8389b...912edc5 (4):
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...c2c0f2ad (4):
  > compute-runtime: version update from 22.08.22549 to 22.11.22682
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b2...9622d31d9 (94):
  > XXX: Add Github actions CI support
  > python3-paramiko: upgrade 2.9.2 -> 2.10.3
  > python3-h5py: upgrade 3.5.0 -> 3.6.0
  > python3-protobuf: upgrade 3.19.3 -> 3.19.4
  > polkit: add patches for CVE-2021-4034 and CVE-2021-4115
  > python3-intervals: upgrade 1.10.0.post1 -> 1.10.0
  > python3-cantools: upgrade 37.0.1 -> 37.0.7
  > python3-cachetools: upgrade 4.2.4 -> 5.0.0
  > python3-arpeggio: upgrade 1.10.2 -> 2.0.0
  > python3-alembic: upgrade 1.7.6 -> 1.7.7
  > geary: Fix build failures with latest vala
  > folks: Upgrade to 0.15.5
  > ncmpc: upgrade to 0.46
  > mpc: upgrade to 0.34
  > libmpdclient: upgrade to 2.20
  > mpd: upgrade to 0.23.6
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...1d08de2 (5):
  > Merge pull request #431 from lumag/install-modules
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-qt5 4837db1...5a64ae9 (1):
  > ogl-runtime: Check for ppc64 before ppc

* sources/meta-riscv 37aa7ac...717c2ec (1):
  > linux-mainline: Bump to 5.17

* sources/openembedded-core 25d6bf8079...4d578b179c (30):
  > qemu: Depend on libepoxy instead of virtual/libgl
  > core-image-ptest-all,core-image-ptest-fast: Depend on core-image class
  > qemux86: Add identical qemux86copy variant for tests
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > Revert "selftest/lic_checksum: Add test for filename containing space"
  > selftest/lic_checksum: Add test for filename containing space
  > gcc: sanitizer: Fix tsan against glibc 2.34
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj added a commit that referenced this pull request Mar 24, 2022
… sources/meta-atmel sources/meta-clang sources/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-qt5 sources/meta-riscv sources/openembedded-core

* sources/bitbake ac868167...3f6654ee (12):
  > fetcher2: Use SkipRecipe instead of erroring out
  > utils: Fix lockfile path length issues
  > Revert "checksum: Support uri formatted file list"
  > checksum: Support uri formatted file list
  > Revert "ast: Fix YOCTO #8621?"
  > ast: Fix YOCTO #8621?
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-96boards 3389eed...4d42978 (9):
  > u-boot: Make recipe specific to poplar
  > u-boot-orangepi-i96: Enable it for selected machine
  > u-boot-juno: Remove recipe
  > Merge pull request #354 from YoeDistro/yoe/pu
  > layer.conf: switch compatible to kirkstone
  < layers: Bump to use kirkstone
  < u-boot: Make recipe specific to poplar
  < u-boot-orangepi-i96: Enable it for selected machine
  < u-boot-juno: Remove recipe

* sources/meta-arm bff49b6...c45673c (2):
  > ffa-debugfs-mod: Do not build for rpi machines
  > CI: save task logs when a job fails

* sources/meta-atmel 62ef874...35b860b (13):
  > cryptoauthlib: shared library paths can not be nonarch
  > mpio: Inherit setuptools3
  > g1-decoder: update git fetcher
  > git fetcher: replace gitsm by git in specifying the git fetcher
  > mchp-egt-demo-init: egtdemo: export LANG environment
  > egt-samples: bump to 1.22
  > egt-thermostat: bump to 1.3
  > recipes-egt: add new package lohit fonts
  > egt-samples-contribution: new recipe
  > libegt: bump to 1.3
  > gstreamer1.0-plugins: update the git fetcher
  > at91bootstrap_git: remove unused recipe
  < mpio: Inherit setuptools3

* sources/meta-clang 1d8389b...912edc5 (4):
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...c2c0f2ad (4):
  > compute-runtime: version update from 22.08.22549 to 22.11.22682
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b2...f1ccd64bf (93):
  > XXX: Add Github actions CI support
  > python3-paramiko: upgrade 2.9.2 -> 2.10.3
  > python3-h5py: upgrade 3.5.0 -> 3.6.0
  > python3-protobuf: upgrade 3.19.3 -> 3.19.4
  > python3-intervals: upgrade 1.10.0.post1 -> 1.10.0
  > python3-cantools: upgrade 37.0.1 -> 37.0.7
  > python3-cachetools: upgrade 4.2.4 -> 5.0.0
  > python3-arpeggio: upgrade 1.10.2 -> 2.0.0
  > python3-alembic: upgrade 1.7.6 -> 1.7.7
  > geary: Fix build failures with latest vala
  > folks: Upgrade to 0.15.5
  > ncmpc: upgrade to 0.46
  > mpc: upgrade to 0.34
  > libmpdclient: upgrade to 2.20
  > mpd: upgrade to 0.23.6
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...1d08de2 (5):
  > Merge pull request #431 from lumag/install-modules
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-qt5 4837db1...5a64ae9 (1):
  > ogl-runtime: Check for ppc64 before ppc

* sources/meta-riscv 37aa7ac...717c2ec (1):
  > linux-mainline: Bump to 5.17

* sources/openembedded-core 25d6bf8079...4d578b179c (30):
  > qemu: Depend on libepoxy instead of virtual/libgl
  > core-image-ptest-all,core-image-ptest-fast: Depend on core-image class
  > qemux86: Add identical qemux86copy variant for tests
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > Revert "selftest/lic_checksum: Add test for filename containing space"
  > selftest/lic_checksum: Add test for filename containing space
  > gcc: sanitizer: Fix tsan against glibc 2.34
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj added a commit that referenced this pull request Mar 24, 2022
… sources/meta-atmel sources/meta-clang sources/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-qt5 sources/meta-riscv sources/openembedded-core

* sources/bitbake ac868167...3db766bd (13):
  > fetcher2: Use SkipRecipe instead of erroring out
  > tinfoil: Allow run_command not to wait on events
  > Revert "checksum: Support uri formatted file list"
  > checksum: Support uri formatted file list
  > Revert "ast: Fix YOCTO #8621?"
  > ast: Fix YOCTO #8621?
  > utils: Fix lockfile path length issues
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-96boards 3389eed...4d42978 (9):
  > u-boot: Make recipe specific to poplar
  > u-boot-orangepi-i96: Enable it for selected machine
  > u-boot-juno: Remove recipe
  > Merge pull request #354 from YoeDistro/yoe/pu
  > layer.conf: switch compatible to kirkstone
  < layers: Bump to use kirkstone
  < u-boot: Make recipe specific to poplar
  < u-boot-orangepi-i96: Enable it for selected machine
  < u-boot-juno: Remove recipe

* sources/meta-arm bff49b6...c45673c (2):
  > ffa-debugfs-mod: Do not build for rpi machines
  > CI: save task logs when a job fails

* sources/meta-atmel 62ef874...96b9e6b (15):
  > lohit-fonts: Fix override syntax
  > cryptoauthlib: shared library paths can not be nonarch
  > mpio: Inherit setuptools3
  > gstreamer1.0-plugins-hantro: update to latest version, fix submodule fetch
  > g1-decoder: update git fetcher
  > git fetcher: replace gitsm by git in specifying the git fetcher
  > mchp-egt-demo-init: egtdemo: export LANG environment
  > egt-samples: bump to 1.22
  > egt-thermostat: bump to 1.3
  > recipes-egt: add new package lohit fonts
  > egt-samples-contribution: new recipe
  > libegt: bump to 1.3
  > gstreamer1.0-plugins: update the git fetcher
  > at91bootstrap_git: remove unused recipe
  < mpio: Inherit setuptools3

* sources/meta-clang 1d8389b...912edc5 (4):
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...c2c0f2ad (4):
  > compute-runtime: version update from 22.08.22549 to 22.11.22682
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b2...195e65000 (95):
  > XXX: Add Github actions CI support
  > polkit: Fix build with libtool 2.4.7
  > netdata: Fix override separator syntax
  > python3-paramiko: upgrade 2.9.2 -> 2.10.3
  > python3-h5py: upgrade 3.5.0 -> 3.6.0
  > python3-protobuf: upgrade 3.19.3 -> 3.19.4
  > python3-intervals: upgrade 1.10.0.post1 -> 1.10.0
  > python3-cantools: upgrade 37.0.1 -> 37.0.7
  > python3-cachetools: upgrade 4.2.4 -> 5.0.0
  > python3-arpeggio: upgrade 1.10.2 -> 2.0.0
  > python3-alembic: upgrade 1.7.6 -> 1.7.7
  > geary: Fix build failures with latest vala
  > folks: Upgrade to 0.15.5
  > ncmpc: upgrade to 0.46
  > mpc: upgrade to 0.34
  > libmpdclient: upgrade to 2.20
  > mpd: upgrade to 0.23.6
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...1d08de2 (5):
  > Merge pull request #431 from lumag/install-modules
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-qt5 4837db1...5a64ae9 (1):
  > ogl-runtime: Check for ppc64 before ppc

* sources/meta-riscv 37aa7ac...ff35c57 (2):
  > conf: Drop using image-prelink
  > linux-mainline: Bump to 5.17

* sources/openembedded-core 25d6bf8079...b52832f50e (52):
  > qemu: Depend on libepoxy instead of virtual/libgl
  > core-image-ptest-all,core-image-ptest-fast: Depend on core-image class
  > qemux86: Add identical qemux86copy variant for tests
  > oeqa/selftest/tinfoil: Fix intermittent event loss issue in test
  > perl: Add missing RDEPENDS
  > Revert "selftest/lic_checksum: Add test for filename containing space"
  > selftest/lic_checksum: Add test for filename containing space
  > gcc: sanitizer: Fix tsan against glibc 2.34
  > license.bbclass: Remove the available_licenses() function
  > create-spdx.bbclass: Simplify extraction of license text
  > weston: use same distro features for weston and westion-init
  > selftest/incompatible_lic: Remove references to AVAILABLE_LICENSES
  > libjitterentropy: upgrade 3.3.1 -> 3.4.0
  > rng-tools: enable macro JENT_CONF_ENABLE_INTERNAL_TIMER
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > virglrenderer: update SRC_URI
  > gnu-config: update SRC_URI
  > linux-yocto/5.10: update to v5.10.107
  > linux-yocto/5.15: update to v5.15.30
  > linux-yocto-rt/5.10: update to -rt61
  > linux-yocto-rt/5.15: update to -rt34
  > linux-yocto/5.15: update to v5.15.27
  > linux-yocto/5.15: cfg/debug: add configs for kcsan
  > linux-yocto/5.10: cfg/debug: add configs for kcsan
  > linux-yocto/5.15: split vtpm for more granular inclusion
  > linux-yocto/5.10: split vtpm for more granular inclusion
  > linux-yocto: nohz_full boot arg fix
  > python3: upgrade 3.10.2 -> 3.10.3
  > python3-pytest: upgrade 7.0.1 -> 7.1.1
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj added a commit that referenced this pull request Mar 24, 2022
… sources/meta-atmel sources/meta-clang sources/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-qt5 sources/meta-raspberrypi sources/meta-riscv sources/openembedded-core

* sources/bitbake ac868167...3db766bd (13):
  > fetcher2: Use SkipRecipe instead of erroring out
  > tinfoil: Allow run_command not to wait on events
  > Revert "checksum: Support uri formatted file list"
  > checksum: Support uri formatted file list
  > Revert "ast: Fix YOCTO #8621?"
  > ast: Fix YOCTO #8621?
  > utils: Fix lockfile path length issues
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-96boards 3389eed...4d42978 (9):
  > u-boot: Make recipe specific to poplar
  > u-boot-orangepi-i96: Enable it for selected machine
  > u-boot-juno: Remove recipe
  > Merge pull request #354 from YoeDistro/yoe/pu
  > layer.conf: switch compatible to kirkstone
  < layers: Bump to use kirkstone
  < u-boot: Make recipe specific to poplar
  < u-boot-orangepi-i96: Enable it for selected machine
  < u-boot-juno: Remove recipe

* sources/meta-arm bff49b6...c45673c (2):
  > ffa-debugfs-mod: Do not build for rpi machines
  > CI: save task logs when a job fails

* sources/meta-atmel 62ef874...c5cfab1 (16):
  > libegt: Fix build with kirkstone/master
  > lohit-fonts: Fix override syntax
  > cryptoauthlib: shared library paths can not be nonarch
  > mpio: Inherit setuptools3
  > gstreamer1.0-plugins-hantro: update to latest version, fix submodule fetch
  > g1-decoder: update git fetcher
  > git fetcher: replace gitsm by git in specifying the git fetcher
  > mchp-egt-demo-init: egtdemo: export LANG environment
  > egt-samples: bump to 1.22
  > egt-thermostat: bump to 1.3
  > recipes-egt: add new package lohit fonts
  > egt-samples-contribution: new recipe
  > libegt: bump to 1.3
  > gstreamer1.0-plugins: update the git fetcher
  > at91bootstrap_git: remove unused recipe
  < mpio: Inherit setuptools3

* sources/meta-clang 1d8389b...7008a2e (4):
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...c2c0f2ad (4):
  > compute-runtime: version update from 22.08.22549 to 22.11.22682
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b2...195e65000 (95):
  > XXX: Add Github actions CI support
  > polkit: Fix build with libtool 2.4.7
  > netdata: Fix override separator syntax
  > python3-paramiko: upgrade 2.9.2 -> 2.10.3
  > python3-h5py: upgrade 3.5.0 -> 3.6.0
  > python3-protobuf: upgrade 3.19.3 -> 3.19.4
  > python3-intervals: upgrade 1.10.0.post1 -> 1.10.0
  > python3-cantools: upgrade 37.0.1 -> 37.0.7
  > python3-cachetools: upgrade 4.2.4 -> 5.0.0
  > python3-arpeggio: upgrade 1.10.2 -> 2.0.0
  > python3-alembic: upgrade 1.7.6 -> 1.7.7
  > geary: Fix build failures with latest vala
  > folks: Upgrade to 0.15.5
  > ncmpc: upgrade to 0.46
  > mpc: upgrade to 0.34
  > libmpdclient: upgrade to 2.20
  > mpd: upgrade to 0.23.6
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...1d08de2 (5):
  > Merge pull request #431 from lumag/install-modules
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-qt5 4837db1...5a64ae9 (1):
  > ogl-runtime: Check for ppc64 before ppc

* sources/meta-raspberrypi 7a9b275...bc10842 (1):
  > linux-raspberrypi: Bump 5.15 recipe to 5.15.30

* sources/meta-riscv 37aa7ac...ff35c57 (2):
  > conf: Drop using image-prelink
  > linux-mainline: Bump to 5.17

* sources/openembedded-core 25d6bf8079...b52832f50e (52):
  > qemu: Depend on libepoxy instead of virtual/libgl
  > core-image-ptest-all,core-image-ptest-fast: Depend on core-image class
  > qemux86: Add identical qemux86copy variant for tests
  > oeqa/selftest/tinfoil: Fix intermittent event loss issue in test
  > perl: Add missing RDEPENDS
  > Revert "selftest/lic_checksum: Add test for filename containing space"
  > selftest/lic_checksum: Add test for filename containing space
  > gcc: sanitizer: Fix tsan against glibc 2.34
  > license.bbclass: Remove the available_licenses() function
  > create-spdx.bbclass: Simplify extraction of license text
  > weston: use same distro features for weston and westion-init
  > selftest/incompatible_lic: Remove references to AVAILABLE_LICENSES
  > libjitterentropy: upgrade 3.3.1 -> 3.4.0
  > rng-tools: enable macro JENT_CONF_ENABLE_INTERNAL_TIMER
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > virglrenderer: update SRC_URI
  > gnu-config: update SRC_URI
  > linux-yocto/5.10: update to v5.10.107
  > linux-yocto/5.15: update to v5.15.30
  > linux-yocto-rt/5.10: update to -rt61
  > linux-yocto-rt/5.15: update to -rt34
  > linux-yocto/5.15: update to v5.15.27
  > linux-yocto/5.15: cfg/debug: add configs for kcsan
  > linux-yocto/5.10: cfg/debug: add configs for kcsan
  > linux-yocto/5.15: split vtpm for more granular inclusion
  > linux-yocto/5.10: split vtpm for more granular inclusion
  > linux-yocto: nohz_full boot arg fix
  > python3: upgrade 3.10.2 -> 3.10.3
  > python3-pytest: upgrade 7.0.1 -> 7.1.1
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj added a commit that referenced this pull request Mar 24, 2022
…urces/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-raspberrypi sources/meta-riscv sources/openembedded-core

* sources/bitbake ac868167...89d70e7b (7):
  > utils: Fix lockfile path length issues
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-arm bff49b6...28acb5f (1):
  > CI: save task logs when a job fails

* sources/meta-clang 1d8389b...7008a2e (4):
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...c2c0f2ad (4):
  > compute-runtime: version update from 22.08.22549 to 22.11.22682
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b28...b5bbdd3964 (84):
  > geary: Fix build failures with latest vala
  > folks: Upgrade to 0.15.5
  > ncmpc: upgrade to 0.46
  > mpc: upgrade to 0.34
  > libmpdclient: upgrade to 2.20
  > mpd: upgrade to 0.23.6
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...1d08de2 (5):
  > Merge pull request #431 from lumag/install-modules
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-raspberrypi 7a9b275...bc10842 (1):
  > linux-raspberrypi: Bump 5.15 recipe to 5.15.30

* sources/meta-riscv 37aa7ac...717c2ec (1):
  > linux-mainline: Bump to 5.17

* sources/openembedded-core 25d6bf80797...aa662aae352 (44):
  > license.bbclass: Remove the available_licenses() function
  > create-spdx.bbclass: Simplify extraction of license text
  > weston: use same distro features for weston and westion-init
  > selftest/incompatible_lic: Remove references to AVAILABLE_LICENSES
  > libjitterentropy: upgrade 3.3.1 -> 3.4.0
  > rng-tools: enable macro JENT_CONF_ENABLE_INTERNAL_TIMER
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > virglrenderer: update SRC_URI
  > gnu-config: update SRC_URI
  > linux-yocto/5.10: update to v5.10.107
  > linux-yocto/5.15: update to v5.15.30
  > linux-yocto-rt/5.10: update to -rt61
  > linux-yocto-rt/5.15: update to -rt34
  > linux-yocto/5.15: update to v5.15.27
  > linux-yocto/5.15: cfg/debug: add configs for kcsan
  > linux-yocto/5.10: cfg/debug: add configs for kcsan
  > linux-yocto/5.15: split vtpm for more granular inclusion
  > linux-yocto/5.10: split vtpm for more granular inclusion
  > linux-yocto: nohz_full boot arg fix
  > python3: upgrade 3.10.2 -> 3.10.3
  > python3-pytest: upgrade 7.0.1 -> 7.1.1
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj added a commit that referenced this pull request Mar 25, 2022
… sources/meta-atmel sources/meta-clang sources/meta-freescale sources/meta-intel sources/meta-openembedded sources/meta-qcom sources/meta-qt5 sources/meta-raspberrypi sources/meta-riscv sources/openembedded-core

* sources/bitbake ac868167...3db766bd (13):
  > fetcher2: Use SkipRecipe instead of erroring out
  > tinfoil: Allow run_command not to wait on events
  > Revert "checksum: Support uri formatted file list"
  > checksum: Support uri formatted file list
  > Revert "ast: Fix YOCTO #8621?"
  > ast: Fix YOCTO #8621?
  > utils: Fix lockfile path length issues
  > siggen: Improve ambiguous use of 'dependent'
  > bitbake: knotty: reduce keep-alive timeout from 5000s (83 minutes) to 10 minutes
  > bitbake: knotty: display active tasks when printing keepAlive() message
  > contrib: Add Dockerfile for building PR service
  > toaster: race condition for end-of-build
  > toaster: detect when bitbake crashed

* sources/meta-96boards 3389eed...4d42978 (9):
  > u-boot: Make recipe specific to poplar
  > u-boot-orangepi-i96: Enable it for selected machine
  > u-boot-juno: Remove recipe
  > Merge pull request #354 from YoeDistro/yoe/pu
  > layer.conf: switch compatible to kirkstone
  < layers: Bump to use kirkstone
  < u-boot: Make recipe specific to poplar
  < u-boot-orangepi-i96: Enable it for selected machine
  < u-boot-juno: Remove recipe

* sources/meta-arm bff49b6...c45673c (2):
  > ffa-debugfs-mod: Do not build for rpi machines
  > CI: save task logs when a job fails

* sources/meta-atmel 62ef874...ff7afd6 (17):
  > egt: Inherit siteinfo
  > libegt: Fix build with kirkstone/master
  > lohit-fonts: Fix override syntax
  > cryptoauthlib: shared library paths can not be nonarch
  > mpio: Inherit setuptools3
  > gstreamer1.0-plugins-hantro: update to latest version, fix submodule fetch
  > g1-decoder: update git fetcher
  > git fetcher: replace gitsm by git in specifying the git fetcher
  > mchp-egt-demo-init: egtdemo: export LANG environment
  > egt-samples: bump to 1.22
  > egt-thermostat: bump to 1.3
  > recipes-egt: add new package lohit fonts
  > egt-samples-contribution: new recipe
  > libegt: bump to 1.3
  > gstreamer1.0-plugins: update the git fetcher
  > at91bootstrap_git: remove unused recipe
  < mpio: Inherit setuptools3

* sources/meta-clang 1d8389b...b2d8c2c (5):
  > openmp: Exclude powerpc
  > clang.bbclass: Export YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > llvm-config: Set YOCTO_ALTERNATE_LIBDIR and YOCTO_ALTERNATE_EXE_PATH
  > clang: Add env override for libdir
  > libcxx: Drop duplicate setting of LLVM_LIBDIR_SUFFIX

* sources/meta-freescale 95b28c53...2d0ef3e8 (2):
  > Merge pull request #1014 from thochstein/master
  > Merge pull request #1012 from thochstein/master

* sources/meta-intel cc62d49d...c2c0f2ad (4):
  > compute-runtime: version update from 22.08.22549 to 22.11.22682
  > intel-graphics-compiler: fix compile issues
  > intel-crypto-mb: upgrade 2021.3 -> 2021.5
  > oidn: upgrade 1.4.1 -> 1.4.3

* sources/meta-openembedded 7f27771b2...195e65000 (95):
  > XXX: Add Github actions CI support
  > polkit: Fix build with libtool 2.4.7
  > netdata: Fix override separator syntax
  > python3-paramiko: upgrade 2.9.2 -> 2.10.3
  > python3-h5py: upgrade 3.5.0 -> 3.6.0
  > python3-protobuf: upgrade 3.19.3 -> 3.19.4
  > python3-intervals: upgrade 1.10.0.post1 -> 1.10.0
  > python3-cantools: upgrade 37.0.1 -> 37.0.7
  > python3-cachetools: upgrade 4.2.4 -> 5.0.0
  > python3-arpeggio: upgrade 1.10.2 -> 2.0.0
  > python3-alembic: upgrade 1.7.6 -> 1.7.7
  > geary: Fix build failures with latest vala
  > folks: Upgrade to 0.15.5
  > ncmpc: upgrade to 0.46
  > mpc: upgrade to 0.34
  > libmpdclient: upgrade to 2.20
  > mpd: upgrade to 0.23.6
  > grpc: upgrade 1.41.1 -> 1.45.0
  > live555: Fix rdepends of live555-dev
  > usbguard: Add inital recipe
  > mariadb: Align atomic ops to help clang on x86
  > mariadb: Enable openSSL and use as default SSL option
  > mariadb: Add missing dependency on lzo
  > mariadb: Upgrade to 10.7.3
  > edac-utils: update to latest git head
  > valijson: move out of hard dep on meta-networking
  > libsquish: Fix build when libdir != 'lib'
  > php: upgrade 8.1.3 -> 8.1.4
  > libpeas: upgrade 1.30.0 -> 1.32.0
  > graphene: upgrade 1.10.6 -> 1.10.8
  > metacity: upgrade 3.42.0 -> 3.44.0
  > apache2: upgrade 2.4.52 -> 2.4.53
  > dhcp-relay: upgrade 4.4.2p1 -> 4.4.3
  > postfix: upgrade 3.6.4 -> 3.6.5
  > nftables: upgrade 1.0.1 -> 1.0.2
  > sysdig: Upgrade to 0.28.0
  > grpc: Enable cpp plugin for target version too
  > pv: update from 1.6.6 to 1.6.20
  > haveged: update from 1.9.14 to 1.9.17
  > gnome-system-monitor: upgrade 41.0 -> 42.0
  > gnome-photos: upgrade 40.0 -> 42.0
  > gnome-disk-utility: upgrade 41.0 -> 42.0
  > nautilus: upgrade 41.2 -> 42.0
  > gvfs: upgrade 1.49.1 -> 1.50.0
  > gjs: upgrade 1.71.1 -> 1.72.0
  > xbindkeys: Add recipe
  > mcelog: update from 175 to 180
  > syslog-ng: update from 3.31.2 to 3.26.1
  > rrdtool: upgrade 1.7.2 -> 1.8.0
  > openvpn: upgrade 2.5.5 -> 2.5.6
  > projucer: Upgrade to 6.1.6
  > packagegroup-meta-python: add python3-pytest-lazy-fixture
  > python3-prettytable: add python3-pytest-lazy-fixture to ptest RDEPENDS
  > python3-pytest-lazy-fixture: add recipe
  > python3-urllib3: Remove
  > python3-requests: Remove
  > python3-pysocks: Remove
  > python3-pyopenssl: Remove
  > python3-pyasn1: Remove
  > python3-ndg-httpsclient: Remove
  > python3-certifi: Remove
  > python3-babel: Remove
  > python3-waitress: upgrade 2.1.0 -> 2.1.1
  > io-compress-lzma-perl, io-compress-perl: Rename to use debian names
  > geany-plugins: Do not overwrite OE's pkg-config env
  > lvgl,lv-lib-png,lv-drivers: Pass libdir via LIB_INSTALL_DIR to cmake
  > libcppkafka: Use CMAKE_INSTALL_LIBDIR instead of hardcoding lib
  > luajit: Upgrade to latest on v2.1 branch
  > io-compress-lzma-perl,io-compress-perl: Do not mark allarch
  > iperf3: upgrade from 3.9 to 3.11
  > libsquish: Define LIBDIR knob
  > uml-utilities: Define LIB_DIR to be libdir relative
  > luaposix: Fix INST_LIBDIR to honor libdir var
  > fsverity-utils: Define LIBDIR
  > unattended-upgrades: Package nonarch_libdir for systemd files
  > cockpit: Package missing nonarch_libdir
  > duktape: Upgrade to 2.7.0
  > sqlite-orm: Define cmake variable defaults
  > paho-mqtt-cpp: Use CMAKE_INSTALL_LIBDIR in cmake
  > libiec61850: Use GNUInstallDirs in cmake
  > redis-plus-plus: Use GNUInstallDirs in cmake
  > json-schema-validator: Use GNUInstallDirs in cmake
  > weechat: Define LIBDIR
  > msgpack-cpp: Upgrade to 4.1.1 release
  > http-parser: Define LIBDIR
  > liburing: Define libdir based on environment variable
  > librdkafka: Use CMAKE_INSTALL_LIBDIR
  > libbpf: Enable on ppc64
  > python3-lz4: add ptest
  > python3-jsonrpcserver: upgrade 5.0.6 -> 5.0.7
  > python3-itsdangerous: upgrade 2.1.0 -> 2.1.1
  > python3-lz4: use system lz4 library
  > python3-sentry-sdk: upgrade 1.5.6 -> 1.5.7
  > python3-sqlalchemy: upgrade 1.4.31 -> 1.4.32
  > python3-wrapt: upgrade 1.13.3 -> 1.14.0

* sources/meta-qcom a476948...1d08de2 (5):
  > Merge pull request #431 from lumag/install-modules
  > Merge pull request #432 from lumag/fix-rootfs-image
  > Merge pull request #430 from lumag/linux-mainline
  > Merge pull request #429 from lumag/no-rb5-dvt
  > Merge pull request #428 from lumag/rootfs-initramfs-start

* sources/meta-qt5 4837db1...5a64ae9 (1):
  > ogl-runtime: Check for ppc64 before ppc

* sources/meta-raspberrypi 7a9b275...bc10842 (1):
  > linux-raspberrypi: Bump 5.15 recipe to 5.15.30

* sources/meta-riscv 37aa7ac...ff35c57 (2):
  > conf: Drop using image-prelink
  > linux-mainline: Bump to 5.17

* sources/openembedded-core 25d6bf8079...b52832f50e (52):
  > qemu: Depend on libepoxy instead of virtual/libgl
  > core-image-ptest-all,core-image-ptest-fast: Depend on core-image class
  > qemux86: Add identical qemux86copy variant for tests
  > oeqa/selftest/tinfoil: Fix intermittent event loss issue in test
  > perl: Add missing RDEPENDS
  > Revert "selftest/lic_checksum: Add test for filename containing space"
  > selftest/lic_checksum: Add test for filename containing space
  > gcc: sanitizer: Fix tsan against glibc 2.34
  > license.bbclass: Remove the available_licenses() function
  > create-spdx.bbclass: Simplify extraction of license text
  > weston: use same distro features for weston and westion-init
  > selftest/incompatible_lic: Remove references to AVAILABLE_LICENSES
  > libjitterentropy: upgrade 3.3.1 -> 3.4.0
  > rng-tools: enable macro JENT_CONF_ENABLE_INTERNAL_TIMER
  > sanity: Add warning for local hasheqiv server with remote sstate mirrors
  > virglrenderer: update SRC_URI
  > gnu-config: update SRC_URI
  > linux-yocto/5.10: update to v5.10.107
  > linux-yocto/5.15: update to v5.15.30
  > linux-yocto-rt/5.10: update to -rt61
  > linux-yocto-rt/5.15: update to -rt34
  > linux-yocto/5.15: update to v5.15.27
  > linux-yocto/5.15: cfg/debug: add configs for kcsan
  > linux-yocto/5.10: cfg/debug: add configs for kcsan
  > linux-yocto/5.15: split vtpm for more granular inclusion
  > linux-yocto/5.10: split vtpm for more granular inclusion
  > linux-yocto: nohz_full boot arg fix
  > python3: upgrade 3.10.2 -> 3.10.3
  > python3-pytest: upgrade 7.0.1 -> 7.1.1
  > webkitgtk: Depend on virtual/egl instead of virtual/libgl
  > waffle: Use the right dependencies as needed
  > piglit: Remove virtual/libgl
  > libsdl2: Depend on virtual/egl
  > python3: ignore CVE-2022-26488
  > gsettings-desktop-schemas: upgrade 41.0 -> 42.0
  > gnutls: upgrade 3.7.3 -> 3.7.4
  > bluez5: upgrade 5.63 -> 5.64
  > adwaita-icon-theme: upgrade 41.0 -> 42.0
  > vala: upgrade 0.54.7 -> 0.56.0
  > python3-markupsafe: upgrade 2.1.0 -> 2.1.1
  > man-db: upgrade 2.10.1 -> 2.10.2
  > libsolv: upgrade 0.7.21 -> 0.7.22
  > libdazzle: upgrade 3.42.0 -> 3.44.0
  > gobject-introspection: upgrade 1.70.0 -> 1.72.0
  > qemu: Fix build on systems without MAP_SYNC
  > tiff: backport CVE fixes:
  > python3-sphinx-rtd-theme: correct upstream version check
  > kernel-fitimage.bbclass: introduce get_fit_replacement_type function
  > libpam: use /run instead of /var/run in systemd tmpfiles
  > libtool: Upgrade 2.4.6 -> 2.4.7
  > pseudo: Add patch to workaround paths with crazy lengths
  > toaster: Fix broken overrides usage

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants