summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools
Commit message (Collapse)AuthorAgeFilesLines
...
* 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>
* ctags: upgrade 6.1.20250119.0 -> 6.1.20250202.0Wang Mingyu2025-02-101-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools: drop useless USB_DEBUGGING_ENABLED handlingDmitry Baryshkov2025-02-091-6/+0
| | | | | | | | | | | | | | | | This reverts commits 4271cc28279b ("android-tools: Add flag to enable adbd service (#147)") and b85ae59968f4 ("android-tools 10: Add flag to enable adbd service"). These two commits added optional ROOTFS_POSTPROCESS_COMMAND touching the flag file, however this variable doesn't make any sense in the package recipe, it is only concerned in the image context. Drop useless code from the android-tools recipe. Fixes: 4271cc28279b ("android-tools: Add flag to enable adbd service (#147)") Fixes: b85ae59968f4 ("android-tools 10: Add flag to enable adbd service") Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* grpc: add licenses from third party componentsPeter Marko2025-02-081-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are 9 (out of 24) third party components used for build. Add their licenses. SUB third_party/abseil-cpp .. not used (unbundled) third_party/address_sorting .. USED SUB third_party/benchmark .. not used (testing) SUB third_party/bloaty .. not used (testing) SUB third_party/boringssl-with-bazel .. not used (unbundled; openssl) third_party/cares .. not used (unbundled) SUB third_party/envoy-api .. USED SUB third_party/googleapis .. USED SUB third_party/googletest .. not used (testing) third_party/objective_c .. not used (build helpers) SUB third_party/opencensus-proto .. USED SUB third_party/opentelemetry .. not used (gRPC_BUILD_GRPCPP_OTEL_PLUGIN) SUB third_party/opentelemetry-cpp .. not used (gRPC_BUILD_GRPCPP_OTEL_PLUGIN) SUB third_party/protobuf .. not used (unbundled) SUB third_party/protoc-gen-validate .. USED third_party/py .. not used (build helpers) third_party/rake-compiler-dock .. not used (build helpers) SUB third_party/re2 .. not used (unbundled) third_party/toolchains .. not used (build helpers) third_party/upb .. USED third_party/utf8_range .. USED SUB third_party/xds .. USED third_party/xxhash .. USED SUB third_party/zlib .. not used (unbundled) * address_sorting - BSD-3-CLAUSE (already in main license) https://github.com/grpc/grpc/blob/master/third_party/address_sorting/LICENSE * envoy-api - Apache-2.0 (already in main license) https://github.com/envoyproxy/data-plane-api/blob/4de3c74cf21a9958c1cf26d8993c55c6e0d28b49/LICENSE * googleapis - Apache-2.0 (already in main license) https://github.com/googleapis/googleapis/blob/fe8ba054ad4f7eca946c2d14a63c3f07c0b586a0/LICENSE * opencensus-proto - Apache-2.0 (already in main license) https://github.com/census-instrumentation/opencensus-proto/blob/4aa53e15cbf1a47bc9087e6cfdca214c1eea4e89/LICENSE * protoc-gen-validate - Apache-2.0 (already in main license) https://github.com/bufbuild/protoc-gen-validate/blob/32c2415389a3538082507ae537e7edd9578c64ed/LICENSE * upb - BSD-3-Clause (already present in main LICENSE) there is a note in all files * utf8_range - MIT https://github.com/grpc/grpc/blob/master/third_party/utf8_range/LICENSE * xds - Apache-2.0 (already in main license) https://github.com/cncf/xds/blob/3a472e524827f72d1ad621c4983dd5af54c46776/LICENSE * xxhash - BSD-2-Clause https://github.com/grpc/grpc/blob/master/third_party/xxhash/LICENSE License-Update: added missing licenses Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* grpc: fix protobuf-lite package configPeter Marko2025-02-081-1/+1
| | | | | | | | | | | | | | | | protobuf-lite is a package, not recipe, so current code leads to ERROR: Nothing PROVIDES 'protobuf-lite' Moving it to 4th part (rdepends) is not needed as grpc links against it so that rdependency is asutomatic. Therefore protobuf-lite should be removed. Note: for native, this packageconfig does not even compile and for target it fails to link. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* grpc: remove workaround for GCC 4.8 in Ubuntu-14.04Peter Marko2025-02-081-2/+0
| | | | | | | Minimum distro version and gcc version is now higher. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* grpc: remove unneeded dependenciesPeter Marko2025-02-081-2/+2
| | | | | | | | | | | | | | | | | googletest is needed only if we would build tests, and then it should be conditional on PTEST_ENABLED libnsl is not needed. there is no linking command in any cmake. The only grep hit is in cares.cmake to disable it. Commit 2ffc7b45d638a89535b963533d39b8b13e4c8c1e which added it talks about host distros, but also such case would be wrong when adding it to general depends (should be in native only depends) and it would have to have be reference in cmake (in grpc or in one of recipe-sysroot). Also sort the dependencies in the process. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sip: Upgrade 6.9.1 -> 6.10.0Leon Anavi2025-02-041-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After the migration from Mercurial to GitHub the homepage has changed and SIP is now licensed under the BSD-2-Clause license. The upgrade to version 6.10.0 brings the following changes: - SIP_ABI_VERSION has been added as a module attribute of the sip module. This is an integer that represents the ABI version that the module implements as a 3 part hexadecimal number. This has been implemented in ABIs v12.17 and v13.10. - The ability of sip-module to generate sdists for older ABI versions has been restored. The oldest that can be generated are v12.9 and v13.1 which are the oldest non-deprecated versions. - The default minor ABI version to use is now the latest minor version for a particular major version (rather than 0 as it was previously). - The --abi-version command line option has been added to sip-build, sip-install and sip-wheel to specify the ABI version of the sip module to generate code for. - The %MinimumABIVersion directive is used to specify the minimum sip module ABI to target in order to ensure that all calls to the public API from handwritten code are available. A consequence of this change is that passing string values to the /Deprecated/ annotation no longer requires an ABI version that supports them to be targeted. If the targeted ABI version does not support them they are simply ignored. - The value of a string annotation uses the ; and : characters to allow platform- and feature-specific values to be defined. These special characters can now be escaped using a leading \\. This capability has now been documented. - The license designator in setup.py for the latest versions of the sip module are now correctly specified as BSD-2-Clause. - The code generation has been fixed for classes created by instantiating mapped type templates using a typedef with the /NoTypeName/ annotation. This work was sponsored by GOVCERT.LU. License-Update: SIP is now licensed under the BSD-2-Clause license. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: set CVE_PRODUCTPeter Marko2025-02-031-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Add all relevant products from following query. Also remove generic "protobuf" to avoid matching golang:protobuf. .../downloads/CVE_CHECK2$ sqlite3 nvdcve_2-2.db sqlite> select vendor, product, count(*) from products where product like '%protobuf%' group by vendor, product; golang|protobuf|1 google|google-protobuf|5 google|protobuf|2 google|protobuf-cpp|4 google|protobuf-java|15 google|protobuf-javalite|12 google|protobuf-kotlin|6 google|protobuf-kotlin-lite|4 google|protobuf-python|4 protobuf|protobuf|1 protobuf-c_project|protobuf-c|2 protobufjs_project|protobufjs|3 rust-protobuf_project|rust-protobuf|2 Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: add MIT to licensePeter Marko2025-02-031-2/+6
| | | | | | | Third party components have MIT license. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: don't download git submodulesPeter Marko2025-02-031-1/+1
| | | | | | | All dependencies are used from recipe sysroot now. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: use system jsoncppPeter Marko2025-02-031-1/+2
| | | | | | | | We should not use additional vendored jsoncpp unless required due to compatibility issues. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jsoncpp: enable nativesdk buildPeter Marko2025-02-031-1/+1
| | | | | | | This is necessary for unbundled build of protobuf. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: remove rdepends on abseil-cppPeter Marko2025-02-031-2/+0
| | | | | | | | | | | | | | | | | | | This commit reverts https://git.openembedded.org/meta-openembedded/commit/?id=5af1cd3ada4cc86864810a12c82771ba1afdce64 That commit prefers sdk development instead of release images. The additional libraries are not needed for protobuf at runtime. Also any component depending on protobuf will have whole abseil-cpp in sysroots so linking all the libraries is possible and any additional ones will be installed. What may not work is if protobuf is installed in sdk image and application using it wants to use an additional abseil-cpp library. However that is easily fixable by adding also abseil-cpp to sdk. Removing hard-dependency in release images is much harder. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* protobuf: remove unneeded atomic linker flagPeter Marko2025-02-031-6/+0
| | | | | | | | This is handled in protofuf cmake since 3.15: https://github.com/protocolbuffers/protobuf/commit/55ed1d427ccc0d200927746329ac9b811dee77b9 Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* capnproto: remove binaries from target-build, add bbclassGyorgy Sarvari2025-02-032-1/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When linking to capnproto from another project, cmake fails to find this package with the following error: | CMake Error at ${RECIPE_SYSROOT}/usr/lib/cmake/CapnProto/CapnProtoTargets.cmake:176 (message): | The imported target "CapnProto::capnp_tool" references the file | | "${RECIPE_SYSROOT}/usr/bin/capnp" | | but this file does not exist. Possible reasons include: To solve this, this change includes the following: 1. Add a patch that removes the files installed (and exported) in ${bindir} from the target build. The CMake file originally verified that these files exist when another recipe tried to use it, however the ${RECIPE_SYSROOT} does not contain the binaries in ${bindir}, so it failed quick in the do_configure step. (This alone is enough to link against the cross-compiled libraries of capnproto successfully, but code-generation from capnproto definition fails) 2. Add a new bbclass for capnproto. To cross-compile an application that uses capnproto, the application needs to be linked against the cross-compiled version of the libraries, however the native version of the binaries need to be used to generate C++ code from the capnproto definitions. This class sets the correct CMake arguments, to use the capnproto binaries from the native package, instead of looking for the non-existent cross-compiled binaries. (These variables can be found in ${libdir}/cmake/CapnProto/CapnProtoConfig.cmake file) Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Fix variable assignment whitespaceRichard Purdie2025-01-311-1/+1
| | | | | | | | | | | | Recipes are much more readable with whitespace around the assignment operators. Fix various assignments in meta-openembedded recipes to show this is definitely the preferred formatting. This fixes recipes with larger numbers of issues but there are just under 100 other references left to fix. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* luaposix: Fix LUA_INCDIR pathKhem Raj2025-01-291-1/+1
| | | | | | | | | If not specified on build commandline for luke, it results in pulling it from build host development headers under /usr/include this was always happening but with recent fixes to GCC poisoning host includes patch, this issue has come to fore. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools-native: dependency with android-tools-conf-nativeChristos Gavros2025-01-251-0/+1
| | | | | | | | | Building of android-tools-native aborted due to missing dependency with android-tools-conf-native. Fixed by extending android-tools-conf-configfs_1.0.bb recipe to build native Signed-off-by: Christos Gavros <gavrosc@yahoo.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: Drop references to ACLOCALDIRKhem Raj2025-01-251-2/+5
| | | | | | ACLOCALDIR is dropped from core Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: upgrade 22.12.0 -> 22.13.1Jason Schonberg2025-01-245-50/+81
| | | | | | | | | | | | | | | | | | | Changelog for 22.13.0 : https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#22.13.0 Changelog for 22.13.1 : https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#22.13.1 The 22.13.1 release is a security fix addressing four CVEs. CVE-2025-23083 - src,loader,permission: throw on InternalWorker use when permission model is enabled (High) CVE-2025-23085 - src: fix HTTP2 mem leak on premature close and ERR_PROTO (Medium) CVE-2025-23084 - path: fix path traversal in normalize() on Windows (Medium) CVE-2025-22150 - Use of Insufficiently Random Values in undici fetch() (Medium) I introduce a new patch with this recipe 0001-Do-not-use-glob-in-deps.patch to revert https://github.com/nodejs/node/commit/77e2869ca6 I restored 0001-deps-disable-io_uring-support-in-libuv.patch as suggested here : https://lore.kernel.org/all/20241207140642.181134-1-martin.jansa@gmail.com/ Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pistache: fix package config dependenciesAyoub Zaki2025-01-241-9/+11
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lapack: upgrade to latest 3.12.1Martin Jansa2025-01-241-4/+4
| | | | | | | | | | | | | | * adjust the list of .f files to cover also newly used .f90 files, causing: http://errors.yoctoproject.org/Errors/Details/840502/ ERROR: lapack-3.12.1-r0 do_package_qa: QA Issue: File /usr/lib/lapack/ptest/bin/xdmdeigtsts in package lapack-ptest contains reference to TMPDIR [buildpaths] ERROR: lapack-3.12.1-r0 do_package_qa: QA Issue: File /usr/lib/lapack/ptest/bin/xdmdeigtstd in package lapack-ptest contains reference to TMPDIR [buildpaths] ERROR: lapack-3.12.1-r0 do_package_qa: QA Issue: File /usr/lib/lapack/ptest/bin/xdmdeigtstz in package lapack-ptest contains reference to TMPDIR [buildpaths] ERROR: lapack-3.12.1-r0 do_package_qa: QA Issue: File /usr/lib/lapack/ptest/bin/xdmdeigtstc in package lapack-ptest contains reference to TMPDIR [buildpaths] ERROR: lapack-3.12.1-r0 do_package_qa: Fatal QA errors were found, failing task. Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lapack: fix buildpaths in ptest also when CBLAS is enabledMartin Jansa2025-01-241-6/+17
| | | | | | | | | | | | | | | | | | | ERROR: lapack-3.12.0-r0 do_package_qa: QA Issue: File /usr/lib/lapack/ptest/bin/xccblat3 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xdcblat3 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xdcblat1 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xscblat1 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xccblat2 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xzcblat2 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xzcblat1 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xccblat1 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xdcblat2 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xscblat2 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xscblat3 in package lapack-ptest contains reference to TMPDIR File /usr/lib/lapack/ptest/bin/xzcblat3 in package lapack-ptest contains reference to TMPDIR [buildpaths] Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lapack: add PACKAGECONFIG for cblasMartin Jansa2025-01-241-0/+1
| | | | | Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cbindgen: update 0.27.0 -> 0.28.0Wang Mingyu2025-01-241-3/+3
| | | | | | | | | | | | | | | | | | | Changelog: ========== * Parse unsafe attributes * Fix local override of enum prefix-with-name * Add rename-all=prefix * ir: add support for UnsafeCell and SyncUnsafeCell * Implement mangling for arrays * Fix: Ignore 'CARGO_BUILD_TARGET' in tests * Newline for each field for constexpr field constants * Fix clippy warnings * Add aarch64/arm64 to CI * Add `unstable_ir` feature flag that makes the ir pub * Support generated a symbols file Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-psycopg: upgrade 3.2.3 -> 3.2.4Wang Mingyu2025-01-241-1/+1
| | | | | | | | | | | | | | | | | Changelog: =========== - Don't lose notifies received whilst the notifies() iterator is not running - Make sure that the notifies callback is called during the use of the notifies() generator - Raise the correct error returned by the database (such as AdminShutdown or IdleInTransactionSessionTimeout) instead of a generic OperationalError when a server error causes a client disconnection - Build macOS dependencies from sources instead using the Homebrew versions in order to avoid problems with MACOSX_DEPLOYMENT_TARGET - Bump libpq to 17.2 in Linux and macOS binary packages. - Bump libpq to 16.4 in Windows binary packages, using the vcpkg library Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pocketpy: upgrade 2.0.4 -> 2.0.5Wang Mingyu2025-01-241-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ============ - use cpython % and // impl - add colorcvt module - add py_importlib_reload and importlib module - add py_interrupt and set single handler for REPL - add PK_LOW_MEMORY_MODE - reduce type's memory cost - allow customize malloc, realloc and free - make C99 compilers work - fix win32 clang build - avoid undefined behavior signed int overflow - fix pybind11 implementation for error_already_set Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtoml11: upgrade 4.2.0 -> 4.3.0Wang Mingyu2025-01-242-37/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0001-fix-add-missing-zero-initialization-to-region.patch removed since it's included in 4.3.0 Changlog: ========= Added ------ Support std::optional as a template argument of toml::find Support multiple arguments toml::visit(visitor, args...) Fixed ------ toml::detail::region::last_ may be used uninitialized Fix use with CMake 3.21 and older fix: prevent size_t-max length string allocation update README.md Make parsing faster for very long line Avoid known problem in MSVC Check if source_location::file_name() is null before formatting Changed ------- Update hugo-book theme Add MSVC 2017 to appveyor build Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgee: upgrade 0.20.6 -> 0.20.8Wang Mingyu2025-01-241-1/+1
| | | | | | | | | | Changelog: ========== * Fixes for new release process * Fixes for newer valac Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.1.20250112.0 -> 6.1.20250119.0Wang Mingyu2025-01-241-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* yasm: update to latest git revisionPeter Marko2025-01-204-114/+5
| | | | | | | | | | | | | | | | | | Last tag is from 2014, but bugfixing continued and last commit is from year 2024. Additional 87 commits are present, mostly bugfixes. PV already has "+git" although it was exactly on tag, no edit needed. Drop 3 patches which are included in current git version. Add CVE_STATUS for 2 CVEs from those patches. Also mark one additional CVE as fixed: CVE-2021-33454. Stack trace from https://github.com/yasm/yasm/issues/166 References the same line of code as corrected in https://github.com/yasm/yasm/pull/244 Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pistache : add initial recipeAyoub Zaki2025-01-151-0/+39
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pugixml: upgrade 1.14 -> 1.15Wang Mingyu2025-01-141-2/+2
| | | | | | | | | | | | | | | | | | | | | License-Update: Copyright year updated to 2025. Changelog: ========== - Many xml_attribute:: and xml_node:: functions now transparently support std::string_view and std::string when C++17 support is detected. - Improve pkg-config file generation for NixOS - PUGIXML_BUILD_APPLE_FRAMEWORK CMake option can be used to build pugixml as .xcframework - PUGIXML_INSTALL CMake option can be used to disable installation targets - Fix clang/gcc warnings -Wzero-as-null-pointer-constant, -Wuseless-cast, -Wshorten-64-to-32 - Fix unreferenced function warnings in PUGIXML_NO_STL configuration - Fix CMake 3.31 deprecation warnings - Stop using deprecated throw() when noexcept is available Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdbi-perl: upgrade 1.644 -> 1.646Wang Mingyu2025-01-142-33/+3
| | | | | | | | | | | | | | | | | | | | | 0001-Fix-building-on-Fedora-40-with-GCC-14.2.1.patch removed since it's included in 1.646 License-Update: Copyright year updated to 2025 Changelog: =========== * Remove "experimental" tag from statistics_info () * RT tickets moved to github issues * Fix install issue * Move developer tests to xt/ * Make Changes match CPAN::Changes::Spec and regen DBI::Changes from that * Fixes for modern gcc i.c.w. recent perl * Small code & doc cleanups for recent perl * See TODO in `perldoc DBI` to see where you can help with documentation Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libconfig-general-perl: upgrade 2.65 -> 2.67Wang Mingyu2025-01-141-1/+1
| | | | | | | | | | | | | Changelog: ========== - fixing tests (add missing file to dist tarball) - created gitignore file. - add support to quote values containing whitespace using the new flag -AlwaysQuoteOutput. - fix exporter setup, use "our" where appropriate. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* doxygen: upgrade 1.13.1 -> 1.13.2Wang Mingyu2025-01-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Bug fixes --------- - issue #8803 Template class with the same name as existing class gets in the same output file - issue #11308 SVG dot graphs have added padding - issue #11309 Markdown blockquotes with lists do not render as expected - issue #11313 Template class specializations are ignored, which leads to invalid links - issue #11314 "Copy to clipboard" button broken with XHTML - issue #11320 Documentation fails to build (it freezes, no crash) - issue #11322 C++ 20 Modules: Links to global functions, links to modules - issue #11326 Missing description for a class member of a using-declared class - issue #11330 Snippet trimleft option does not handle newlines well - issue #11333 rebuilding fedora ignition-transport causes abort in isExplicitPage with doxygen 1.13.1 - String representation at "show configuration" in doxywizard - Support for Plus sign code fence directives - GitHub flavor Improved user feedback and documentation ---------------------------------------- - Adding debug and version information to doxycommentview Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.1.20250105.0 -> 6.1.20250112.0Wang Mingyu2025-01-141-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lapack: fix TMPDIR reference in do_package_qaZhang Peng2025-01-131-0/+31
| | | | | | | | | | | | | | | | | | | | | | When building the `lapack` package, the following QA error occurs: "File /usr/lib64/libblas.so.3.12.0 in package lapack contains reference to TMPDIR [buildpaths]" The issue arises because the `xerbla.o` object file embeds the absolute host path of `xerbla.f`. This occurs during compilation, where the build command in `build.make` (generated by CMake) specifies: `gfortran -c <absolute path>/xerbla.f -o`. As a result, the absolute path is included in `xerbla.o`. Unfortunately, `gfortran` does not support flags like `-fdebug-prefix-map` or `-ffile-prefix-map` to remove such paths. To resolve this, the fix involves replacing the absolute path of `xerbla.f` in the generated `build.make` file with a relative path before the compilation step. This ensures that the resulting `xerbla.o` does not contain any references to TMPDIR, passing the `do_package_qa` check. For ptest code, the solution is to replace `${WORKDIR}` with `../../..` in the generated `build.make` files located in the TESTING directory. Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>