summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools
Commit message (Collapse)AuthorAgeFilesLines
...
* debootstrap: upgrade 1.0.138 -> 1.0.140Yi Zhao2025-03-311-1/+1
| | | | | | | https://salsa.debian.org/installer-team/debootstrap/-/blob/1.0.140/debian/changelog Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* apitrace: Fix build with gcc-15tho3.nguyen2025-03-282-0/+43
| | | | | | | | | | | | | | | | To fix errors: In file included from TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_matrixstate.hpp:30, from TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_matrixstate.cpp:28: TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_dependecyobject.hpp:187:44: error: 'uint64_t' was not declared in this scope 187 | std::unordered_map<unsigned, std::pair<uint64_t, uint64_t>> m_buffer_mappings; | ^~~~~~~~ ... TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/retrace/metric_writer.cpp:50:70: error: 'uint64_t' does not name a type 50 | case CNT_NUM_UINT64: std::cout << "\t" << *(reinterpret_cast<uint64_t*>(data)); break; ... Signed-off-by: tho3.nguyen <tho3.nguyen@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jq: Stick to C17 until next releaseKhem Raj2025-03-271-0/+3
| | | | | | | | Patches are sprinkled in master branch of jq but the backports regresses tests, so its better to keep it at C17 for now. Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Martin Jansa <martin.jansa@gmail.com>
* Revert "jq: fix build with gcc-15"Khem Raj2025-03-274-631/+0
| | | | This reverts commit ec9a5598e48f1e4dad8f59e8a49bfe6657bc2284.
* jq: fix build with gcc-15Martin Jansa2025-03-254-0/+631
| | | | | | | | | | | | * backport 3 commits to fix: http://errors.yoctoproject.org/Errors/Details/848831/ ../jq-1.7.1/src/builtin.c:1705:4: error: initialization of 'jv (*)(void)' from incompatible pointer type 'jv (*)(jq_state *, jv)' [-Wincompatible-pointer-types] 1705 | {f_ ## name, #name, 1}, | ^~ Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-psycopg: upgrade 3.2.5 -> 3.2.6Wang Mingyu2025-03-251-1/+1
| | | | | | | | Changelog: Fix connection semantic when using target_session_attrs=prefer-standby Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: upgrade 8.4.4 -> 8.4.5Wang Mingyu2025-03-251-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jwt-cpp: upgrade 0.7.0 -> 0.7.1Wang Mingyu2025-03-251-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* abseil-cpp: upgrade 20250127.0 -> 20250127.1Wang Mingyu2025-03-253-43/+7
| | | | | | | | | | | | | | | | | | | | 0001-Actually-use-the-hint-space-instruction-to-strip-PAC.patch removed since it's inclued in 20250127.1 abseil-cpp/0004-abseil-ppc-fixes.patch refreshed for 20250127.1 Changelog: ============= - Added support for Bazel 8.0 - Added support for Bazel Platforms for better portability - Added ABSL_ATTRIBUTE_VIEW and ABSL_ATTRIBUTE_OWNER for diagnosing certain lifetime issues - Many performance improvements - A security issue in hash container create/resize has been fixed. Note that the latest patch releases for previous LTS versions also address this issue. - Bazel BUILD files now reference repositories by their canonical names from the Bazel Central Registry. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poke: Fix the reproducibility of installed scriptsYoann Congal2025-03-241-0/+3
| | | | | | | | | | | | | | | | | | | | | | Upstream does not support our default parallel "make -j install"[0]. So, disable it with PARALLEL_MAKEINST = "-j1" to avoid non-reproducibility where some scripts can be installed or not. Explanation for the non-reproducibility: There is a race condition between 2 actions at install around the installed script in $pkgdatadir: * Removal of existing scripts /usr/share/poke/*.pk * Installation of default scripts in the same directory Sadly, those 2 actions are not ordered. Depending on the build system load, removal can (rarely) happen *after* the installation. In this case, no script in present in /usr/share/poke/ when the install process end. [0]: https://sourceware.org/bugzilla/show_bug.cgi?id=32815#c1 Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: Add -latomic to CXXFLAGSKhem Raj2025-03-242-5/+5
| | | | | | | | | | | | | | | Adding to LDFLAGS works with LLD linker but not with BFD ld since it gets added before the abseil-cpp libraries on linker cmdline which does not link it and still finds the atomic function like `__atomic_store_8' as missing Use mipsarcho32 for override which covers both mips and mipsel Thanks for suggestions - RAED [1] [1] https://github.com/openembedded/meta-openembedded/pull/952 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: Link with libatomic on riscv32Khem Raj2025-03-221-0/+2
| | | | | | | | | | rv32 does not have compiler builtins for 64bit atomics Fixes | riscv32-yoe-linux-ld.lld: error: undefined reference: __atomic_load_8 | >>> referenced by /mnt/b/yoe/master/build/tmp/work/riscv32-yoe-linux/protobuf/5.29.4/recipe-sysroot/usr/lib/libabsl_cordz_info.so.2501.0.0 (disallowed by --no-allow-shlib-undefined) Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools: fix build with gcc-15Martin Jansa2025-03-212-0/+70
| | | | | | | | * fixes build with gcc-15: http://errors.yoctoproject.org/Errors/Details/848455/ Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: 4.25.5 -> 5.29.4Hongxu Jia2025-03-215-26/+126
| | | | | | | | | | | | | | | | | | | | Refresh local patches - 0001-Fix-build-on-mips-clang.patch - 0001-examples-Makefile-respect-CXX-LDFLAGS-variables-fix-.patch Fix protobuf-native build failure with gcc 10 Fix dev-elf QA issue: |ERROR: protobuf-5.29.4-r0 do_package_qa: QA Issue: -dev package protobuf-dev contains non-symlink .so '/usr/lib/libutf8_range.so' [dev-elf] |ERROR: protobuf-5.29.4-r0 do_package_qa: QA Issue: -dev package protobuf-dev contains non-symlink .so '/usr/lib/libutf8_validity.so' [dev-elf] Changelog: https://github.com/protocolbuffers/protobuf/releases/tag/v29.4 Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.1.20250302.0 -> 6.1.20250316.0Wang Mingyu2025-03-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Fix variable assignment whitespaceRichard Purdie2025-03-209-9/+9
| | | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: upgrade 22.13.0 -> 22.14.0Jason Schonberg2025-03-183-2/+2
| | | | | | | | | | License-Update: Change the location of the inspector_protocol https://github.com/nodejs/node/commit/a48430d4d34eb9f598522410dd7723f069c574d0 Changelog: https://github.com/nodejs/node/releases/tag/v22.14.0 Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: upgrade from 8.2.26 to 8.4.4Chen Qi2025-03-139-432/+45
| | | | | | | | | | | | | | | | | | | 0001-ext-opcache-config.m4-enable-opcache.patch is dropped. This patch could be dropped because the new version now uses AC_CACHE_CHECK, and we can just pass ac_cv_xxx to it instead of using a local patch. 0008-ext-imap-config.m4-fix-include-paths.patch is dropped. ext/imap has been removed from php in this new version. See https://github.com/php/php-src/pull/13190. As a result of this removal, the corresponding PACKAGECONFIG is removed from this new version. 0001-Change-whether-to-inline-XXH3_hashLong_withSecret-to.patch is dropped. It has been merged in this new version. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: drop some unneeded patchesChen Qi2025-03-134-117/+3
| | | | | | | | | | | | | | | | | Drop 0003-php-remove-host-specific-info-from-header-file.patch. Instead we export PHP_UNAME = "Linux" to achieve the same effect. Drop 0002-build-php.m4-don-t-unset-cache-variables.patch. The related ac_cv_lib_xxx and ac_cv_func_xxx settings in this recipe are also removed. This patch is not needed from the my build testing result. Drop 0009-php-don-t-use-broken-wrapper-for-mkdir.patch. This patch says that the wrapper is broken, but does not say why. Without this patch, things still build. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf-c: 1.5.0 -> 1.5.1Hongxu Jia2025-03-133-16/+1467
| | | | | | | | | | | | | | | | According to [1], protobuf-c 1.5.1 has commits [2] to fix broke with protobuf 26.0 (4.26.0) Also port a patch from archlinux [3] to support protobuf 30 (4.30.0) License-Update: update copyright years to 2025 [1] https://github.com/protobuf-c/protobuf-c/issues/730 [2] https://github.com/protobuf-c/protobuf-c/pull/711/ [3] https://gitlab.archlinux.org/archlinux/packaging/packages/protobuf-c/-/blob/main/protobuf-30.patch Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* grpc: Upgrade to 1.71.0 ReleaseKhem Raj2025-03-121-2/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pahole: upgrade 1.28 -> 1.29Changqing Li2025-03-111-1/+1
| | | | | | | Upgrade to the latest version Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pocketpy: upgrade 2.0.5 -> 2.0.6Wang Mingyu2025-03-111-1/+1
| | | | | | | | | | | | | | Changelog: ========= - add pybind11 implementation for module reload - Improve memory managements (mem-v2) - implement array2d.chunked_array2d[T, TContext] - Add test cases for array2d.chunked_array2d - Refactor Frame struct - [lz4] Make lz4 a submodule. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.1.20250223.0 -> 6.1.20250302.0Wang Mingyu2025-03-111-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xmlrpc-c: 1.60.03 -> 1.64.0Hongxu Jia2025-03-113-50/+29
| | | | | | | | | Refresh local patches: - 0001-test-cpp-server_abyss-Fix-build-with-clang-libc.patch - 0001-unix-common.mk-Ensuring-Sequential-Execution-of-rm-a.patch Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtoml11: Upgrade to 4.4.0Khem Raj2025-03-082-2/+49
| | | | | | Fix build with clang-20 while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fastfloat: remove recipeMarkus Volk2025-03-071-15/+0
| | | | | | | fastfloat was moved to oe-core Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* abseil-cpp: Backport `xpaclri` asm fixAlex Kiernan2025-03-012-0/+33
| | | | | | | | | | | | | | Native build on aarch64 breaks with: | {standard input}: Assembler messages: | {standard input}:169: Error: selected processor does not support `xpaclri' | {standard input}:411: Error: selected processor does not support `xpaclri' | {standard input}:859: Error: selected processor does not support `xpaclri' | {standard input}:1140: Error: selected processor does not support `xpaclri' Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Alex Kiernan <alexk@a-squared-projects.uk> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tk8: Exclude aclocal so existing macros are usedKhem Raj2025-02-281-0/+1
| | | | | | Adjustments for autoconf changes in oe-core Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cgdb: fix autoreconfRoss Burton2025-02-271-0/+2
| | | | | | | autoreconf needs to be told where to find macros as the Makefile.am does not do this. Signed-off-by: Ross Burton <ross.burton@arm.com>
* tk: exclude aclocal so existing macros are usedRoss Burton2025-02-271-0/+1
| | | | | | | This package has hand-coded aclocal.m4 so ensure that we don't run aclocal. Signed-off-by: Ross Burton <ross.burton@arm.com>
* xmlrpc-c: use autoreconfRoss Burton2025-02-272-4/+21
| | | | | | | Add a patch to not use AM_INIT_AUTOMAKE as automake isn't actually used, and just let autotools.bbclass run autoreconf. Signed-off-by: Ross Burton <ross.burton@arm.com>
* poke: remove obsolete acpathsRoss Burton2025-02-271-4/+0
| | | | | | | | | As of "autotools: don't try and find in-tree macros" in core, acpaths is no longer used. Also switch to out-of-tree builds as this appear to work now. Signed-off-by: Ross Burton <ross.burton@arm.com>
* php: remove obsolete acpathsRoss Burton2025-02-271-2/+0
| | | | | | | As of "autotools: don't try and find in-tree macros" in core, acpaths is no longer used. Signed-off-by: Ross Burton <ross.burton@arm.com>
* poke: enable out of tree buildsRoss Burton2025-02-271-2/+1
|
* cpuid: fix strippingRoss Burton2025-02-271-3/+1
| | | | | | | | | | | | | | cpuid's Makefile passes -s to install to strip the binaries, but as this uses the _host_ strip it can fail if that strip doesn't know about the target (for example, building cpuid for x86 on aarch64): install -D -s -m 755 cpuid .../image/usr/bin/cpuid strip: Unable to recognise the format of the input file `.../image/usr/bin/cpuid' Set INSTALL_STRIP='' so that the binaries are not stripped, and remove the INSANE_SKIP for already-stripped. Signed-off-by: Ross Burton <ross.burton@arm.com>
* abseil-cpp: upgrade 20240722.0 -> 20250127.0Changqing Li2025-02-272-33/+2
| | | | | | | | | | | | Upgrade to the latest new LTS release, release note: https://github.com/abseil/abseil-cpp/releases?page=1 * drop 0005-Don-t-match-Wnon-virtual-dtor-in-the-flags-are-neede.patch, already include in this LTS release * Include security fix for CVE-2025-0838 Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* valijson: upgrade 1.0.3 -> 1.0.4Wang Mingyu2025-02-261-1/+1
| | | | | | | | | | | | | | | | Changelog: ========== - Prevent potential division by zero - Fix stack overflow for unresolved references - Fix buffer overflow in u8_strlen - Fuzzing improvements - Spelling corrections - Detect circular references when parsing schemas - Use statically allocated regexes for date/time pattern matching - Allow permissive validation of date/time formats Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-psycopg: upgrade 3.2.4 -> 3.2.5Wang Mingyu2025-02-261-1/+1
| | | | | | | | Changelog: 3x faster UUID loading thanks to C implementation Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ply: upgrade 2.3.0 -> 2.4.0Wang Mingyu2025-02-261-2/+2
| | | | | | | | | | | | | Changelog: ============== - New architecture: mips - New architecture: loongarch - Output buffering can now be unconditionally disabled - New provider: profile - Incorrect stack management when accessing tracepoint data Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* flatbuffers: upgrade 25.1.24 -> 25.2.10Wang Mingyu2025-02-261-2/+2
| | | | | | | | | | | Changelog: =========== - Rust reflection: simplify dependencies, fix Android build compatibility - [Swift] Adds swift 6 to the build matrix & bumps swift to 5.9 - Upgrade dependencies Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.1.20250202.0 -> 6.1.20250223.0Wang Mingyu2025-02-261-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* capnproto: only export binaries for native buildGyorgy Sarvari2025-02-253-44/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | The base problem this is trying to solve: capnproto has two main components: libraries that can be linked against, and binary files that can generate c++ code from capnproto definitions. When cross-compiling one needs to use the cross-compiled libraries, but with the native definition-compilers. When linking against capnproto from another recipe, cross-compilation fails, because the cmake files generated by capnproto verify the existence of binary files in $bindir. When using a cross-compiled version of capnproto, these binary files do not exist in RECIPE_SYSROOT, so the compilation fails. The previous patch: the previous solution patched the CMakeLists.txt file in a way that it didn't export nor install the generated binary files. Accidentally this also happened with native build (and happened knowingly with target builds). The new patch: instead of not installing and not exporting the binaries, just install them without exporting, when creating a target build. During compilation check is CMAKE_CROSSCOMPILING is set (coming from cmake.bbclass) - if it is set, only install the binaries, without exporting. When it is not set, resort to the original behavior. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lapack: fix lapack-ptest rdepends on lapack-devZhang Peng2025-02-151-1/+2
| | | | | | | | | | | | When LAPACKE is enabled, the QA check fails with the following error: ERROR: lapack-3.12.1-r0 do_package_qa: QA Issue: lapack-ptest rdepends on lapack-dev [dev-deps] ERROR: lapack-3.12.1-r0 do_package_qa: Fatal QA errors were found, failing task. The root cause is that `lapack-ptest` accidentally installed `lapacke.pc`, which is a development file intended to be included only in the `lapack-dev` package. To resolve this: Remove `lapacke.pc` from the `lapack-ptest` installation Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pax-utils: fix pyelftools PACKAGECONFIG dependencyGyorgy Sarvari2025-02-141-1/+1
| | | | | | | | | The correct dependency name for pyelftools is "python3-pyelftools". Set the dependency name accordingly to avoid build failure with this PACKAGECONFIG. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pahole: fix python3 PACKAGECONFIGGyorgy Sarvari2025-02-141-1/+1
| | | | | | | | As a build time dependency, python3 provides python3-core - set the PACKAGECONFIG accordingly to avoid build failure. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ltrace: fix unwind PACKAGECONFIGGyorgy Sarvari2025-02-141-1/+1
| | | | | | | | | | | | In case unwind PACKAGECONFIG is enabled, do_configure task fails with the following error message: | configure: error: Cannot enable both --with-libunwind and --with-elfutils To avoid this error, disable elfutils with this PACKAGECONFIG. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jsonrpc: fix interface library paths in cmake filesGyorgy Sarvari2025-02-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | The cmake files generated by this recipe contain a number of interfacing libraries, with absolute paths, which also contain the TMPDIR. The TMPDIR part of these paths were just truncated by the recipe, to avoid the corresponding QA check error. However this made it impossible to to link against this library from other recipes. When one tried, the find_package command failed with the following error: | Run Build Command(s): ninja -v -j 12 all | ninja: error: '/usr/lib/libjsoncpp.so', needed by 'jsonrpctest', missing and no known rule to make it To avoid this, instead of just truncating this path, set it to ${CMAKE_SYSROOT} placeholder (which is resolved by CMake to the correct value at build-time, using the variable set by cmake.bbclass) Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mpich: upgrade 4.2.3 -> 4.3.0Wang Mingyu2025-02-101-2/+2
| | | | | | | License-Update: Copyright year updted to 2024 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* flatbuffers: upgrade 24.12.23 -> 25.1.24Wang Mingyu2025-02-101-2/+2
| | | | | | | | | | | | | Changelog: ============= * Mostly related to bazel build support. * Min bazel supported is now 7 or higher, as WORKSPACE files are removed * Minor C++ codegen fix removing extra semicolon * Rust Full Reflection * Mostly documentation updates hosted at https://flatbuffers.dev Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>