Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions conf/include/package_revisions_oss.inc
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,8 @@ PACKAGE_ARCH:pn-zlib ?= "${OSS_LAYER_ARCH}"
PR:pn-zstd ?= "r0"
PACKAGE_ARCH:pn-zstd ?= "${OSS_LAYER_ARCH}"

PR:pn-yaml-cpp ?= "r0"
PACKAGE_ARCH:pn-yaml-cpp ?= "${OSS_LAYER_ARCH}"
Comment on lines 942 to +946
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

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

This PR/PACKAGE_ARCH block is sorted alphabetically by pn-* in the surrounding context (…pn-xz, pn-yajl, pn-zlib, pn-zstd). The new pn-yaml-cpp entries are appended after pn-zstd, which breaks that ordering. Please move PR:pn-yaml-cpp / PACKAGE_ARCH:pn-yaml-cpp to the correct position near the other pn-ya* entries (e.g., after pn-yajl and before pn-zlib).

Copilot uses AI. Check for mistakes.

# Package revision for OSS modules that are built and released by other layers
PR:pn-alsa-plugins ?= "r0"
Expand Down
1 change: 1 addition & 0 deletions recipes-core/packagegroups/packagegroup-oss-layer.bb
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ RDEPENDS:${PN} += "\
xmlsec1 \
yajl \
zstd \
yaml-cpp \
"
Comment on lines 234 to 238
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

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

RDEPENDS:${PN} list in this section appears to be kept in alphabetical order (e.g., xmlsec1, yajl, zstd). yaml-cpp is currently placed after zstd, which breaks the ordering and makes future maintenance/search harder. Consider moving yaml-cpp to be adjacent to the other ya* entries (e.g., after yajl and before zstd).

Copilot uses AI. Check for mistakes.

# meta-rust components
Expand Down