summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* jack: fix build with python3 on hostMartin Jansa2024-01-273-1/+267
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * first backport from waflib fixes: | DEBUG: Executing shell function do_configure | Traceback (most recent call last): | File "/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/./waf", line 166, in <module> | from waflib import Scripting | File "/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Scripting.py", line 10, in <module> | from waflib import Utils, Configure, Logs, Options, ConfigSet, Context, Errors, Build, Node | File "/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Configure.py", line 16, in <module> | from waflib import ConfigSet, Utils, Options, Logs, Context, Build, Errors | File "/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Options.py", line 14, in <module> | from waflib import Logs, Utils, Context, Errors | File "/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Context.py", line 9, in <module> | import os, re, imp, sys | ModuleNotFoundError: No module named 'imp' the 2nd one avoids SyntaxWarning from waf --version which causes waf_preconfigure to fail, because SyntaxWarning ends in waf_preconfigure to fail, because SyntaxWarning ends in bb.utils.vercmp_string_op: jack/1.9.22/git $ python3 waf --version /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Context.py:617: SyntaxWarning: invalid escape sequence '\_' """ /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Build.py:107: SyntaxWarning: invalid escape sequence '\*' """List of targets to build (default: \*)""" /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/Task.py:1047: SyntaxWarning: invalid escape sequence '\w' re_cond = re.compile('(?P<var>\w+)|(?P<or>\|)|(?P<and>&)') /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/jack/1.9.22/git/waflib/TaskGen.py:730: SyntaxWarning: invalid escape sequence '\w' re_m4 = re.compile('@(\w+)@', re.M) waf 2.0.12 (54841218840ffa34fddf834680a5a17db69caa12) As reported in https://lists.openembedded.org/g/openembedded-core/message/194348 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pipewire: fix build with libcamera-0.2Markus Volk2024-01-272-1/+86
| | | | | | | | | | | Add a backport patch to fix this issue with libcamera-0.2: | In file included from ../git/spa/plugins/libcamera/libcamera-source.cpp:188: | ../git/spa/plugins/libcamera/libcamera-utils.cpp:719:9: error: 'Transform' does not name a type https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/3782 Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcamera: update 0.1.0 -> 0.2.0Denys Dmytriyenko2024-01-272-179/+1
| | | | | | | | Changelog: https://git.libcamera.org/libcamera/libcamera.git/tag/?h=v0.2.0 Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-netaddr: upgrade 0.10.0 -> 0.10.1alperak2024-01-271-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog: Fixed: Get rid of some warnings Deprecated: Deprecate the flag shorthands: N, P and Z. Use NOHOST, INET_PTON and ZEROFILL instead. Deprecate importing objects from netaddr subpackages. Only importing things from the top-level netaddr namespace is supported, everything else is considered private. This has already been the case but we can use a reminder. Deprecate permissive-by-default IPv4 parsing in valid_ipv4(). The inet_pton() semantics (with leading zeros always disallowed) will become the default. Use INET_ATON and/or ZEROFILL flags if you need the legacy behavior. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* vulkan-cts: Upgrade to 1.3.7.3Khem Raj2024-01-277-87/+139
| | | | | | | | Adjust for different patches between vulkan-cts and opengl-es-cts Use gcc to compile vulkan-cts for now, it does not like libc++ headers from clang-18 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* vk-gl-cts: Disable Werror on amber external moduleKhem Raj2024-01-271-1/+1
| | | | | | | | | | | | | When compiling with clang-18 it finds more warnings which becomes errors so disable the warnings as errors in this module for now. Fixes /mnt/b/yoe/master/build/tmp/work/core2-64-yoe-linux/opengl-es-cts/3.2.9.3/git/external/amber/src/src/engine.cc:35:3: error: 'switch' missing 'default' label [-Werror,-Wswitch-default] 35 | switch (type) { | ^ 1 error generated. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-marshmallow: upgrade 0.15.0 -> 1.1.0alperak2024-01-272-14/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Upstream provides a pyproject.toml which declares the "python_setuptools_build_meta" backend for PEP-517 packaging. use python_setuptools_build_meta since normal setuptools3 bbclass ends up in error -> ERROR: 'python3 setup.py bdist_wheel ' execution failed. * Set PYPI_PACKAGE to "flask_marshmallow" because when downloading the archive error pops up. they use "_" instead of "-". * Dependencies defined ["Flask>=2.2", "marshmallow>=3.0.0"] in pyproject.toml so "python3-packaging" removed. License-Update: Copyright years change Changelog: ================================= 1.1.0 (2024-01-16) Features: Add type coverage (:pr:`290`). ================================== 1.0.0 (2024-01-16) Features: Add field fields.File, validate.FileType, and validate.FileSize for deserializing uploaded files (:issue:`280`, :pr:`282`). Thanks :user:`uncle-lv` for the PR Add field Config for serializing Flask configuration values (:issue:`280`, :pr:`281`). Thanks :user:`greyli` for the PR. Support: Support marshmallow-sqlalchemy>=0.29.0. Test against Python 3.12. Drop support for Python 3.7. Other changes: Backwards-incompatible: Remove `flask_marshmallow.__version__ and flask_marshmallow.__version_info__ attributes (:pr:`284`). Use feature detection or importlib.metadata.version("flask-marshmallow") instead. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* radvd: add '--shell /sbin/nologin' to /etc/passwdLi Wang2024-01-271-1/+1
| | | | | | | | | | | | the default setting USERADD_PARAM of yocto: -s /bin/sh follow redhat policy: radvd/redhat/systemd/radvd.spec useradd ... -s /sbin/nologin ... Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ndctl: Update to v78Khem Raj2024-01-274-137/+5
| | | | | | | Drop patches, they are not needed anymore Package /usr/lib/systemd/system/cxl-monitor.service Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pytest-mock: Fix ptest failures with python 3.12Khem Raj2024-01-272-3/+93
| | | | | | | | | | | | | | Fixes following regressions seen with python 3.12 upgrade AssertionError: Failed ptests: {'python3-pytest-mock': ['tests/test_pytest_mock.py::TestMockerStub::test_failure_message_with_no_name', 'tests/test_pytest_mock.py::TestMockerStub::test_failure_message_with_name[None]', 'tests/test_pytest_mock.py::TestMockerStub::test_failure_message_with_name[]', 'tests/test_pytest_mock.py::TestMockerStub::test_failure_message_with_name[f]', 'tests/test_pytest_mock.py::TestMockerStub::test_failure_message_with_name[The_Castle_of_aaarrrrggh]']} Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minicoredumper: Fix build with clangKhem Raj2024-01-272-0/+54
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minicoredumper: upgrade 2.0.6 -> 2.0.7Wang Mingyu2024-01-271-1/+1
| | | | | | | | | | | | Changelog: =========== * Fix robust mutex list dumping if a robust mutex uses the PTHREAD_PRIO_INHERIT attribute. * Avoid bogus error messages when dumping registered data for non-crashing processes. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libsmi: Fix buildpaths warning.Wang Mingyu2024-01-271-1/+2
| | | | | | | | WARNING: libsmi-0.5.0-r0 do_package_qa: QA Issue: File /usr/bin/smistrip in package libsmi contains reference to TMPDIR File /usr/bin/smicache in package libsmi contains reference to TMPDIR [buildpaths] Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* i2cdev: Set PV correctlyKhem Raj2024-01-271-1/+1
| | | | | | based on https://github.com/costad2/i2cdev/blob/master/version.h Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uftrace: Upgrade to 0.15.2Khem Raj2024-01-272-3/+3
| | | | | | | | | | Added RISCV64 support Release Notes [1] [1] https://github.com/namhyung/uftrace/releases/tag/v0.15.2 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tesseract: upgrade 5.3.3 -> 5.3.4Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | | Changelog: ============ * Fixes for scrollview * Fixes for autoconf, clang and sw builds * Improve OCR for an image URL * Fail on curl download errors * New parameter curl_cookiefile * Set User-Agent: header field in HTTP request for curl downloads * Output directory list from "combine_tessdata -d" to stdout * Other small improvements for code and documentation. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* smemstat: upgrade 0.02.12 -> 0.02.13Wang Mingyu2024-01-231-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qpdf: upgrade 11.7.0 -> 11.8.0Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== * Bug fix: treat references to older generations of objects as null. * When recovering a file's xref table, attempt to find xref streams if a traditional trailer dictionary is not found. * Add --set-page-labels command-line argument and supporting API. - QPDFJob::Config::setPageLabels - pdf_page_label_e enumerated type - QPDFPageLabelDocumentHelper::pageLabelDict * Support comma-separated numeric values with --collate to select different group sizes from different files. * Support "x" before a group in a numeric range to exclude a group from the previous group. Details are in the manual. * When flattening annotations, preserve annotations without any appearance information at all, such as types /Link, /Popup, and /Projection. * Detect overlong UTF-8 in the UTF-8 decoder, and fix detection of 8-bit characters in erroneous UTF-8 strings. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-types-psutil: upgrade 5.9.5.17 -> 5.9.5.20240106Wang Mingyu2024-01-231-1/+1
| | | | | | | | | Changelog: ========== Update typing_extensions imports in third-party stubs Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tox: upgrade 4.11.4 -> 4.12.1Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | Changelog: ========== -Fix tox version requirement in docs -Fix Tox failing with --installpkg and multi testenvs Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pychromecast: upgrade 13.0.8 -> 13.1.0Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ========== -Increase homeassistant lovelace connect timeout and make it configurable -Add support for NRK TV and NRK Radio apps -Change logged precision of volume from 1 to 2 -Create ShakaPlayer Controller -Add date for removal of deprecated discovery functions -Mark discover_chromecasts as deprecated -Update README.rst -Fix known_hosts for older chromecasts -Fix SSLContext settings -Update README.rst to reflect refactoring of cast.device to cast.cast_info -Fix deprecated call to ssl.SSLContext without specifying protocol Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-robotframework: upgrade 6.1.1 -> 7.0Wang Mingyu2024-01-231-1/+1
| | | | | | | | Changelog: https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-7.0.rst Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sentry-sdk: upgrade 1.39.1 -> 1.39.2Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | Changelog: =========== -Fix timestamp in transaction created by OTel -Fix relative path in DB query source -Run more CI checks on 2.0 branch -Fix tracing TypeError for static and class methods -Fix missing ctx in Arq integration -Change data_category from check_in to monitor Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyatspi: upgrade 2.46.0 -> 2.46.1Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | Changelog: ============ * Fix some implicit function declarations and other compiler warnings in the tests. * Remove some unused code. * Update the README to describe the module's current status. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pdm: upgrade 2.11.2 -> 2.12.1Wang Mingyu2024-01-231-1/+1
| | | | | | | | Changelog: Hotfix: missing identifier attribute for package type fixer. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ipython: upgrade 8.19.0 -> 8.20.0Wang Mingyu2024-01-231-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-haversine: upgrade 2.8.0 -> 2.8.1Wang Mingyu2024-01-231-1/+1
| | | | | | | | Changelog: Use numpy kernel when using numba Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-api-python-client: upgrade 2.113.0 -> 2.114.0Wang Mingyu2024-01-231-1/+1
| | | | | | | | | Changelog: =========== https://github.com/googleapis/google-api-python-client/blob/main/CHANGELOG.md Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-git-pw: upgrade 2.5.0 -> 2.6.0Wang Mingyu2024-01-231-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask: upgrade 3.0.0 -> 3.0.1Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | Changelog: =========== -Correct type for path argument to send_file. -Fix a typo in an error message for the flask run --key option. -Session data is untagged without relying on the built-in json.loads object_hook. -Address more type findings when using mypy strict mode. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eventlet: upgrade 0.34.2 -> 0.34.3Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | Changelog: ========== * Fix security issue in the wsgi module related to RFC 9112 * Fix segfault, a new approach for greening existing locks * greendns: fix getaddrinfo parameter name * Fix deprecation warning on ssl.PROTOCOL_TLS * Pytests, fix error at teardown of TestGreenSocket.test_full_duplex * Skip test which uses Py cgi module * Drop old code based on python < 3.7 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-utils: upgrade 2.3.1 -> 3.0.0Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | Changelog: ============ -Drop python 3.7 support -Merge updates from the project template, notably: use pre-commit for linting and change the name of the master branch to main -Correct booleans in pyproject.toml and add test for the presence of the eth_utils.__version__ attribute -Some users were experiencing encoding issues when parsing the networks json. Use UTF-8 explicitly. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-typing: upgrade 3.5.2 -> 4.0.0Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | Changelog: ============ -Drop python 3.7 support -Merge updates from the project template, notably: use pre-commit for linting and change the name of the master branch to main -Fixed booleans in pyproject.toml and added a test for the presence of the eth_typing.__version__ attribute Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-abi: upgrade 4.2.1 -> 5.0.0Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | Changelog: ============ -Drop python 3.7 support -Merge updates from the project template, notably, use pre-commit for linting and change the name of the master branch to main -Corrected format of booleans in pyproject.toml and added a test for the presence of the eth_abi.__version__ attribute -Add build.os section to readthedocs build settings Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-django: upgrade 5.0 -> 5.0.1Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== -Reallowed, following a regression in Django 5.0, using a foreign key to a model with a primary key that is not AutoField in ModelAdmin.list_filter -Fixed a long standing bug in handling the RETURNING INTO clause that caused a crash when creating a model instance with a GeneratedField which output_field had backend-specific converters -Fixed a regression in Django 5.0 that caused a crash of Model.save() for models with both GeneratedField and ForeignKey fields -Fixed a bug in Django 5.0 that caused a migration crash on Oracle < 23c when adding a GeneratedField with output_field=BooleanField -Fixed a regression in Django 5.0 where admin fields on the same line could overflow the page and become non-interactive -Added compatibility for oracledb 2.0.0 -Fixed a regression in Django 5.0 where querysets referenced incorrect field names from FilteredRelation() -Fixed a regression in Django 5.0 that caused a system check crash when ModelAdmin.filter_horizontal or filter_vertical contained a reverse many-to-many relation with related_name Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-dbus-fast: upgrade 2.21.0 -> 2.21.1Wang Mingyu2024-01-231-1/+1
| | | | | | | | Changelog: Avoid expensive runtime inspection of known callables Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cbor2: upgrade 5.5.1 -> 5.6.0Wang Mingyu2024-01-231-1/+1
| | | | | | | | Changelog: https://cbor2.readthedocs.io/en/latest/versionhistory.html Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cantools: upgrade 39.4.2 -> 39.4.3Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | Changelog: ========== -Add type annotations to c_source.py -Enum newlines Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-beautifulsoup4: upgrade 4.12.2 -> 4.12.3Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | | | Changelog: ============= * The Beautiful Soup documentation now has a Spanish translation * Fixed a regression such that if you set .hidden on a tag * Fixed a case where html.parser giving up on markup would result in an AssertionError instead of a ParserRejectedMarkup exception. * Added the correct stacklevel to instances of the XMLParsedAsHTMLWarning. * Corrected the syntax of the license definition in pyproject.toml. * Corrected a typo in a test that was causing test failures when run against libxml2 2.12.1. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-asyncinotify: upgrade 4.0.5 -> 4.0.6Wang Mingyu2024-01-231-1/+1
| | | | | | | | | Changelog: =========== Resolve "Version bump for mirroring test" Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-absl: upgrade 2.0.0 -> 2.1.0Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog: ========= -Added absl.flags.override_value function to provide FlagHolder with a construct to modify values. -Added a new method absltest.TestCase.assertDataclassEqual that tests equality of dataclass.dataclass objects with better error messages when the assert fails. -absl.flags.argparse_flags.ArgumentParser now correctly inherits an empty instance of FlagValues to ensure that absl flags, such as --flagfile, --undefok are supported. -Do not exit 5 if tests were skipped on Python 3.12. This follows the CPython change in python/cpython#113856. -The flag foo no longer retains the value bar after FLAGS.foo = bar fails due to a validation error. -Fixed an issue caused by this Python 3.12.1 change where the test reporter crashes when all tests are skipped. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* plocate: upgrade 1.1.20 -> 1.1.22Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | | Changelog: ========== - Revert the updatedb change in 1.1.21 that did not open pruned paths; it broke pruning of paths that were not at the root - Improve interactions between pruning and bind mount detection logic. - Pruned paths are now not opened, which can be useful in certain cases. Note that this does not (yet) apply to filesystems that are pruned due to type and not due to paths; they are still opened and then immediately closed again. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xmlschema: upgrade 2.5.1 -> 3.0.1Wang Mingyu2024-01-231-2/+2
| | | | | | | | | | | | | Changelog: ========== -Hotfix release for broken requirement -Set python-requires metadata to >=3.8 -Upgrade GitHub Actions License-Update: Copyright year updated to 2024. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-keys: upgrade 0.4.0 -> 0.5.0Wang Mingyu2024-01-231-2/+2
| | | | | | | | | | | | | License-Update: Copyright year updated to 2023. Changelog: =========== -Drop python 3.6 and 3.7 support -Add python 3.11 support -Merge template updates, notably using pre-commit for linting and change the name of the master branch to main Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sanlock: upgrade 3.8.5 -> 3.9.0Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog: ============ -sanlock: replace strncat for creating debug output -sanlock: reduce warnings -sanlock: fix direct_next_free missing init -sanlock: use product_uuid for host name -sanlock: add comment with timeout example -sanlock: skip short delay in delta lease reacquire -README.dev: update userstorage doc -userstorage: replace by PyPI userstorage -tox.ini: add py310 to environments -README.dev: update prerequisites -wdmd: close watchdog when not used -watchdog timeout configuration -Add python3-setuptools build requirement Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: upgrade 7.2.3 -> 7.2.4Wang Mingyu2024-01-2310-16/+12
| | | | | | | | | | | | | | | | | | | 0001-src-Do-not-reset-FINAL_LIBS.patch 0006-Define-correct-gregs-for-RISCV32.patch lua-update-Makefile-to-use-environment-build-setting.patch refreshed for 7.2.4 Changelog: ============ -(CVE-2023-41056) In some cases, Redis may incorrectly handle resizing of memory buffers which can result in incorrect accounting of buffer sizes and lead to heap overflow and potential remote code execution. -Fix crashes of cluster commands clusters with mixed versions of 7.0 and 7.2 -Fix slot ownership not being properly handled when deleting a slot from a node -Fix atomicity issues with the RedisModuleEvent_Key module API event Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-apscheduler: add new recipeWang Mingyu2024-01-231-0/+13
| | | | | | | Add a new recipe for python3-apscheduler, a task scheduler and task queue system for Python. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* md4c: upgrade 0.4.8 -> 0.5.0Wang Mingyu2024-01-231-2/+2
| | | | | | | | | | License-Update: Copyright year updated to 2024. Changelog: https://github.com/mity/md4c/blob/master/CHANGELOG.md Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lshw: upgrade 02.19.2 -> 02.20Wang Mingyu2024-01-231-1/+1
| | | | | | | | Changelog: get rid of some snprintf warnings Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>