aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe
AgeCommit message (Collapse)Author
5 hoursspdlog=v1.14.1Martin Jansa
Fixed compatibility issue between c++17 and c++11 (#3081). Fixed creating folders under windows when full path with drive letter is given (#3079). Added mdc sample. Note: mdc is not supported in async loggers. * v1.14.0 introduced in: https://git.openembedded.org/meta-openembedded/commit/?id=a40b1fa392d20ebb29e38374d0f7ce1494bb797f causes: undefined reference to `spdlog::get(char const*)' in various consumers, more details in: https://github.com/gabime/spdlog/issues/3081 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
29 hoursnodejs-oe-cache: fix offline install of dependenciesMartin Hundebøll
Apparently, npm has changed its request accept header, so that cache lookup misses. This causes an ENOTCACHED error when doing the offline install in do_compile() from npm.bbclass. Fix it by updating the fake cache entry to match the newest behaviour from npm. Note that npm doesn't agree with itself, as it still uses the previous header value when doing `npm cache add <pkg>`, but the new value when doing `npm install <pkg>`. Bug submitted upstream: https://github.com/npm/cli/issues/7465 Signed-off-by: Martin Hundebøll <martin@geanix.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
29 hoursfwupd: fix uefi capsule update build errorMikko Rapeli
plugin_uefi_capsule_splash does not provide "enabled" or "disabled" options but only basic bool "true" and "false". Fixes do_configure() failure with PACKAGECONFIG:append = " plugin_tpm plugin_uefi_pk plugin_uefi_capsule ": | ../fwupd-1.9.18/meson.build:1:0: ERROR: Value disabled is not boolean (true or false). Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2 daysuutils-coreutils: upgrade 0.0.25 -> 0.0.26Etienne Cordonnier
See https://github.com/uutils/coreutils/releases/tag/0.0.26 Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2 daysuftrace: upgrade 0.15.2 -> 0.16Wang Mingyu
Changelog: ========== - build: Add -mno-sse to fix i386 build - build: Fix build failure on RHEL 7 - mcount: Fix a compiler warning on PAGE_SIZE - fix: #1858 by changing the wrong logic in update_dbg_info - ci: Fix ci warning on GitHub Acitons - slide: Add tensorflow and keras tracing example - python: Fix GC isn't working correctly. - replay: Support a new argument format for octal values - build: Fix compiler warnings - Fix Python SyntaxWarning on invalid escape sequence in the tests scripts - utils: Lower the debug level after dwfl_module_getdwarf - wrap: Do not print "dlopen is called for '(null)'" - Support standard deviation(STDDEV) in report output - dwarf: Close file descriptors in setup_dwarf_info() Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2 daysspdlog: upgrade 1.13.0 -> 1.14.0Wang Mingyu
Changelog: =========== -Updated bundled fmt to version 10.2.1. -Mapped Diagnostic Context (MDC) support -MDC is a simple map of key->string values stored in thread local storage whose content will be printed by the loggers. -spdlog::mdc::put("mdc_key_1", "mdc_value_1"); -spdlog::info("Hello, {}", "World!"); // => [2024-04-26 02:08:05.040] [info] [mdc_key_1:mdc_value_1] Hello, World! -Add milliseconds support to stopwatch -Add std::string_view overloads for logger accessor -Make async_logger::flush() synchronous - wait for the flush operation to complete before returning -Use _stat() on Windows to be more UTF8 friendly -Add details about how compile time macros work -Fix typos found by codespell -Expose the flusher thread object to user in order to allow setting of thread name and thread affinity when needed -Fix the problem of compilation failure under MINGW -Add missing include in circular_q.h -Don't remove previous defaullt logger from registry in set_default_logger. -Remove the legacy AnalyzeTemporaryDtors option from .clang-tidy. -Updated INSTALL.md has to better reflect compiler info -Fixed README.md example Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2 daysser2net: upgrade 4.6.1 -> 4.6.2Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2 daysqcbor: upgrade 1.2 -> 1.3Wang Mingyu
License-Update: Update the LICENSE file from README.md to LICENSE Changelog: ========== - Floating-point conversion between half, single and double-precision for subnormal values and NaN payloads is completed. These are relatively obscure unused parts of IEEE754 floats. - QCBOREncode_GetErrorState() can now be called after QCBOREncode_Finish() and it will always return the correct error. - User-defined error codes are now supported. The error state can be set with the new function QCBORDecode_SetError(). - Fixed a rare condition where QCBORDecode_ VGetNext() would not set the Item.uDataType to QCBOR_TYPE_NONE on error. - Function naming changed to better avoid name collision. This includes internal functions. This is to compensate for C not having name spaces like C++. - Documentation correctly describes mixing of traversal cursor used by GetNext with fetch by label in entered maps - Some increase in test coverage - A bunch of "TODO:" items were addressed. Most result in no change to the code, just changes to documentation and test coverage. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2 dayslibmxml: upgrade 3.3.1 -> 4.0.3Wang Mingyu
Changelog: ============ -Now default the DSOFLAGS value to LDFLAGS in the configure script -Now install the man page as "mxml4" to allow parallel installation of Mini-XML 4.x and 3.x -Added MXML_ALLOC_SIZE define to control the allocation increment for attributes and indices -Fixed mxmlSetDeclarationf implementation -Fixed an issue with GNU make and parallel builds -Fixed missing "docdir" definition in makefile -Fixed missing CPPFLAGS, OPTIM, and WARNINGS in CFLAGS in makefile. -Fixed configure script issues. -Now require C99 support -Now install as "libmxml4" to support installing both Mini-XML 3.x and 4.x at the same time (use --disable-libmxml4-prefix configure option to disable) -Added mxmlLoadIO and mxmlSaveIO functions to load and save XML via callbacks -Added new MXML_TYPE_CDATA, MXML_TYPE_COMMENT, MXML_TYPE_DECLARATION, and MXML_TYPE_DIRECTIVE node types -Added mxmlLoadFilename and mxmlSaveFilename functions -Added AFL fuzzing support -Added mxmlOptions APIs to replace the long list of callbacks and options for each of the load and save functions -Added string copy/free callbacks to support alternate memory management of strings. -Renamed mxml_type_t enumerations to MXML_TYPE_xxx -Updated APIs to use bool type instead of an int representing a boolean value. -Updated the SAX callback to return a bool value to control processing -Updated the load and save callbacks to include a context pointer -Fixed some warnings -Fixed real number support in non-English locales -Updated the autoconf config.guess and config.sub scripts to support cross compilation for newer platforms Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2 daysiniparser: upgrade 4.1 -> 4.2Wang Mingyu
License-Update: Copyright year updated to 2024. CVE-2023-33461.patch removed since it's included in 4.2 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
4 daysserial: Fix empty package and use shared lib instead of static lib.magicWenli
see also: https://docs.yoctoproject.org/pipermail/yocto/2015-January/022921.html Signed-off-by: Khem Raj <raj.khem@gmail.com>
4 daysrenderdoc: remove vim-native DEPENDSRoss Burton
This need for this was removed in 2016[1] [1] https://github.com/baldurk/renderdoc/commit/fff93a4bcc036f8288fd31dcdd1209fea36b9b58 Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
5 daysprocmail: Update status for CVE-1999-0475Ninette Adhikari
Current version 3.22 is not affected by the issue. Affected versions: Up to (excl.) 3.2.1 Signed-off-by: Ninette Adhikari <ninette@thehoodiefirm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
5 daysst: Update status for CVE-2017-16224Ninette Adhikari
The recipe used in the meta-openembedded is a different st package compared to the one which has the CVE issue. Package used in meta-embedded: https://st.suckless.org/ Package with CVE issue: https://www.npmjs.com/package/st No action required. Signed-off-by: Ninette Adhikari <ninette@thehoodiefirm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
5 daysreproducibility: move repro excludes from AB config.json to meta-oeYoann Congal
For now, the known non-reproducible packages list is stored inside the autobuilder config.json file. This is not ideal. Let's move this list into each layers of meta-openembedded. These lists can be used with, in local.conf: include conf/include/non-repro-meta-oe.inc OEQA_REPRODUCIBLE_EXCLUDED_PACKAGES = "${KNOWN_NON_REPRO_META_OE}" Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Acked-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
5 daysfwupd: Upgrade to 1.9.18 releaseKhem Raj
Drop patch which is already upstreamed in this release Signed-off-by: Khem Raj <raj.khem@gmail.com>
5 daysnodejs: upgrade 20.11.1 -> 20.12.2Archana Polampalli
License-Update: Copyright year updated zlib version updated GN files License update https://github.com/nodejs/node/commit/b5bc597871ca701bab750c46d31ed626decd7f89 https://github.com/nodejs/node/commit/c8233912e9fd7464898b549d6762130722bf0bf4 Changelog: https://github.com/nodejs/node/releases/tag/v20.12.2 https://github.com/nodejs/node/releases/tag/v20.12.1 https://github.com/nodejs/node/releases/tag/v20.12.0 Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
6 dayschore(sdbus-c++): upgrade to 2.0.0 releaseStanislav Angelovic
Signed-off-by: Khem Raj <raj.khem@gmail.com>
6 dayslayers: Add styhead to compatible release seriesKhem Raj
styhead is codename for upcoming 5.1 release Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 dayssoci: update build optionsPeter Marko
* make it possible to configure build without boost * build tests only when requested * disable build of IBM proprietary DB2 which does not have recipe (this creates some cmake warnings if enabled without dependency) * EXTRA_OECONF is empty with cmake build * remove SOCI_LIBDIR which was removed in upgrade to v4.0.2 * use WITH_* instedad of SOCI_* as SOCI defines still search for dependencies unnecessarily and WITH define automatically enables SOCI define, too Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 daysAdd class for appending dm-verity hash data to block device imagesJan Luebbe
Add support to generate a dm-verity image and the parameters required to assemble the corresponding table for the device-mapper driver. The latter will be stored in the file ${DEPLOY_DIR_IMAGE}/<IMAGE_LINK_NAME>.verity-params. Note that in the resulting image the hash tree data is appended to the contents of the original image without an explicit superblock to keep things simple and compact. The above mentioned parameter file can be sourced by a shell to finally create the desired blockdevice via "dmsetup" (found in meta-oe's recipe "libdevmapper"), e.g. . <IMAGE_LINK_NAME>.verity-params dmsetup create <dm_dev_name> --readonly --table "0 $VERITY_DATA_SECTORS verity \ 1 <dev> <hash_dev> \ $VERITY_DATA_BLOCK_SIZE $VERITY_HASH_BLOCK_SIZE \ $VERITY_DATA_BLOCKS $VERITY_DATA_BLOCKS \ $VERITY_HASH_ALGORITHM $VERITY_ROOT_HASH $VERITY_SALT \ 1 ignore_zero_blocks" As the hash tree data is found at the end of the image, <dev> and <hash_dev> should be the same blockdevice in the command shown above while <dm_dev_name> is the name of the to be created dm-verity-device. The root hash is calculated using a salt to make attacks more difficult. Thus, please grant each image recipe its own salt which could be generated e.g. via dd if=/dev/random bs=1k count=1 | sha256sum and assign it to the parameter VERITY_SALT. Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de> Signed-off-by: Marco Felsch <m.felsch@pengutronix.de> Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 dayssanlock: upgrade 3.9.1 -> 3.9.2Wang Mingyu
0001-include-libgen.h-for-basename.patch removed since it's included in 3.9.2 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 dayspython3-pycups: upgrade 2.0.1 -> 2.0.4Wang Mingyu
Changelog: removes install_requires from setup.py, which is used for generating OS requirements. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 daysmpich: upgrade 4.2.0 -> 4.2.1Wang Mingyu
Changelog: ============= -Disable flat_namespace to build libmpifort on macOS by default -Prefix warning messages with "MPICH" -Add --disable-doc configure option -Fix support for building MPICH Fortran support with Xcode 15 on macOS -Fix bug in MPI_WIN_SHARED_QUERY when window is not shared -Fix bug in ch4/ofi gpu pipelining -Fixes for Intel GPU support -Fix memory leak in ch4/shm collectives -Fix bug in MPI_COMM_SPLIT with intercommunicators and non-zero root -Fix bug in DAOS ROMIO driver -Fix bug in cycling error code array -Return an error if there is failure to create a datatype in mpi_f08 module for noncontiguous user data -Return an error when shared memory segment creation fails Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 daysgensio: upgrade 2.8.3 -> 2.8.4Wang Mingyu
Changelog: ========== -github: Don't run oomtest9 and oomtest11 on windows -sound: Fix a possible multiply overflow -gtlsshd: Don't use alloc_sprintf() to duplicate a string Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 daysasio: upgrade 1.28.0 -> 1.30.2Wang Mingyu
License-Update: Copyright year updated to 2024. 0001-Add-the-pkgconfigdir-location.patch included in 1.30.2 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-20ydotool: Do not package systemd unit files on non-systemd distrosKhem Raj
Fixes ERROR: ydotool-1.0.4+git-r0 do_package: QA Issue: ydotool: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/systemd /usr/lib/systemd/user /usr/lib/systemd/user/ydotoold.service Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-19sdbus-c++: Fix build and upgrade to latest gitKhem Raj
Fix ptest run while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-19yajl: set correct homepageRoss Burton
Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17xmlsec1: upgrade 1.3.3 -> 1.3.4Wang Mingyu
Changelog: ============ -(xmlsec-openssl) Support cert dates before unix epoch start. -(xmlsec-openssl) Fix build for LibreSSL or BoringSSL. -(xmlsec-nss) Ensure NSS algorithms are initialized. -Several other small fixes Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17webkitgtk3: upgrade 2.44.0 -> 2.44.1Wang Mingyu
2922af379dc70b4b1a63b01d67179eb431f03ac4.patch removed since it's included in 2.44.1 Changelog: ========== - Fix handling of lifetime of web view child dialogs in GTK4. - Do not schedule layer flushes when drawing area size is empty. - Fix videos with alpha when using the DMA-BUF sink. - Fix the build with USE_GBM=OFF. - Fix the build in 32bit platforms - Fix several crashes and rendering issues. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17toybox: upgrade 0.8.10 -> 0.8.11Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17tcsh: upgrade 6.24.11 -> 6.24.12Wang Mingyu
Changelog: ========== -Remove kinetic and trusty -Fix history merging Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17st: upgrade 0.9.1 -> 0.9.2Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17opensc: upgrade 0.25.0 -> 0.25.1Wang Mingyu
Changelog: ============ * Add missing file to dist tarball to build documentation * Fix RSA decryption with PKCS#1 v1.5 padding * Fix crash when app is not set Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17makedumpfile: upgrade 1.7.4 -> 1.7.5Wang Mingyu
0001-makedumpfile-replace-hardcode-CFLAGS.patch refreshed for 1.7.5 Changelog: ============ -Support for kernels up to v6.8 (x86_64) -Support for printk caller_id by --dump-dmesg option -ppc64: get vmalloc start address from vmcoreinfo -ppc64: read cur_mmu_type from vmcoreinfo -add PRINTK_CALLER id support to --dump-dmesg option -s390x: uncouple virtual and physical address spaces -s390x: fix virtual vs physical address confusion Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17libopus: upgrade 1.5.1 -> 1.5.2Wang Mingyu
Changelog: fixes a misalignment issue in the AVX2 code that could cause crashes under Windows. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17libbpf: upgrade 1.3.0 -> 1.4.0Wang Mingyu
Changelog: https://github.com/libbpf/libbpf/releases/tag/v1.4.0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17hwdata: upgrade 0.380 -> 0.381Wang Mingyu
Changelog: ========== Update pci, usb and vendor ids Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17gtkwave: upgrade 3.3.117 -> 3.3.119Wang Mingyu
Changelog: =========== -Fix stems reader processing code broken in 3.3.114. -Update xml2stems to handle newer "loc" vs "fl" xml tags. -Change preg_regex_c_1 decl to use regex_t* as datatype. -Move gtkwave.appdata.xml to -io.github.gtkwave.GTKWave.metainfo.xml. -Fixed popen security advisories: -Fixed FST security advisories: -Fixed evcd2vcd security advisories: -Fixed VCD security advisories: -Fixed VZT security advisories: -Fixed LXT2 security advisories: -Remove FST_DO_MISALIGNED_OPS. -Update lz4 to current version from github. -Change LZ4_compress to LZ4_compress_default. -Update libghw.c/.h to latest upstream version. -Fix for -Wsign-compare in fstapi.c. -Security fixes for GHW. -Fix left shift of a negative number warning in fstapi.c. -Fix ctrl-A behavior for SST filter entry. -Fix for bad shmat return value in main.c. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17cryptsetup: upgrade 2.7.1 -> 2.7.2Wang Mingyu
Changelog: ========== * Fix activation of OPAL-only encrypted LUKS device with tokens. * Fix formatting of OPAL devices with 4096-byte sector size. * Fix incorrect OPAL locking range alignment calculation if used over an unaligned device partition. * Add --hw-opal-factory-reset option description to the manual page. * Do not check the passphrase quality for OPAL Admin PIN, as this passphrase already exists. * Update license for FAQ document to CC BY-SA 4.0. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17adw-gtk3: upgrade 5.2 -> 5.3Wang Mingyu
Changelog: =========== -Add gtk4 theme workflow -Add create release workflow -Fix repo name -Increase padding of switches -Sidebar border colors -Add Debian repo info -Update update-gtk4-theme.yml -Update gtk4 theme Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17abseil-cpp: upgrade 20240116.1 -> 20240116.2Wang Mingyu
Changelog: =========== -Added absl::NoDestructor<T> to simplify defining static types that do not need to be destructed upon program exit. -Added configurable verbose logging (also known as VLOG). -Added absl::Overload(), which returns a functor that provides overloads based on the functors passed to it. Note that this functionality requires C++17 or newer. -Bzlmod is now officially supported (previously it was supported by the community). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17libcbor: use shared librariesDan McGregor
libfido2 requires cbor be position independent. When PIE's the default this isn't a problem, but not all build configurations do that. Instead of relying on that, just make shared libraries. Signed-off-by: Dan McGregor <dan.mcgregor@usask.ca> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17libtorrent-rasterbar: fix CVE mappingBeniamin Sandu
Set CVE_PRODUCT for this recipe to fix the mapping, as it was checking against the wrong recipe before. Log from cve_check after change: NOTE: libtorrent-rasterbar-2.0.10 is not vulnerable to CVE-2008-0646 NOTE: libtorrent-rasterbar-2.0.10 is not vulnerable to CVE-2009-1760 NOTE: libtorrent-rasterbar-2.0.10 is not vulnerable to CVE-2016-5301 NOTE: libtorrent-rasterbar-2.0.10 is not vulnerable to CVE-2016-7164 NOTE: libtorrent-rasterbar-2.0.10 is not vulnerable to CVE-2017-9847 Signed-off-by: Beniamin Sandu <beniaminsandu@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-17libtorrent: remove incorrect CVE mappingBeniamin Sandu
The CVE_PRODUCT variable is assigned automatically to BPN. Unset it for this recipe so the CVEs can be checked against the correct recipe. Signed-off-by: Beniamin Sandu <beniaminsandu@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-16libjxl: drop -mfp16-format=ieeeMartin Jansa
* causes qemuarm failure as shown in: http://errors.yoctoproject.org/Errors/Details/761504/ and reported in: https://lists.openembedded.org/g/openembedded-devel/message/109812 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-16ydotool: Add new packageAndre Paiusco
Add ydotool, generic cli automation tool for whatever input (keyboard, mouse, etc.) Reviewed-by: Khem Raj <raj.khem@gmail.com> Reviewed-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Andre Paiusco <andre.paiusco@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2024-04-16avro: extend avro-c++ to native and nativesdkRui Costa
- fix HOMEPAGE for both avro recipes - fix cmake install paths in patch
2024-04-15Revert "libtorrent: remove CVE mention"Khem Raj
This reverts commit 0597c931ffbadf2a2242d8ed9cccb8567953d489.