summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* python3-sentry-sdk: update to version 1.40.0Derek Straka2024-02-021-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cbor2: update to version 5.6.1Derek Straka2024-02-021-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymisp: update to version 2.4.184Derek Straka2024-02-021-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-types-setuptools: update to version 69.0.0.20240125Derek Straka2024-02-021-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-dill: update to version 0.3.8Derek Straka2024-02-021-2/+2
| | | | | | | Update license checksum for copyright year modification Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-grpcio: update to version 1.60.1Derek Straka2024-02-021-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-parse: update to version 1.20.1Derek Straka2024-02-021-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pdm: update to version 2.12.3Derek Straka2024-02-021-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-luma-core: update to version 2.4.2Derek Straka2024-02-021-2/+2
| | | | | | | Update license checksum for 2024 and verify MIT license still applies Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* czmq: Fix buildpaths warning.Wang Mingyu2024-02-021-0/+1
| | | | | | | WARNING: czmq-4.2.1-r0 do_package_qa: QA Issue: File /usr/lib64/cmake/czmqTargets.cmake in package libczmq-dev contains reference to TMPDIR [buildpaths] Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* czmq: Fix install conflict when enable multilib.Wang Mingyu2024-02-021-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Error: Transaction test error: file /usr/share/cmake/czmq/czmqConfigVersion.cmake conflicts between attempted installs of lib32-libczmq-dev-4.2.1-r0.armv7ahf_neon and libczmq-dev-4.2.1-r0.cortexa57 file /usr/share/cmake/czmq/czmqTargets-release.cmake conflicts between attempted installs of lib32-libczmq-dev-4.2.1-r0.armv7ahf_neon and libczmq-dev-4.2.1-r0.cortexa57 file /usr/share/cmake/czmq/czmqTargets.cmake conflicts between attempted installs of lib32-libczmq-dev-4.2.1-r0.armv7ahf_neon and libczmq-dev-4.2.1-r0.cortexa57 The differences of czmqConfigVersion.cmake are as follows: @@ -31,13 +31,13 @@ # if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "4" STREQUAL "") +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") return() endif() # check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "4") - math(EXPR installedBits "4 * 8") +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") set(PACKAGE_VERSION_UNSUITABLE TRUE) endif() The differences of czmqTargets-release.cmake are as follows: @@ -8,22 +8,22 @@ # Import target "czmq" for configuration "Release" set_property(TARGET czmq APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) set_target_properties(czmq PROPERTIES - IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libczmq.so.4.2.1" + IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib64/libczmq.so.4.2.1" IMPORTED_SONAME_RELEASE "libczmq.so.4" ) list(APPEND _cmake_import_check_targets czmq ) -list(APPEND _cmake_import_check_files_for_czmq "${_IMPORT_PREFIX}/lib/libczmq.so.4.2.1" ) +list(APPEND _cmake_import_check_files_for_czmq "${_IMPORT_PREFIX}/lib64/libczmq.so.4.2.1" ) # Import target "czmq-static" for configuration "Release" set_property(TARGET czmq-static APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) set_target_properties(czmq-static PROPERTIES IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "C" - IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libczmq.a" + IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib64/libczmq.a" ) list(APPEND _cmake_import_check_targets czmq-static ) -list(APPEND _cmake_import_check_files_for_czmq-static "${_IMPORT_PREFIX}/lib/libczmq.a" ) +list(APPEND _cmake_import_check_files_for_czmq-static "${_IMPORT_PREFIX}/lib64/libczmq.a" ) The differences of czmqTargets.cmake are as follows: @@ -60,7 +60,7 @@ set_target_properties(czmq PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" - INTERFACE_LINK_LIBRARIES "/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/armv7ahf-neon-pokymllib32-linux-gnueabi/lib32-czmq/4.2.1/lib32-recipe-sysroot/usr/lib/libzmq.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/armv7ahf-neon-pokymllib32-linux-gnueabi/lib32-czmq/4.2.1/lib32-recipe-sysroot/usr/lib/libuuid.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/armv7ahf-neon-pokymllib32-linux-gnueabi/lib32-czmq/4.2.1/lib32-recipe-sysroot/usr/lib/libsystemd.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/armv7ahf-neon-pokymllib32-linux-gnueabi/lib32-czmq/4.2.1/lib32-recipe-sysroot/usr/lib/liblz4.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/armv7ahf-neon-pokymllib32-linux-gnueabi/lib32-czmq/4.2.1/lib32-recipe-sysroot/usr/lib/libcurl.so" + INTERFACE_LINK_LIBRARIES "/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/cortexa57-poky-linux/czmq/4.2.1/recipe-sysroot/usr/lib64/libzmq.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/cortexa57-poky-linux/czmq/4.2.1/recipe-sysroot/usr/lib64/libuuid.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/cortexa57-poky-linux/czmq/4.2.1/recipe-sysroot/usr/lib64/libsystemd.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/cortexa57-poky-linux/czmq/4.2.1/recipe-sysroot/usr/lib64/liblz4.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/cortexa57-poky-linux/czmq/4.2.1/recipe-sysroot/usr/lib64/libcurl.so" ) # Create imported target czmq-static @@ -69,7 +69,7 @@ set_target_properties(czmq-static PROPERTIES INTERFACE_COMPILE_DEFINITIONS "CZMQ_STATIC" INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" - INTERFACE_LINK_LIBRARIES "/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/armv7ahf-neon-pokymllib32-linux-gnueabi/lib32-czmq/4.2.1/lib32-recipe-sysroot/usr/lib/libzmq.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/armv7ahf-neon-pokymllib32-linux-gnueabi/lib32-czmq/4.2.1/lib32-recipe-sysroot/usr/lib/libuuid.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/armv7ahf-neon-pokymllib32-linux-gnueabi/lib32-czmq/4.2.1/lib32-recipe-sysroot/usr/lib/libsystemd.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/armv7ahf-neon-pokymllib32-linux-gnueabi/lib32-czmq/4.2.1/lib32-recipe-sysroot/usr/lib/liblz4.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/armv7ahf-neon-pokymllib32-linux-gnueabi/lib32-czmq/4.2.1/lib32-recipe-sysroot/usr/lib/libcurl.so" + INTERFACE_LINK_LIBRARIES "/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/cortexa57-poky-linux/czmq/4.2.1/recipe-sysroot/usr/lib64/libzmq.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/cortexa57-poky-linux/czmq/4.2.1/recipe-sysroot/usr/lib64/libuuid.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/cortexa57-poky-linux/czmq/4.2.1/recipe-sysroot/usr/lib64/libsystemd.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/cortexa57-poky-linux/czmq/4.2.1/recipe-sysroot/usr/lib64/liblz4.so;/ubinux-dev/ubinux001/contribution/build_xh/tmp/work/cortexa57-poky-linux/czmq/4.2.1/recipe-sysroot/usr/lib64/libcurl.so" ) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* flatcc: Fix build warnings found with clang-18Khem Raj2024-02-012-0/+33
| | | | | | | Fix what we can, and also disable warning-as-error as some compilers can be quite ambitious. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-auth-oauthlib: add recipealperak2024-02-011-0/+14
| | | | | | | This library is part of the Google Auth Library and simplifies the authentication and authorization processes by utilizing the OAuth protocol. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mdns: Fix SIGSEGV during DumpStateLog()Alex Kiernan2024-02-012-0/+31
| | | | | | | | DumpStateLog() calls LogMsgWithLevelv() with category == NULL, avoid crashing in this case. Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cmocka: Fix install conflict when enable multilib.Wang Mingyu2024-02-011-11/+10
| | | | | | | | | | Error: Transaction test error: file /usr/share/cmocka/example/mock/libproc_uptime.so conflicts between attempted installs of lib32-libcmocka-examples-1.1.7+git0+a01cc69ee9-r0.armv7ahf_neon and libcmocka-examples-1.1.7+git0+a01cc69ee9-r0.cortexa57 Change install directory from share to lib to resolve conflict. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aiohttp: upgrade 3.9.2 -> 3.9.3alperak2024-02-011-1/+1
| | | | | | | | | | | | | | | | Changelog: Bug fixes Fixed backwards compatibility breakage (in 3.9.2) of ssl parameter when set outside of ClientSession (e.g. directly in TCPConnector) -- by :user:Dreamsorcerer. Miscellaneous internal changes Improved test suite handling of paths and temp files to consistently use pathlib and pytest fixtures. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bpftool: Add missing dep on elfutils-nativeKhem Raj2024-01-311-1/+2
| | | | | | Point host CC to OE defined BUILD_CC Signed-off-by: Khem Raj <raj.khem@gmail.com>
* breakpad: Upgrade to 2023.06.01 releaseKhem Raj2024-01-312-7/+35
| | | | | | Add a backport to fix build with latest clang Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcamera: Fix build with clang-18Khem Raj2024-01-313-0/+152
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php-fpm: fix systemdEmil Kronborg2024-01-312-12/+62
| | | | | | | | | | | | | 2848cc99a186 ("php-fpm: Add support for systemd") introduced a systemd service file, where ExecStart and ExecStop uses /etc/init.d/php-fpm, which does not exist if systemd is enabled. Consequently, the php-fpm service fails to start even though it is correctly installed. This is fixed by this commit in which the service file is identical to the one from the PHP source code except for the use of BitBake variables. Also, use ${systemd_system_unitdir} instead of ${systemd_unitdir}/system. Signed-off-by: Emil Kronborg <emil.kronborg@protonmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ibus: backport a reproducibility fixYoann Congal2024-01-312-0/+165
| | | | | | | | | | | | | This backport fix the ibus-doc reproducibility issue. The problem: manpages are compressed with gzip with a non-reproducible timestamp in the header. The backported fix: do not compress the manpages. Note: This backported patch is included in version >= 1.5.29 and can be dropped after upgrading. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-janus: add recipe for v1.0.0Richard Leitner2024-01-301-0/+15
| | | | | | | | | | | janus is a python library providing a mixed sync-async queue to interoperate between asyncio tasks and classic threads. This recipe uses pypi as source: https://pypi.org/project/janus/ Signed-off-by: Richard Leitner <dev@g0hl1n.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-jsonref: add missing Upstream-StatusMartin Jansa2024-01-301-0/+1
| | | | | | | | * introduced in: https://git.openembedded.org/meta-openembedded/commit/?id=e34a29f12444cd31fb6e6c11712603897e24a6d5 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libvpx: restore Upstream-StatusMartin Jansa2024-01-301-0/+1
| | | | | | | | * accidentally dropped in: https://git.openembedded.org/meta-openembedded/commit/?id=acfdff6e41f860b31faefb4e449239a6d04d7502 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: restore Upstream-StatusMartin Jansa2024-01-301-0/+1
| | | | | | | | * accidentally dropped in: https://git.openembedded.org/meta-openembedded/commit/?id=e91fa668ed1dd4a3f6b06bcb099f70dbdd2a50b4 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-rlp: upgrade 1.0.0 -> 1.0.1alperak2024-01-301-4/+5
| | | | | | | | | Changelog: * Add the missing typing_extensions module Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* flatcc: Add tool recipeAngelo Ribeiro2024-01-291-0/+27
| | | | | | | | | Add FlatCC FlatBuffers in C for C. FlatCC is a compiler that generates FlatBuffers code for C given a FlatBuffer schema file. Signed-off-by: Angelo Ribeiro <Angelo.Ribeiro@criticaltechworks.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* iwd: update 2.8 -> 2.13Markus Volk2024-01-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ver 2.13: Fix issue with handling netconfig and roaming conditions. Fix issue with logging requirement for CMD_EXTERNAL_AUTH. Fix issue with using OpenSSL 3.2 installations. ver 2.12: Fix issue with DPP extra settings not being used. Fix issue with DPP and PRF+ handling on AARCH64. Add support for SAE password identifiers. ver 2.11: Fix issue with handling iovecs with multiple IEs. Fix issue with handling SAE password identifiers. Fix issue with handling agent release method call. ver 2.10: Fix issue with buffer overflow for 32 byte SSIDs. Fix issue with deauthentication before FT work completes. Fix issue with power save disabling procedure. ver 2.9: Fix issue with handling certain FT failures. Fix issue with handling user-disabled bands. Fix issue with handling roam on beacon loss event. Add support for PKEX configurator. Add support for PKEX enrollee. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aiohttp: upgrade 3.9.1 -> 3.9.2alperak2024-01-281-12/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated RDEPENDS accordingly setup.cfg Changelog: Bug fixes --------- - Fixed server-side websocket connection leak. *Related issues and pull requests on GitHub:* :issue:`7978`. - Fixed ``web.FileResponse`` doing blocking I/O in the event loop. *Related issues and pull requests on GitHub:* :issue:`8012`. - Fixed double compress when compression enabled and compressed file exists in server file responses. *Related issues and pull requests on GitHub:* :issue:`8014`. - Added runtime type check for ``ClientSession`` ``timeout`` parameter. *Related issues and pull requests on GitHub:* :issue:`8021`. - Fixed an unhandled exception in the Python HTTP parser on header lines starting with a colon -- by :user:`pajod`. Invalid request lines with anything but a dot between the HTTP major and minor version are now rejected. Invalid header field names containing question mark or slash are now rejected. Such requests are incompatible with :rfc:`9110#section-5.6.2` and are not known to be of any legitimate use. *Related issues and pull requests on GitHub:* :issue:`8074`. - Improved validation of paths for static resources requests to the server -- by :user:`bdraco`. *Related issues and pull requests on GitHub:* :issue:`8079`. Features -------- - Added support for passing :py:data:`True` to ``ssl`` parameter in ``ClientSession`` while deprecating :py:data:`None` -- by :user:`xiangyan99`. *Related issues and pull requests on GitHub:* :issue:`7698`. Breaking changes ---------------- - Fixed an unhandled exception in the Python HTTP parser on header lines starting with a colon -- by :user:`pajod`. Invalid request lines with anything but a dot between the HTTP major and minor version are now rejected. Invalid header field names containing question mark or slash are now rejected. Such requests are incompatible with :rfc:`9110#section-5.6.2` and are not known to be of any legitimate use. *Related issues and pull requests on GitHub:* :issue:`8074`. Improved documentation ---------------------- - Fixed examples of ``fallback_charset_resolver`` function in the :doc:`client_advanced` document. -- by :user:`henry0312`. *Related issues and pull requests on GitHub:* :issue:`7995`. - The Sphinx setup was updated to avoid showing the empty changelog draft section in the tagged release documentation builds on Read The Docs -- by :user:`webknjaz`. *Related issues and pull requests on GitHub:* :issue:`8067`. Packaging updates and notes for downstreams ------------------------------------------- - The changelog categorization was made clearer. The contributors can now mark their fragment files more accurately -- by :user:`webknjaz`. The new category tags are: * ``bugfix`` * ``feature`` * ``deprecation`` * ``breaking`` (previously, ``removal``) * ``doc`` * ``packaging`` * ``contrib`` * ``misc`` *Related issues and pull requests on GitHub:* :issue:`8066`. Contributor-facing changes -------------------------- - Updated :ref:`contributing/Tests coverage <aiohttp-contributing>` section to show how we use ``codecov`` -- by :user:`Dreamsorcerer`. *Related issues and pull requests on GitHub:* :issue:`7916`. - The changelog categorization was made clearer. The contributors can now mark their fragment files more accurately -- by :user:`webknjaz`. The new category tags are: * ``bugfix`` * ``feature`` * ``deprecation`` * ``breaking`` (previously, ``removal``) * ``doc`` * ``packaging`` * ``contrib`` * ``misc`` *Related issues and pull requests on GitHub:* :issue:`8066`. Miscellaneous internal changes ------------------------------ - Replaced all ``tmpdir`` fixtures with ``tmp_path`` in test suite. *Related issues and pull requests on GitHub:* :issue:`3551`. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aiohappyeyeballs: add recipealperak2024-01-281-0/+9
| | | | | | | This library exists to allow connecting with Happy Eyeballs when you already have a list of addrinfo and not a DNS name Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bonnie++: New recipe for version 2.0Jörg Sommer2024-01-284-0/+279
| | | | | | | | | | | Newer versions of bonnie get published on <https://doc.coker.com.au/projects/bonnie/>. Unfortunately, the new version doesn't compile with g++ 11 which requires *fix-csv2html-data.patch* and configure fails due to cross compilation which gets fixed with *fix-configure-lfs.patch* Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* system-config-printer: fix runtime for system-config-printerMarkus Volk2024-01-281-0/+3
| | | | | | | | | | | https://git.openembedded.org/meta-openembedded/commit/?h=master-next&id=76e0113299bb65b840b2dd1409e31c67cc66d4b5 breaks runtime for system-config-printer, as it changes the way the cupshelpers module is installed and thus prevents system-config-printer from finding it. Install the module in a way it can be found. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uftrace: Adjust the summary to reflect rust and python supportKhem Raj2024-01-271-1/+1
| | | | | Suggested-by: Paran Lee Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-toolz: upgrade 0.12.0 -> 0.12.1alperak2024-01-271-1/+1
| | | | | | | | | | | | Changelog: * Add support for Python 3.12 and PyPy 3.10 * Drop support for Python 3.5 and 3.6 * Fix typos (#565, #568) * Use codecov for coverage instead of coveralls Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* scapy: Add difftools and logutils in RDEPENDSSimone Weiß2024-01-271-1/+2
| | | | | | | | When adding scapy to core-image-base from poky those dependecies were missing causing scapys start to fail. Signed-off-by: Simone Weiß <simone.p.weiss@posteo.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-argh: update to version 0.31.2Derek Straka2024-01-271-2/+1
| | | | | | | Remove a redundant checksum that changes with every release. Leverage the COPYING file instead Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-colorlog: update to version 6.8.2Derek Straka2024-01-271-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-gmqtt: update to version 0.6.14Derek Straka2024-01-271-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-coverage: update to version 7.4.1Derek Straka2024-01-271-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-api-python-client: update to version 2.115.0Derek Straka2024-01-271-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pdm: update to version 2.12.2Derek Straka2024-01-271-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cytoolz: update to version 0.12.3Derek Straka2024-01-271-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-argcomplete: update to version 3.2.2Derek Straka2024-01-271-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-web3: update to version 6.15.0Derek Straka2024-01-271-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-bandit: update to version 1.7.7Derek Straka2024-01-271-1/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xdg-desktop-portal: add missing glib-2.0-native dependencyMaxime Roussin-Belanger2024-01-271-0/+1
| | | | | | | | | | Without this we get this error `| ../git/src/meson.build:3:29: ERROR: Program 'gdbus-codegen' not found or not executable` and glib-2.0-native provides gdbus-codegen Signed-off-by: Maxime Roussin-Bélanger <maxime.roussinbelanger@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* polkit: fix rules.d permissionsMaxime Roussin-Bélanger2024-01-271-0/+2
| | | | | | | | | Fix conflicting installations of polkit-group-rule-{network/datetime/udisks2}. Ensure {sysconfdir}/polkit-1/rules.d permissions match the current recipe during installation to prevent conflicts in do_rootfs of an image. Signed-off-by: Maxime Roussin-Belanger <maxime.roussinbelanger@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uutils_coreutils: merge .inc and .bbEtienne Cordonnier2024-01-272-57/+55
| | | | | | | | | | I initially created a separated .inc file to follow poky's convention, but according to https://lists.openembedded.org/g/openembedded-core/message/193940 the presence of unneeded .inc files is only due to historical reasons and there is no need to follow this convention any more. Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uutils-coreutils: upgrade 0.0.23 -> 0.0.24Etienne Cordonnier2024-01-272-68/+76
| | | | | | | See https://github.com/uutils/coreutils/releases/tag/0.0.24 Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* kernel-selftest: Add few more testcasesChirag Shilwant2024-01-271-0/+2
| | | | | | | | | This commit will build and install following testcases under /usr/kernel-selftest of filesystem, * ptp * timers Signed-off-by: Chirag Shilwant <c-shilwant@ti.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>