Commit Graph
40280 Commits
Author SHA1 Message Date
Sana Kazi 94c72e5ebe avro-c++: Use fmt from oe-core instead of bundling fmt 10.2.1
avro-c++'s CMakeLists.txt calls find_package(fmt) and only falls
back to fetching fmt 10.2.1 via FetchContent if fmt isn't found.
The recipe never added fmt to DEPENDS, so find_package fallback
is always triggered. The recipe then had to stage it into
${B}/_deps/fmt-src.

oe-core already provides fmt_12.1.0, and avro-c++ only
uses a small, stable part of its API (fmt::format_string,
fmt::format, fmt::formatter<T>) that is unchanged between 10.x and
12.x.

Add fmt to DEPENDS so find_package(fmt) succeeds and avro-c++ links
oe-core's fmt instead, and drop the fmt SRC_URI, SRCREV_fmt and
do_configure:prepend()

Following tests provided by avro-c++ use fmt headers:
CodecTests DataFileTests SchemaTests buffertest unittest
No tests are breaking after using fmt_12.1.0.

Signed-off-by: Sana Kazi <Kazi.S@bmwtechworks.in>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:55 -07:00
Leon Anavi 2a4812437b zabbix: Upgrade 7.0.29 -> 7.4.14
Upgrade to release 7.4.14:

New Features and Improvements:

- ZBXNEXT-10720 Updated maximum supported TimescaleDB version to
  2.29 API Server
- ZBXNEXT-10732 Updated help URL from the frontend to documentation

Bug Fixes:

- ZBX-28012 Fixed spacing between Host Wizard template tags in the
  expanded hintbox
- ZBX-27836 Fixed PHP runtime errors in user role edit form
- ZBX-28045 Fixed active checks in case of failed response on
  Zabbix agent 2 Agent
- ZBX-23057 Fixed memory fragmentation trigger and added RSS
  overhead triggers in Redis by Zabbix agent 2 template
- ZBX-27746 Removed unsupported discovery worker targets and
  preprocessing worker profiling targets from Zabbix server and
  proxy help messages and man pages Documentation
- ZBX-27791 Added multiplier to percent_used metric in Ceph by
  Zabbix agent 2 template
- ZBX-27646 Removed MS Teams webhook in default data
- ZBX-25042 Removed discard option for SNMP status items
- ZBX-25663 Added node name macro to RabbitMQ node templates
- ZBX-26229 Fixed CPU user and idle time OIDs in Check Point
  NGFW SNMP template
- ZBX-25608 Fixed missing precision for temperature sensors for
  Cisco template
- ZBX-22458 Fixed cache hit ratio base typo in MSSQL by ODBC
  template
- ZBX-25484 Fixed incorrect item configuration in default data
- ZBX-21236 Improved metrics filtering in API response for the
  Elasticsearch Cluster by HTTP template
- ZBX-24512 Fixed memory items in Cisco Nexus 9000 Series by SNMP
  template
- ZBX-24343 Fixed temperature threshold trigger duplication for
  Cisco IOS by SNMP
- ZBX-27892 Fixed dynamic row counter initialization when tags are
  read-only in host items
- ZBX-27893 Fixed infinite loop for graphs in hosts monitoring when
  working time period in GUI is 00:00-24:00
- ZBX-27646 Removed MS Teams webhook based on retired Office 365
  Connector
- ZBX-27908 Fixed icon mapping order for individual list item
- ZBX-26465 Improved aria-label text for all functional buttons and
  icons and aria-expanding of side menu elements for Screen Reader
  users
- ZBX-27920 Fixed event menu entry parameters being marked as
  required when they are disabled
- ZBX-25485 Fixed language change to work for different environments
- ZBX-27921 Fixed item and item prototype interval validation for
  trapper and dependent items
- ZBX-27942 Fixed time filter error for dashboard in Kiosk mode
- ZBX-25815 Removed mention of discovery from SNMP max_repetition
  help note
- ZBX-27140 Fixed overall hintbox positioning

Integration tests now use libpcre2 instead of libpcre, so DEPENDS
has been updated accordingly.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:55 -07:00
Khem Raj 63bfcfbfd9 kernel-selftest: Delete patch not needed with latest 7.2 kernel
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:55 -07:00
Khem Raj fd66aed4da vboxguestdrivers: Forward port patch
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:55 -07:00
Gianfranco Costamagna b89c1695f5 vboxguestdrivers: Upgrade to 7.2.18
Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:55 -07:00
Markus Volk 336470ce52 libjxl: drop the sizeless-vectors PACKAGECONFIG
JPEGXL_ENABLE_SIZELESS_VECTORS no longer exists: 0.11 read it, 0.12 does
not, so cmake reports it as an unused command line variable. Per target
JPEGXL_ENABLE_HWY_* switches took its place.

The riscv removal it carried is gone with it, and nothing is lost. In 0.11
the option defaulted to off and disabled SVE and RVV; enabling it, as the
recipe did, is what pulled RVV in and broke riscv in the first place. In
0.12 RVV is listed in JPEGXL_HWY_TARGETS_OFF_BY_DEFAULT, so it is not built
on any architecture -- an aarch64 build passes HWY_RVV in HWY_DISABLED_TARGETS
without any help from the recipe.

Built libjxl for raspberrypi4-64 from a clean state and checked that the
x86-64 configuration no longer carries the dead define.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:55 -07:00
Markus Volk d9c3c54344 libjxl: do not build the SVE targets on tunes without SVE
Whether Highway's SVE targets are built is decided by a compiler capability
probe that compiles a function marked __attribute__((target("+sve"))). The
attribute enables SVE for that function itself, so the probe succeeds on any
aarch64 compiler no matter what the tune supports, and the guard meant to
disable the targets never fires.

On a tune without SVE this compiles code that can never run, and gcc 16
crashes while doing so:

    lib/jxl/enc_transforms-inl.h:799:1: internal compiler error:
    in simplify_gen_subreg_concatn, at lower-subreg.cc:744

Tie the targets to TUNE_FEATURES instead, which describes the machine rather
than the compiler. 32 bit arm needs nothing: Highway gates the SVE targets on
HWY_ARCH_ARM_A64, and the probe fails there anyway because arm_sve.h does not
exist.

Built for raspberrypi4-64 (cortexa72, no SVE) from a clean state, and checked
that the x86-64 configuration is unchanged.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:54 -07:00
Ross Burton 370780c0fd meta-python: remove obsolete dependencies on python3-six
These recipes no longer use six, so remove the dependency.

The list of recipes that still use six is a somewhat useful proxy for
packages that are no longer maintained...

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:54 -07:00
Ross Burton 17969db98a spice-gtk: upgrade 0.42 -> 0.43
Documentation is now built with gi-docgen instead of gtk-doc.

Drop python3-six build dependency, no longer needed.

Add udev build dependency to avoid it being dependend on what is in the
sysroot.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:54 -07:00
Ross Burton 1d7aab70cc spice-gtk: clean up dependencies
Instead of a single huge list of DEPENDS, add a number of PACKAGECONFIGs
that reflect the upstream options available.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:54 -07:00
Ross Burton 7d0ef322e7 spice: clean up dependencies
We can disable building the tests, and remove a few build dependencies.

python3-six is no longer needed, remove that.

openssl is always required, add to DEPENDS.

Add lz4 PACKAGECONFIG as this is an option upstream, enabled by default
to preserve behaviour.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:54 -07:00
Ross Burton a1c7a93355 mycroft: remove obsolete recipe
Mycroft made its last release in 2021 and was formally abandoned in 2024:

  Mycroft core is no longer maintaiend and probably likely not work on
  your computer anymore. Open Voice OS and Neon-core are both spiritual
  successors to Mycroft. (And some of the old code may live on there.)

The version we packaged was from 2019 and nobody cared enought to upgrade
it to any of the sixteen later releases, so I don't believe anyone is
using it.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:54 -07:00
Ross Burton 3417a7de83 python3-networkmanager: remove abandoned recipe
python-networkmanager was abandoned upstream in 2023:

  ⚠️ This project is no longer maintained. ⚠️
  If you are looking for an alternative, please try
  https://github.com/python-sdbus/python-sdbus-networkmanager

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:54 -07:00
Priyansh Jain ecb26492f0 Upgrade thermald to release 2.5.13.
Upgrade ThermalD from 2.5.12 to 2.5.13 and rename the recipe
accordingly.

This update includes the following changes:

- Restrict Qualcomm SPEL PL initialization to XML-defined cooling
  devices only.
- Fix handling of large RAPL PL1 values during restore registration.
- Re-add Wildcat Lake platform support.

Signed-off-by: Priyansh Jain <priyansh.jain@oss.qualcomm.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:53 -07:00
Markus Volk 8f3e948a1b accountsservice: upgrade 23.13.9 -> 26.27.3
Needed by gnome-control-center 51, which requires >= 26.27.3.

Upstream no longer publishes tarballs on freedesktop.org, so fetch the
release tag from gitlab.freedesktop.org instead.

All three patches are obsolete: the C99 fixes and the backported commit
00b6e12a are part of the release, and the musl fgetspent_r wrapper has
been replaced by upstream's own fgetspent_r_compat in src/daemon.c.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:53 -07:00
Markus Volk e007974cbd localsearch: fix a build race on the generated D-Bus header
tracker_miner_dep only lists the generated enum types header in its
sources, so targets that merely use the dependency - the localsearch-3
executable among them - get no build order edge to the gdbus-codegen
output. In a parallel build tracker-application.c is then compiled
before tracker-dbus-interface.h exists and the build fails.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:53 -07:00
Markus Volk bc88ed178e gnome-chess: upgrade 50.0 -> 50.1
SRCREV is the commit the 50.1 tag points at, not the tag object.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:53 -07:00
Markus Volk 02a0c7f255 eog: upgrade 50.2 -> 50.3
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:53 -07:00
Markus Volk 17208ffea0 xdg-desktop-portal-gnome: upgrade 50.0 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:53 -07:00
Markus Volk c31124aa2a tinysparql: upgrade 3.11.1 -> 3.12.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:53 -07:00
Markus Volk c7d739f8f6 localsearch: upgrade 3.11.1 -> 3.12.0
The enum types template the host path patch fixed no longer exists.
Refresh the remaining patch against the new sources.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:52 -07:00
Markus Volk 0649212c28 tecla: upgrade 50.0 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:52 -07:00
Markus Volk 78616c32f2 sysprof: upgrade 48.1 -> 51.0
The environ shadowing fix and the .debug directory lookup in the ELF
loader are part of the release now; refresh the remaining icon cache
patch.

51.0 installs a session D-Bus service file, so ship it.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:52 -07:00
Markus Volk 6f735ce8ac mutter: upgrade 50.4 -> 51.0
The native backend, udev and logind are no longer optional, and the
egl_device and wayland_eglstream options are gone. Drop those
PACKAGECONFIGs and move the dependencies they carried into DEPENDS.

Upstream now aligns the API version with the release, so the libraries
live in ${libdir}/mutter-51 instead of mutter-18. Derive MUTTER_API_NAME
from PV rather than hardcoding it again.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:52 -07:00
Markus Volk 1211cd09b7 msgraph: upgrade 0.3.4 -> 0.3.5
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:52 -07:00
Markus Volk 626b63734a libdex: upgrade 1.0.0 -> 1.2.0
1.2.0 installs PyGObject overrides. They need python3-pygobject at
runtime, so put them behind a PACKAGECONFIG that is off by default and
ship them when it is enabled.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:52 -07:00
Markus Volk fd87aabb75 gvfs: upgrade 1.60.2 -> 1.62.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:52 -07:00
Markus Volk 1504be129e gtksourceview5: upgrade 5.19.0 -> 5.21.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:51 -07:00
Markus Volk f2ea266eb6 gnome-text-editor: upgrade 50.1 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:51 -07:00
Markus Volk 71093cba39 gnome-system-monitor: upgrade 50.0 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:51 -07:00
Markus Volk 972ac743ff gnome-software: upgrade 50.3 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:51 -07:00
Markus Volk 89448d167e gnome-shell-extensions: upgrade 50.3 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:51 -07:00
Markus Volk d22efe5c4c gnome-shell: upgrade 50.4 -> 51.0
The libical 4 fix is part of the release now.

The extensions app was dropped from the module, so its meson option and
the libadwaita runtime dependency that went with it are gone.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:51 -07:00
Markus Volk 5495853e07 gnome-settings-daemon: upgrade 50.1 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:51 -07:00
Markus Volk df35bfcc7f gnome-session: upgrade 50.1 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:50 -07:00
Markus Volk 68e34df09b gnome-keyring: upgrade 50.0 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:50 -07:00
Markus Volk 5e7f906643 gnome-desktop: upgrade 44.5 -> 51.0
The legacy gtk+3 library is still available behind the legacy_library
option, so the gtk3 users in this layer keep working.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:50 -07:00
Markus Volk dae0c68c21 gnome-console: upgrade 50.0 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:50 -07:00
Markus Volk 0f03184a4c gnome-calendar: upgrade 50.0 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:50 -07:00
Markus Volk 0ec0c3022b gnome-calculator: upgrade 50.0 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:50 -07:00
Markus Volk dd9e090566 gnome-backgrounds: upgrade 50.0 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:50 -07:00
Markus Volk 4a31cae2a0 glycin: upgrade 2.1.5 -> 2.2.0
Both cross-compilation patches are part of the release now. Upstream
handles the rust target via meson.is_cross_build() and the rust_target
cross property the recipe already provides.

The 2.2 series is released from main, so follow that branch.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:49 -07:00
Markus Volk 1821faf596 gjs: upgrade 1.88.1 -> 1.90.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:49 -07:00
Markus Volk c944045699 gdm: upgrade 50.2 -> 51.0
gdm now installs its PAM service files into the vendor directory
${prefix}/lib/pam.d. libpam is configured with vendordir=${sysconfdir}
here, so pass -Dpam-services-dir to keep them in ${sysconfdir}/pam.d,
where do_install:append() amends gdm-password.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:49 -07:00
Markus Volk 0c2bff9feb evolution-data-server: upgrade 3.60.2 -> 3.62.0
The license headers of camel.h and e-data-server-util.h were converted to
SPDX tags; the license itself is unchanged. Point LIC_FILES_CHKSUM at the
end of the header comment so that added includes no longer change the
checksum.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:49 -07:00
Markus Volk 99654f8a7e gnome-remote-desktop: upgrade 50.2 -> 51.0
AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:49 -07:00
Markus Volk 96333dfc9c loupe: add recipe
Loupe is the GNOME image viewer that succeeds eog. It loads images via
glycin, which is already packaged here, so the recipe only needs to add
glycin-loaders as a runtime dependency.

The build is meson driving cargo. Upstream invokes cargo without
--target and copies the binary from the native artifact layout, so a
patch teaches src/meson.build to read a rust_target property from the
cross file, the same mechanism glycin uses.

Built and packaged for corei7-64.

AI-Generated: Uses Claude Code (Claude Opus 5)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:49 -07:00
Leon Anavi b97afd3d5f rygel: Upgrade 45.2 -> 46.0
Upgrade to release 46.0:

- Translation updates
- Add missing "dlnaprofile" description for GstLaunch
- Fix rendering issues for web docs
- Remove RUIH implementation
- Allow proper boolean settings through environment variables
- Align list definition through environment with config file
- Remove BasicManagement and EnergyManagement

Remove RUIH from PACKAGECONFIG. Add Python packages PyYAML and
Docutils to the dependencies.

Change HOMEPAGE to https://rygel-project.org which redirects to
the Rygel 46.0 documentation.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:49 -07:00
Khem Raj 31ad7fe450 libnet-ssleay-perl: fix client hello ptest with OpenSSL 4
OpenSSL 4.0 removed support for SSLv2 ClientHello, so the canned SSLv2
ClientHello test no longer gets the expected alert:

  not ok 38 - Client: Alert from canned SSLv2 ClientHello
  FAIL: t/local/48_client_hello_callback

Backport the upstream test update for it.

meta-perl-image-ptest-libnet-ssleay-perl on qemux86-64 now passes
37 tests with none failing.

AI-Generated: Uses Claude Code
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:48 -07:00
Khem Raj 16cc7db7d3 libdata-hexdump-perl: add perl-module-parent to RDEPENDS
Data::HexDump uses parent.pm, which was not installed, so the module
failed to load and both ptests failed:

  Can't locate parent.pm in @INC

meta-perl-image-ptest-libdata-hexdump-perl on qemux86-64 now passes.

AI-Generated: Uses Claude Code
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-21 08:13:48 -07:00