summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* magic-enum: Upgrade to latestKhem Raj2026-04-161-1/+2
| | | | | | | It has fixes for C23 and Clang-22 added also fixes/workarounds for libstdc++-14 combinations with different versions of gcc and clang. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* streamripper: disable C23 support to fix configure checkKhem Raj2026-04-161-0/+2
| | | | | | | | Set ac_cv_prog_cc_c23=no to prevent autoconf from detecting C23 compiler support, avoiding potential build failures as the package is not yet fully ported to support C23 standard. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* composefs: Fix incompatible pointer type qualifier mismatchesKhem Raj2026-04-162-2/+48
| | | | Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* fswebcam: Add RRECOMMENDS ttf-dejavu-sansJörg Sommer2026-04-161-0/+3
| | | | | | | | Add a recommendation for a sans serif font to print text on images. But fswebcam works fine without a font to save only plain images. Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* libraqm: New recipe for a library for complex text layoutJörg Sommer2026-04-161-0/+25
| | | | | Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* gd: Support PACKAGECONFIGJörg Sommer2026-04-161-8/+17
| | | | | | | | Some recipes (like fswebcam) need gd with support of fontconfig to really work. Otherwise font selection is not that easy. Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* dlt-daemon: fix missing application descriptionChangqing Li2026-04-162-0/+38
| | | | | | | | | | | | Running "dlt-example-user 'test'", Check "dlt-control -j localhost", will not get application description: APID:LOG- Expected: APID:LOG- Test Application for Logging Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* packagegroup-meta-python: Enable python3-pyatspi conditional upon GI dataKhem Raj2026-04-161-1/+1
| | | | Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* packagegroup-meta-oe: Make pcp and remmina depend upon x11 distro featureKhem Raj2026-04-161-4/+2
| | | | Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* xrdp: Guard ptests with x11 distro featureKhem Raj2026-04-161-1/+1
| | | | | | xrdp only builds when x11 is enabled, make it consistent Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* hiawatha: Upgrade to 12.1 releaseKhem Raj2026-04-161-1/+1
| | | | | | | | | | | | - HTTP/2 support added via the nghttp2 library (credits to Heiko Zimmermann) — noted as experimental, so testing carefully before enabling on production servers is recommended. - mbed TLS updated from 4.0.0 to 4.1.0. - ssi-cgi removed — the release notes suggest using Hiawatha's XSLT support as a more advanced alternative. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* taisei: Fix build with glibc 2.43 + c23Khem Raj2026-04-163-1/+131
| | | | Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* eog: Update to 49.3Khem Raj2026-04-161-2/+5
| | | | | | | Turn color management into packageconfig knob which is turned off by default as it needs x11 support. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* ruli: Delete -ansi and -pedantic from compiler commandlineKhem Raj2026-04-161-10/+15
| | | | | | | | | | | | | | | The build fails because ruli is compiled with -ansi (which implies C89/C90), but glibc's memchr macro uses _Generic, a C11 feature. Clang treats this as an error via -Werror,-Wc11-extensions. Fixes build with glibc 2.43+ | ruli_conf.c:86:12: error: '_Generic' is a C11 extension [-Werror,-Wc11-extensions] | 86 | if (!memchr(inbuf, '\0', LOAD_SEARCH_LIST_INBUFSZ)) | | ^ Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* meta-oe/recipes: disable C23 support to fix configure checkKhem Raj2026-04-169-1/+14
| | | | | | | | Set ac_cv_prog_cc_c23=no to prevent autoconf from detecting C23 compiler support, avoiding potential build failures as the package is not yet fully ported to support C23 standard. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* audiofile: disable C23 support to fix configure checkKhem Raj2026-04-161-1/+1
| | | | | | | | | | Set ac_cv_prog_cc_c23=no to prevent autoconf from detecting C23 compiler support, avoiding potential build failures as the package is not yet fully ported to support C23 standard. Drop enforcing -std=c++14 as thats no longer needed Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* sthttpd: disable C23 support to fix configure checkKhem Raj2026-04-161-0/+2
| | | | | | | | Set ac_cv_prog_cc_c23=no to prevent autoconf from detecting C23 compiler support, avoiding potential build failures as the package is not yet fully ported to support C23 standard. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* dante,openflow,linux-atm: disable C23 support to fix configure checkKhem Raj2026-04-163-0/+6
| | | | | | | | Set ac_cv_prog_cc_c23=no to prevent autoconf from detecting C23 compiler support, avoiding potential build failures as the package is not yet fully ported to support C23 standard. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* ruli: disable C23 support to fix buildKhem Raj2026-04-161-1/+1
| | | | | | | Avoid potential build failures as the package is not yet fully ported to support C23 standard. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* dhcp-relay: disable C23 support to fix configure checkKhem Raj2026-04-161-1/+1
| | | | | | | | Set ac_cv_prog_cc_c23=no to prevent autoconf from detecting C23 compiler support, avoiding potential build failures as the package is not yet fully ported to support C23 standard. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* libvarlink: Fix build with C23 support in glibcKhem Raj2026-04-152-1/+99
| | | | Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* systemd-netlogd: Upgrade to 1.4.5 releaseKhem Raj2026-04-152-2/+64
| | | | | | | | | | Fix build on 32-bit with 64-bit time_t Fix build with C23 on For full details: https://github.com/systemd/systemd-netlogd/releases/tag/v1.4.5 Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* libcanberra: Upgrade to 0.30-20Khem Raj2026-04-151-1/+1
| | | | | | * Revert "Disable tdb feature on loong64 for bootstrapping" Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* cheese: Require x11 distro featureKhem Raj2026-04-151-1/+4
| | | | | | | | libcanberra needs to be compiled with gtk3 and x11 support otherwise cheese fails to find libcanberra-gtk3 package which makes it hard depend upon x11 Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* xfdesktop: Add missing DEPENDS on libyamlCalvin Owens2026-04-151-0/+1
| | | | | | | | | | | | The build fails like this: Run-time dependency yaml-0.1 found: NO (tried pkgconfig) ../sources/xfdesktop-4.20.1/meson.build:63:10: ERROR: Dependency "yaml-0.1" not found, tried pkgconfig Fix the failure by adding the missing dependency. Signed-off-by: Calvin Owens <calvin@wbinvd.org> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* gedit: Use gitsm in SRC_URI for new gdlib submoduleCalvin Owens2026-04-151-1/+1
| | | | | | | | | Upstream now uses a submodule for gdlib, so the build attempts to clone the submodule over the network and fails. Fix by cloning the submodule via SRC_URI. Signed-off-by: Calvin Owens <calvin@wbinvd.org> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* lshw: Fix binmergeJörg Sommer2026-04-151-2/+2
| | | | | | | In case $sbindir = $bindir we have to pass this setting to make. Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* jsoncpp: add ptest supportZeming LIU2026-04-153-6/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | Add ptest support for jsoncpp to enable automated testing of the JSON C++ library functionality. Note: - Tested on: WRLinux master-wr (based on meta-openembedded master) - jsoncpp version: 1.9.7 - Unable to test on pure upstream due to poky/meta-oe branch mismatch Test Result: root@qemux86-64:~# ptest-runner jsoncpp START: ptest-runner 2026-04-15T14:04 BEGIN: /usr/lib64/jsoncpp/ptest PASS: jsoncpp_readerwriter PASS: jsoncpp_readerwriter_json_checker PASS: jsoncpp_test DURATION: 122 END: /usr/lib64/jsoncpp/ptest 2026-04-15T14:06 STOP: ptest-runner TOTAL: 1 FAIL: 0 Signed-off-by: Zeming LIU <zeming.liu@windriver.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* rocksdb: packageconfig knob for set static library optionZahir Hussain2026-04-151-1/+1
| | | | | | | | | | | Adding PACKAGECONFIG knob for enable/disable the static library option it is just a follow-up changes of previous commit https://git.openembedded.org/meta-openembedded/commit/?id=233079a41caded6b68972317f01dc09435ba1ae0 and also this changes are already accepted and integrated in kirkstone branch. Signed-off-by: Zahir Hussain <zahir.basha@kpit.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-moteus: Upgrade 0.3.99 -> 0.3.100Leon Anavi2026-04-151-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 0.3.100: - python: Fix compatibility with older python versions - Add configurable faults for position or velocity tracking error - Work around a linker warning with newer gcc - tview: Suppress warnings about importing Axes3D - moteus_gui: Include registernoop.py in our generated wheel - Replace setup.py with pyproject.toml for Python package builds - Use ::isfinite for Arduino compatibility - Implement support for the RLS Orbis encoder over SPI Fixes: WARNING: python3-moteus-0.3.100-r0 do_check_backend: QA Issue: inherits setuptools3 but has pyproject.toml with setuptools.build_meta, use the correct class [pep517-backend] License-Update: Use PKG-INFO Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-soupsieve: Upgrade 2.8.2 -> 2.8.3Leon Anavi2026-04-151-1/+1
| | | | | | | | | Upgrade to release 2.8.3: - FIX: Fix inefficient attribute pattern. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-huey: Upgrade 2.6.0 -> 3.0.0Leon Anavi2026-04-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 3.0.0: - Add chord() (map -> reduce) and group() (map) primitives. - Add timeout (using SIGALRM for process and gevent.Timeout for greenlet) to control task running time. For threads, unfortunately, there's no good mechanism so instead APIs for cooperatively checking timeout are provided on the Task instance. - Add simple fixed-window rate_limit() for tasks. - Add Result.is_ready() method for checking result readiness. - New option for low-latency result fetching, available for RedisHuey. To use, pass notify_result=True when initializing your Huey instance. - Add new incr(key, amount=1) to storage API for atomic increment primitive. This is used by chord(). - Add new wait_result() method to storage APIs for efficiently waiting for a result to become ready. The default implementation uses the exponential backoff from the previous implementation of a blocking Result.get() - so no changes are needed. However if you have a custom storage implementation, this provides a mechanism for pub/sub or other notification of result readiness. - Remove Python 2.x compatibility. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-uvicorn: Upgrade 0.42.0 -> 0.44.0Leon Anavi2026-04-151-1/+1
| | | | | | | | | | | | | | | | Upgrade to release 0.44.0: - Implement websocket keepalive pings for websockets-sansio From 0.43.0: - Emit http.disconnect ASGI receive() event on server shutting down for streaming responses - Use native context parameter for create_task on Python 3.11+ - Drop cast in ASGI types Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* onboard: upgrade 1.4.3-9 -> 1.4.4-1Liu Yiding2026-04-152-72/+2
| | | | | | | | | | 1.ChangeLog https://github.com/onboard-osk/onboard/releases/tag/1.4.4-1 2.Remove 0001-pypredict-lm-Define-error-API-if-platform-does-not-h.patch as error has been solved in 1.4.4-1. Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* xdg-user-dirs: upgrade 0.19 -> 0.20Liu Yiding2026-04-151-3/+3
| | | | | | | Build system change from autotools to meson. Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* leancrypto: upgrade 1.7.1 -> 1.7.2Liu Yiding2026-04-151-1/+1
| | | | | | | | ChangeLog: https://github.com/smuellerDD/leancrypto/releases/tag/v1.7.2 Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* htop: upgrade 3.4.1 -> 3.5.0Liu Yiding2026-04-152-30/+25
| | | | | | | | | | | | 1.ChangeLog https://github.com/htop-dev/htop/blob/main/ChangeLog 2.Use --with-libunwind instead of --enable-unwind 3.Update 0001-configure.ac-Remove-usr-include-libnl3.patch for 3.5.0 Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-mlcommons-loadgen: upgrade 5.1.2 -> 6.0.14Liu Yiding2026-04-152-21/+24
| | | | | | | Update source-date-epoch.patch for 6.0.14 Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* iperf3: upgrade 3.20 -> 3.21Liu Yiding2026-04-151-3/+3
| | | | | | | | | | 1.ChangeLog: https://github.com/esnet/iperf/releases/tag/3.21 2.LIC_FILES_CHKSUM Changed as Copyright Year change from 2025 to 2026. Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* libhugetlbfs: add RISC-V to COMPATIBLE_HOSTSJoao Marcos Costa2026-04-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A preliminar effort to support RISC-V was added in v2.23: a529598 Introduce basic riscv64 support [1] Following the guidelines in libhugetlbfs's HOWTO, here are the outputs of some commands in qemuriscv64: root@qemuriscv64:~# grep -i huge /proc/filesystems nodev hugetlbfs root@qemuriscv64:~# hugeadm --pool-list Size Minimum Current Maximum Default 65536 0 0 0 2097152 0 0 0 * root@qemuriscv64:~# hugeadm --pool-pages-min 2MB:10 --add-temp-swap root@qemuriscv64:~# hugeadm --pool-list Size Minimum Current Maximum Default 65536 0 0 0 2097152 10 10 10 * root@qemuriscv64:~# hugeadm --pool-pages-min 2MB:-5 root@qemuriscv64:~# hugeadm --pool-list Size Minimum Current Maximum Default 65536 0 0 0 2097152 5 5 10 * Regarding toolchains, libhugetlbfs for RISC-V builds fine with both clang and gcc. [1]: https://github.com/libhugetlbfs/libhugetlbfs/commit/a529598dd256c79799d5e43e6d79146ca15f1c16 Signed-off-by: João Marcos Costa <joaomarcos.costa@bootlin.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* gthumb: Upgrade to 3.12.10Khem Raj2026-04-141-8/+5
| | | | | | | exiv2 is hard dependency now. webservices option and hence soup2 dependency is removed Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* mosquitto: install default mosquitto.conf for systemd compatibilityRicardo Salveti2026-04-141-0/+2
| | | | | | | | | | | | | | | | | | The upgrade to mosquitto 2.1.2 follows an upstream change where the default configuration file is only installed as ${sysconfdir}/mosquitto/mosquitto.conf.example. However, the shipped systemd service explicitly starts mosquitto using ${sysconfdir}/mosquitto/mosquitto.conf. If this file is not present, the daemon exits immediately and the service fails to start. Install the default mosquitto.conf alongside the example file, using the upstream-provided configuration, to match the expectations of the service unit and ensure the service starts correctly by default, as done with the 2.0.22 version. Signed-off-by: Ricardo Salveti <ricardo.salveti@oss.qualcomm.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* coremark: add missing license file for LicenseRef-EEMBC-AUAAshwin Prabhakar2026-04-141-0/+100
| | | | | | | | Add the license text file to resolve the do_populate_lic QA issue. This allows the build to verify the custom license identifier. Signed-off-by: Ashwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* CoreMark: Add CoreMark to benchmark CPU performanceAshwin Prabhakar2026-04-141-0/+23
| | | | | | | | | | | | | | | | | | | | | | Add support for CoreMark benchmark in recipes-benchmark. This package can be used to benchmark CPU performance in SOC's Application processor core. Signed-off-by: Ashwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com> coremark: append LDFLAGS to TARGET_CC_ARCH to fix QA issue Signed-off-by: Ashwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com> coremark: update to Apache-2.0 and LicenseRef-EEMBC-AUA Update the project license to Apache-2.0 combined with the EEMBC Acceptable Usage Agreement (AUA) as requested by the maintainer. This ensures compliance with EEMBC's updated licensing requirements for CoreMark. Signed-off-by: Ashwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* xterm: upgrade 407 -> 408Wang Mingyu2026-04-141-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* stunnel: upgrade 5.77 -> 5.78Wang Mingyu2026-04-142-9/+9
| | | | | | | | | | License-Update: Copyright year updated to 2026 fix-openssl-no-des.patch refreshed for 5.78 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-zopeinterface: upgrade 8.2 -> 8.3Wang Mingyu2026-04-141-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-virtualenv: upgrade 21.2.0 -> 21.2.1Wang Mingyu2026-04-141-1/+1
| | | | | | | | | | | | | | | | | | | | Changelog: =========== - Upgrade embedded pip/setuptools/wheel - Enhance upgrade workflow: age check, dedup, issue tracking - fix(create): use commonpath for correct path validation - ci(workflows): add zizmor security auditing - Add current and previous maintainers - fix(ci): restore git credentials for release and upgrade jobs - Fix broken Installation link in README - fix: use terminal width for help formatting instead of hardcoded 240 - fix(nushell): surface actionable hint in deactivate error output - ci: fix setup-uv warnings and drop brew@3.9 - fix(ci): fix pre-release push and release note generation - fix(ci): check out repo in publish job for gh release notes Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-tox: upgrade 4.52.0 -> 4.52.1Wang Mingyu2026-04-141-1/+1
| | | | | | | | | | Changelog: ========== - use normalize_isa for architecture factor matching - fix(pip): invalidate install cache on resolution env var changes Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-soundcard: upgrade 0.4.5 -> 0.4.6Wang Mingyu2026-04-141-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>