summaryrefslogtreecommitdiffstats
path: root/meta-oe
Commit message (Collapse)AuthorAgeFilesLines
...
* libmanette: upgrade 0.2.6 -> 0.2.7Wang Mingyu2024-02-191-1/+1
| | | | | | | | | | | | | | | | Changelog: ========== * Allow building as a static library * ManetteMappingManager: - Strip leading and trailing spaces from mappings * ManetteMonitor - Always use file backend in Flatpak - Skip non-evdev devices - Fix object construction * Various cleanups Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libei: upgrade 1.2.0 -> 1.2.1Wang Mingyu2024-02-191-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* isomd5sum: upgrade 1.2.3 -> 1.2.4Wang Mingyu2024-02-191-1/+1
| | | | | | | | | | | | | | | Changelog: =========== -Add support for riscv64 -workflows: Update to use actions/checkout -Fix checksum failure with small isos -test: Update testing to include small iso and larger iso -Add a GitHub Action to run tests -Add mips64 -testpyisomd5sum.py: Support genisoimage, Python 2 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* btop: upgrade 1.3.0 -> 1.3.2Wang Mingyu2024-02-191-1/+1
| | | | | | | | | | | | | | | | | | | | Changelog: ========= -fix: Can't detect librocm 6.0.x -GPU: Added support for dynamic loading of ROCm v6 libraries -Increase max network interface name to 15 -Fix OpenBSD UTF-8 locale detection -Add hot-reloading of config file with CTRL+R or SIGUSR2 signal -Add battery power draw for linux and freebsd -Fix crash caused by string exception when cpu clock is exactly between 999.5 and 999.9 Mhz -Write newline at end of config file -Add theme based on Everforest Dark Medium palette -fix: don't mangle memory for zombie processes -Share common code from collect -Fixed incorrect used and available memory for OSX Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* iwd: update 2.13 -> 2.14Markus Volk2024-02-191-1/+1
| | | | | | | | | ver 2.14: Fix issue with accepting PTK 4/4 after receiving PTK 2/4. Fix issue with frequency limit for quick scans. Fix issue with limiting DHCPv4 attempts. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* influxdb: Add missing group to static idYoann Congal2024-02-172-2/+3
| | | | | | | | | | | The influxdb group is used by the influxdb recipe and created by default by the useradd command. Also, align static passwd file to the USERADD_PARAM in the influxdb recipe and add the missing newline at end of file. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* influxdb: Fix /etc files ownerYoann Congal2024-02-171-1/+1
| | | | | | | "chown root.influxdb" is a typo of "chown root:influxdb" Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtinyxml2: allow to build both shared and static librariesFathi Boudra2024-02-171-1/+4
| | | | | | | | E.g. if we want to build uuu statically, libtinyxml2 static library is missing as it builds only the shared library by default. Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtinyxml2: fix the homepage URLFathi Boudra2024-02-171-1/+1
| | | | | Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libqmi: correct PVPeter Marko2024-02-151-0/+0
| | | | | | | | Real tag is 1.35.2-dev with description "Unstable release 1.35.2-dev". https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/tags/1.35.2-dev Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libusbgx: uprev to the latest commitMax Krummenacher2024-02-152-18/+18
| | | | | | | | | | | | | | | | | | Uprev libusbgx to ec0b01c to get following fixes: ``` ec0b01c Merge pull request #83 from mgrzeschik/uac2-controls cbf1750 uac2: add additional configuration controls 81d7c05 load libcomposite kernel module caad244 Fix: Memory leak config label 51abbfd Automake: fix distclean of tests 3cc5af7 Added printer function header to installed headers adc45af Added missing extern C closing brace ``` Refresh 0001-fix-stack-buffer-overflow-in-usbg_f_foo_attr_val-pro.patch. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libusbgx: fix usbgx.service stop / restartMax Krummenacher2024-02-153-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | On start the usbgx service configures the usb gadget. However if one stops the service nothing is done, a subsequent start then tries to configure the gadget again and fails. `systemctl restart` is implemented by doing a stop followed by a start and thus is also affected. Doing a start/stop/start results with the following reported in status: | systemd[1]: Starting Load USB gadget schemas... | gadget-start[801]: usbg_create_gadget() duplicate gadget name | gadget-start[801]: | gadget-start[801]: Error on import gadget | gadget-start[801]: Error: USBG_ERROR_EXIST : Already exist | gadget-start[812]: ls: write error: Device or resource busy The run-postinsts service does execute a restart for each package which uses the systemd class which creates a race condition that the usbgx service is already started when run-postinsts restarts usbgx and creates the above error output. Fix that by unconfiguring the usb gadget on stop. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* plymouth: uprev to 24.004.60Ming Liu2024-02-1511-187/+383
| | | | | | | | | | | | | The changes include: - Change to use meson buildsystem. - Fix build issues in OE. - Move patches from files to plymouth subdirectory. - Make themes build/installation optional, since a user might not want all themes to be installed to rootfs, now he can set PLYMOUTH_THEMES to chose the themes. Signed-off-by: Ming Liu <liu.ming50@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nvme-cli: upgrade 2.7.1 -> 2.8Christophe Vu-Brugier2024-02-141-1/+1
| | | | | Signed-off-by: Christophe Vu-Brugier <christophe.vu-brugier@seagate.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libnvme: upgrade 1.7.1 -> 1.8Christophe Vu-Brugier2024-02-141-1/+1
| | | | | Signed-off-by: Christophe Vu-Brugier <christophe.vu-brugier@seagate.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencv: Fix python3 package generationMark Hatle2024-02-141-1/+1
| | | | | | | | | | | | | | | | | Resolves an issue where python3 package generation was failing to configure. -- Cannot probe for Python/Numpy support (because we are cross-compiling OpenCV) -- If you want to enable Python/Numpy support, set the following variables: -- PYTHON2_INCLUDE_PATH -- PYTHON2_LIBRARIES (optional on Unix-like systems) -- PYTHON2_NUMPY_INCLUDE_DIRS -- PYTHON3_INCLUDE_PATH -- PYTHON3_LIBRARIES (optional on Unix-like systems) -- PYTHON3_NUMPY_INCLUDE_DIRS Signed-off-by: Mark Hatle <mark.hatle@amd.com> Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: update to latest v20 version 20.11.0Archana Polampalli2024-02-143-4/+2
| | | | | | | | | | | | | | | | | | | | | License-Update: update c-ares to 1.20.0 [1] Copyright update [2] Removed below patches as these are availbe in 20.11.0 0001-build-fix-build-with-Python-3.12.patch [3] 0001-gyp-resolve-python-3.12-issues.patch [4] Changelog: https://github.com/nodejs/node/releases/tag/v20.11.0 [1] https://github.com/nodejs/node/commit/b705e19a95b5fc5a2edc9fc11a7649d6eb32d70b [2] https://github.com/nodejs/node/commit/347e1dd06a5f927d9fd64ce72d776c56d5101910 [3] https://github.com/nodejs/node/commit/0a5e9c12cf961a56bd63005974b953bbc0bc62a7 [4] https://github.com/nodejs/node/commit/68ec1e5eeb4ff984868c625f0ce808210169360d Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hwdata: update 0.378 -> 0.379Markus Volk2024-02-131-1/+1
| | | | | Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* signing.bbclass: make it work with eliptic curve keysSascha Hauer2024-02-131-4/+4
| | | | | | | | | "openssl rsa" works with RSA keys only. Use "openssl pkey" instead which is a frontend that picks the right operation automatically and works with RSA keys, eliptic curve keys and also DSA keys. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* switchtec-user: upgrade 4.1 -> 4.2Christophe Vu-Brugier2024-02-122-33/+3
| | | | | Signed-off-by: Christophe Vu-Brugier <christophe.vu-brugier@seagate.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libnfs: update 5.0.2 -> 5.0.3Markus Volk2024-02-123-7/+52
| | | | | | | | | Add cmake checks for sys/uio.h Fixes build issues with latest compiler e.g. gcc-14 Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libosinfo: use hwdata for ids filesMarkus Volk2024-02-121-3/+3
| | | | | Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* flatpak: remove unneeded RDEPENDSMarkus Volk2024-02-121-2/+0
| | | | | | | | | | | The build has been modified to use internal copies of bubblewrap and xdg-dbus-proxy. https://git.openembedded.org/meta-openembedded/commit/?h=master-next&id=9c68079a26b64b836bc6a28e422a1099f48726d2 We can additionally remove the RDEPENDS for these tools, since flatpak now creates its own copies of the files in /usr/libexec. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* c-ares: Upgrade 1.24.0 -> 1.26.0Alex Kiernan2024-02-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes 1.26.0: Brad House (14): update release notes format update format slightly RELEASE-NOTES -> RELEASE-NOTES.md test: fix outdated license headers no reason to include sys/random.h all the time (#684) Do not sanity check RR Name vs Question (#685) autotools: fix building for 32bit windows due to stdcall symbol mangling (#689) man ares_fds(3): mark as deprecated and add explanation (#691) fix doxygen typo Autotools allow make to override CFLAGS/CPPFLAGS/CXXFLAGS (#695) Event Subsystem: No longer require integrators to have their own (#696) adig: Differentiate between internal and server error Release prep for c-ares 1.26.0 (#698) clusterfuzz: enforce maximum DNS packet size due to long parser time Erik Lax (1): Added flags to are_dns_parse to force RAW packet parsing (#693) Gregor Jasny (1): cmake: improve some include related code (#680) Changes 1.25.0: Brad House (22): fix test building with symbol hiding ci: add test case for building with hidden symbol visibility ci: disable static for symbol hiding tests getrandom() may require sys/random.h on some systems fix support with older google test versions CI: Add Alpine Linux and old Ubuntu (#667) Fix bad stub for ares__iface_ips_enumerate() ahost should use ares_getaddrinfo() these days (#669) Connection failure should increment server failure count first sonarcloud: const clang-format ares_strsplit() rewrite as wrapper around ares__buf_split() clang-format Autotools warning fixes (#671) Old MacOS SDKs require you include sys/socket.h before net/if.h (#673) docs: host -> ip Autotools: rework to simplify and fix recent issues (#674) set winver consistently across build systems autotools: update logic for building tests to provide more feedback OSSFuzz: it assumes autotools builds a static library by default, which means the old autotools must have done that even though there were comments saying it wasn't. Disable static by default on Windows however since it can't build both simultaneously. tests: replace google DNS with CloudFlare for reverse lookups as google's servers stopped responding properly 1.25.0 release prep (#676) Gregor Jasny (1): Fix minor warnings and documentation typos (#666) Martin Chang (1): Use SOCK_DNS extension on socket on OpenBSD (#659) Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nanopb-runtime: Enable shared libraryWilliam A. Kennington III2024-02-101-0/+1
| | | | | | | | Some users would like to be able to share library code between multiple applications without embedding a static copy. Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nanopb: Split into 2 packagesWilliam A. Kennington III2024-02-105-29/+60
| | | | | | | | | | | This makes it possible to avoid building components which are not used in the native or runtime tooling. Most users of nanopb just want to build `nanopb-generator-native` and `nanopb-runtime` and not the other two combinations as they are building software for their target leveraging nanopb. Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nanopb: Update 0.4.7 -> 0.4.8William A. Kennington III2024-02-103-100/+29
| | | | | | | | | | Uses the new nanopb_PYTHON_INSTDIR_OVERRIDE to drop the previous patch. Maintains compatability with 0.4.7 and older by adding symlinks to the old header paths. Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* kernel-selftest: no longer skip ldflags QAThomas Perrot2024-02-101-2/+2
| | | | | | | Because there is no longer the error. Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencv: upgrade 4.8.0 -> 4.9.0Beniamin Sandu2024-02-102-217/+3
| | | | | | | | | | | Full changelogs: https://github.com/opencv/opencv/wiki/ChangeLog#version481 https://github.com/opencv/opencv/wiki/ChangeLog#version490 Also drop python2 support. Signed-off-by: Beniamin Sandu <beniaminsandu@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* etcd-cpp-apiv3: no longer skip ldflags QAThomas Perrot2024-02-101-1/+0
| | | | | | | Because there is no longer the error. Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mariadb: Move useradd handling in target side of the recipeYoann Congal2024-02-092-5/+7
| | | | | | | | | | | | Having useradd class inherited for the -native recipe makes no sense and emit this kind of warning during reproducibility test: stdio: WARNING: QA Issue: mariadb-native: native/nativesdk class is not inherited last, this can result in unexpected behaviour. Classes inherited after native/nativesdk: useradd-staticids.bbclass [native-last] So, move the useradd inherit and associated variables to the target side of the recipe. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: Set CVE_PRODUCT to "node.js"virendra thakur2024-02-091-0/+2
| | | | | | | Set CVE_PRODUCT to 'node.js' for nodjs recipe Signed-off-by: virendra thakur <virendrak@kpit.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nana: upgrade to latest commit from githubMartin Jansa2024-02-097-264/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nana 2.5 release is from 2005 and since then the development was moved from savannah to github, see: https://savannah.gnu.org/projects/nana https://savannah.gnu.org/news/?id=8130 * the latest commit on https://github.com/pjmaker/nana was also 10 years ago now, so don't expect nana-3.0 release any time soon, but the commits after the 2.5 help with some autotools issues, so it's worth taking them * 0001-Include-stdlib.h-for-exit-and-abort-prototypes.patch was resolved in: https://github.com/pjmaker/nana/commit/bed0de4e64250ad6aea810f8e5521e23b26e655b#diff-44df4b12f1a47b20b5e0e107fad4f7692a17a2861337fb6e984db755feb912b6 * sent as RFC, because I've only build tested this, but only nana-src has fewer files (possibly due to B != S) and nana.1 man page is still installed as before (hopefully without random build failures now) buildhistory-diff -p buildhistory 1b5542b7fe608fc952c94bea65103883be1b9f32 master packages/core2-64-oe-linux/nana/nana-dbg: PKGV changed from 2.5 [default] to 2.5+git0+6d70617db8 packages/core2-64-oe-linux/nana/nana-dbg: PKGR changed from r0.0 to r0.11 packages/core2-64-oe-linux/nana/nana-dev: PKGV changed from 2.5 [default] to 2.5+git0+6d70617db8 packages/core2-64-oe-linux/nana/nana-dev: PKGR changed from r0.0 to r0.11 packages/core2-64-oe-linux/nana/nana-doc: PKGV changed from 2.5 [default] to 2.5+git0+6d70617db8 packages/core2-64-oe-linux/nana/nana-doc: PKGR changed from r0.0 to r0.11 packages/core2-64-oe-linux/nana/nana-locale: PKGV changed from 2.5 [default] to 2.5+git0+6d70617db8 packages/core2-64-oe-linux/nana/nana-locale: PKGR changed from r0.0 to r0.11 packages/core2-64-oe-linux/nana/nana-src: FILELIST: removed all items "/usr/src/debug/nana/2.5/src/L_buffer.h /usr/src/debug/nana/2.5/src/nana_error.h /usr/src/debug/nana/2.5/src/calls.h /usr/src/debug/nana/2.5/src/L_times.h" packages/core2-64-oe-linux/nana/nana-src: PKGV changed from 2.5 [default] to 2.5+git0+6d70617db8 packages/core2-64-oe-linux/nana/nana-src: PKGR changed from r0.0 to r0.11 packages/core2-64-oe-linux/nana/nana-src: PKGSIZE changed from 9569 to 0 (-100%) packages/core2-64-oe-linux/nana/nana-staticdev: PKGV changed from 2.5 [default] to 2.5+git0+6d70617db8 packages/core2-64-oe-linux/nana/nana-staticdev: PKGR changed from r0.0 to r0.11 packages/core2-64-oe-linux/nana/nana: PKGV changed from 2.5 [default] to 2.5+git0+6d70617db8 packages/core2-64-oe-linux/nana/nana: PKGR changed from r0.0 to r0.11 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcereal: Disable c++11-narrowing-const-reference warning as errorKhem Raj2024-02-091-0/+2
| | | | | | | | | | Clang 18 is fussy about it Fixes unittests/map.hpp:65:25: error: non-constant-expression cannot be narrowed from type 'typename std::enable_if<std::is_integral<char>::value && sizeof(char) == sizeof(char), char>::type' (aka 'char') to 'const signed char' in initializer list [-Wc++11-narrowing-const-reference] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* can-isotp: Update to latest and skip itKhem Raj2024-02-091-2/+2
| | | | | | | Its only needed with kernel < 5.10, in such BSPs it could be over-written in BSP or distro layers. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rtkit: missing files/directories in packageJean-Marc BOUCHE2024-02-091-1/+1
| | | | | | | | | | | | Fix the following error when building the recipe: Files/directories were installed but not shipped in any package: /lib /lib/systemd /lib/systemd/system /lib/systemd/system/rtkit-daemon.service Signed-off-by: Jean-Marc BOUCHE <jean-marc.bouche@foss.st.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* span-lite: upgrade 0.10.3 -> 0.11.0Wang Mingyu2024-02-091-1/+1
| | | | | | | | Changelog: https://github.com/martinmoene/span-lite/releases/tag/v0.11.0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sip: upgrade 6.8.1 -> 6.8.2Wang Mingyu2024-02-091-1/+1
| | | | | | | | | | Changelog: ============= - Added the --deprecations-are-errors command line option to all build tools. - All generated files are UTF-8 encoded. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ser2net: upgrade 4.6.0 -> 4.6.1Wang Mingyu2024-02-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* evemu-tools: use better PVMartin Jansa2024-02-091-1/+1
| | | | | | | | SRCREV = "86a5627dbeac8d9d9bc34326a758d6a477e876e4" is 15 commits after v2.7.0 tag and configure.ac says 2.7.0 as well: https://gitlab.freedesktop.org/libevdev/evemu/-/blob/86a5627dbeac8d9d9bc34326a758d6a477e876e4/configure.ac#L4 Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
* ne10: append +git instead of gitr+Martin Jansa2024-02-091-1/+1
| | | | | | | | * looks like a typo introduced in: https://git.openembedded.org/meta-openembedded/commit/?id=6e431331d18ded23a78e238ed40d03434e7719d9 * use +git as most other recipes are using Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
* gitpkgv.bbclass: adjust the example in comment a bitMartin Jansa2024-02-091-6/+6
| | | | | | | | | | | * the first example isn't very useful anymore since: SRCPV is deferred now from PV to PKGV since: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=a8e7b0f932b9ea69b3a218fca18041676c65aba0 * but keep it in the bbclass in case someone is still using it for whatever reason (the version with tag still makes some sense) Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
* recipes: drop remaining +gitr casesMartin Jansa2024-02-096-6/+6
| | | | | | | | | | | | | : drop 'r' from gitr and ${SRCPV} * +git is preferred over +gitr since 2012: https://lists.openembedded.org/g/openembedded-core/topic/72154716#16837 some recipes still use +gitr, because updating it would cause PV going backwards but without share PRservice the version-going-backwards QA issues are quite common and most people probably cannot depend on always-increasing version number already Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
* recipes: drop ${SRCPV} usageMartin Jansa2024-02-0989-89/+89
| | | | | | | | | | * Drop SRCPV similarly like oe-core did in: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=843f82a246a535c353e08072f252d1dc78217872 * SRCPV is deferred now from PV to PKGV since: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=a8e7b0f932b9ea69b3a218fca18041676c65aba0 Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
* proj: upgrade 9.3.0 -> 9.3.1Clément Péron2024-02-091-1/+1
| | | | | Signed-off-by: Clément Péron <peron.clem@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* proj: extend class to native and nativesdkClément Péron2024-02-091-0/+2
| | | | | Signed-off-by: Clément Péron <peron.clem@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* flatcc: drop 'r' from gitr and ${SRCPV}Martin Jansa2024-02-091-1/+1
| | | | | | | | | | | | | | | | * +git is preferred over +gitr since 2012: https://lists.openembedded.org/g/openembedded-core/topic/72154716#16837 some recipes still use +gitr, because updating it would cause PV going backwards but this recipe was added just recently so adjust that * Drop SRCPV similarly like oe-core did in: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=843f82a246a535c353e08072f252d1dc78217872 * SRCPV is deferred now from PV to PKGV since: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=a8e7b0f932b9ea69b3a218fca18041676c65aba0 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* flatcc: respect baselibMartin Jansa2024-02-091-0/+1
| | | | | | | | | | | | | | * avoid installed-vs-shipped with multilib when baselib is lib32 or lib64 instead of just lib ERROR: QA Issue: lib32-flatcc: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/libflatcc.a /usr/lib/libflatccrt.a Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. lib32-flatcc: 3 installed and not shipped files. [installed-vs-shipped] Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* satyr: upgrade 0.42 -> 0.43Wang Mingyu2024-02-091-1/+1
| | | | | | | | Changelog: Fix test failure when using clang Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sanlock: upgrade 3.9.0 -> 3.9.1Wang Mingyu2024-02-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>