summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* lvgl: add gridnav to packageconfigStefano Babic2024-06-161-0/+5
| | | | | | | | | Some packages require to activate LVGL_CONFIG_LV_USE_GRIDNAV, so let configure it. Signed-off-by: Stefano Babic <sbabic@denx.de> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fmt: RemoveKhem Raj2024-06-152-17/+0
| | | | | | This recipe has been migrated to oe-core Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libio-compress-perl: Use update alternatives for streamzip and zipdetailsKhem Raj2024-06-141-0/+8
| | | | | | | | | | these utilities are also provided by perl-misc package built by perl recipe. Prefer the one's provided by libio-compress-perl if its included. Fixes https://github.com/riscv/meta-riscv/issues/374 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* packagegroup-sdk-target: Drop g77-symlinksKhem Raj2024-06-141-2/+2
| | | | | | g77/f77 links are gone in OE-core Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mbedtls: Do not set LIB_INSTALL_DIR to an absolute path to make ↵Timo Schuster2024-06-141-2/+0
| | | | | | | MbedTLSTargets.cmake relocateable. Signed-off-by: Timo Schuster <timo.schuster@leica-microsystems.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* trompeloeil: new recipeSven Fischer2024-06-141-0/+15
| | | | | | A thread-safe header-only mocking framework for C++11/14 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* giflib: upgrade to version 5.2.2Nikhil R2024-06-142-3/+48
| | | | | | | | | | | | | | | | | | | Upgrade to latest version giflib v5.2.2. This version fixes bugs listed in link below: Link: https://sourceforge.net/p/giflib/code/ci/5.2.2/tree/NEWS Fixes for CVE-2023-48161, CVE-2022-28506, CVE-2023-39742 Link: https://clients.neighbourhood.ie/yocto/1-40.html#:~:text=CVE%2D2023%2D39742%3A%20giflib%3Agiflib%2Dnative Added dependency on ImageMagick which includes "convert" utility, to ensure availability of required tool during compilation process. Add patch to rename binary used in Makefile from "convert" to "convert.im7" as installed by imagemagick package. Signed-off-by: Bhabu Bindu <bhabubindu@kpit.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nss: Upgrade to 3.101 releaseKhem Raj2024-06-141-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nvme-cli: Support read-only systemsMike Looijmans2024-06-141-3/+4
| | | | | | | | | | | | | | | | Attempting to install nvme-cli on a read-only system fails because of the post-install script that creates /etc/nvme/hostnqn and hostid. These files aren't actually needed for 99% of nvme-cli functionality. Split the postinstall into a separate package, nvme-cli-user and also move the unwanted util-linux-uuidgen dependency to that package. This allows to install and use nvme-cli on a read-only rootfs. If someone wants to run nvme-stas it will need a dependency on nvme-cli-user to create the files. Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* imagemagick: Update status for CVENinette Adhikari2024-06-141-0/+20
| | | | | | | | | | Update status for: CVE-2014-9804, CVE-2014-9805, CVE-2014-9806, CVE-2014-9807, CVE-2014-9808, CVE-2014-9809, CVE-2014-9810, CVE-2014-9811, CVE-2014-9812, CVE-2014-9813, CVE-2014-9814, CVE-2014-9815, CVE-2014-9816, CVE-2014-9817, CVE-2014-9818, CVE-2014-9819, CVE-2014-9820, CVE-2014-9821, CVE-2016-7531 CPE is incorrect, the current version (7.1.1) is not affected. Signed-off-by: Ninette Adhikari <ninette@thehoodiefirm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* smarty: Update status for CVE-2020-10375Ninette Adhikari2024-06-141-0/+2
| | | | | | | | | | The recipe used in the meta-openembedded is a different package compared to the one which has the CVE issue. Package used in meta-embedded: https://www.smarty.net/ Package with CVE issue is from newmediacompany: https://www.smarty-online.de No action required. Signed-off-by: Ninette Adhikari <ninette@thehoodiefirm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tnftp: fix lib32-tnftp build failure with gcc-14Changqing Li2024-06-143-0/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | lib32-tnftp do_compile failed with gcc-14: ../../tnftp-20230507/libedit/terminal.c:597:56: error: passing argument 2 of 'terminal_overwrite' from incompatible pointer type [-Wincompatible-pointer-types] 597 | terminal_overwrite(el, &el->el_display[ | ^~~~~~~~~~~~~~~~ | | | wint_t * {aka unsigned int *} 598 | el->el_cursor.v][el->el_cursor.h], | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../tnftp-20230507/libedit/refresh.c:114:38: error: initialization of 'wchar_t *' {aka 'long int *'} from incompatible pointer type 'wint_t *' {aka 'unsigned int *'} [-Wincompatible-pointer-types] 114 | wchar_t *firstline = el->el_vdisplay[0]; For 64bit system: wchar_t is defined as int wint_t is define as unsigned int For 32bit system: wchar_t is defined as long int wint_t is define as unsigned int In 64bit case, it works well, but in 32bit case, gcc will take it as incompatible, and report above error Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* aravis: Remove AUTHOR fieldKhem Raj2024-06-141-1/+0
| | | | | | this field has been removed from recipes Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-whitenoise,python-libusb1: Remove AUTHOR fieldKhem Raj2024-06-142-2/+0
| | | | | | this field has been removed from recipes Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libblockdev: Add missing dependency on keyutils to crypto PACKAGECONFIG.Weisser, Pascal2024-06-131-1/+1
| | | | | | | | | Related: https://github.com/openembedded/meta-openembedded/issues/832 Signed-off-by: Weisser, Pascal <pascal.weisser.ext@karlstorz.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libblockdev: Add missing dependency on e2fsprogs to fs PACKAGECONFIG.Weisser, Pascal2024-06-131-1/+1
| | | | | | | | | Related: https://github.com/openembedded/meta-openembedded/issues/832 Signed-off-by: Weisser, Pascal <pascal.weisser.ext@karlstorz.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libsmi: use update-alternatives to solve conflicts with frrWang Mingyu2024-06-121-1/+4
| | | | | | | | | | | | | Error: Transaction test error: file /usr/share/yang/ietf-netconf-acm.yang conflicts between attempted installs of libsmi-yang-0.5.0-r0.aarch64 and frr-10.0-r0.aarch64 file /usr/share/yang/ietf-netconf-with-defaults.yang conflicts between attempted installs of libsmi-yang-0.5.0-r0.aarch64 and frr-10.0-r0.aarch64 file /usr/share/yang/ietf-netconf.yang conflicts between attempted installs of libsmi-yang-0.5.0-r0.aarch64 and frr-10.0-r0.aarch64 frr also uses the doc 'ietf-netconf-acm.yang ietf-netconf-with-defaults.yang ietf-netconf.yang'. frr has a priority of 100. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* frr: use update-alternatives to solve conflicts with libsmiWang Mingyu2024-06-121-1/+4
| | | | | | | | | | | | | Error: Transaction test error: file /usr/share/yang/ietf-netconf-acm.yang conflicts between attempted installs of libsmi-yang-0.5.0-r0.aarch64 and frr-10.0-r0.aarch64 file /usr/share/yang/ietf-netconf-with-defaults.yang conflicts between attempted installs of libsmi-yang-0.5.0-r0.aarch64 and frr-10.0-r0.aarch64 file /usr/share/yang/ietf-netconf.yang conflicts between attempted installs of libsmi-yang-0.5.0-r0.aarch64 and frr-10.0-r0.aarch64 libsmi also uses the doc 'ietf-netconf-acm.yang ietf-netconf-with-defaults.yang ietf-netconf.yang'. libsmi has a priority of 50. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfwm4: fix gcc -Wincompatible-pointer-typesKai Kang2024-06-122-0/+40
| | | | | | | | | | | | | | | Fix xfwm4 incompatible pointer type error with gcc option -Wincompatible-pointer-types: | ../../xfwm4-4.18.0/src/startup_notification.c:139:57: error: passing argument 2 of 'sn_startup_sequence_get_last_active_time' from incompatible pointer type [-Wincompatible-pointer-types] | 139 | sn_startup_sequence_get_last_active_time (sequence, &l_sec, &l_usec); | | ^~~~~~ | | | | | long int * Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic-core: Fix build with python 3.12.4Khem Raj2024-06-122-1/+31
| | | | | | | | This needs to be upgraded to 2.19+ but until then backport a fix to keep it building. Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Tim Orling <ticotimo@gmail.com>
* cabextract: add utility to extract Microsft cabinet filesDmitry Baryshkov2024-06-123-0/+78
| | | | | | | | | | | | | | WoA firmware, fonts and some other useful files are being distributed as a Microsoft cabinet files. Add recipes for the cabextract utility, which is used to extract such files. Cabextract can either use a bundled source tree for libmspack library or an externally provided library. Package the library separately in order to be able to share it with the meta-security layer. Cc: Armin Kuster <akuster808@gmail.com> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* usbredir: upgrade 0.13.0 -> 0.14.0Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | Changelog: ============ - usbredirect: Fix redirecting identical devices - usbredirect: Fix CPU tight loop when run as TCP server - usbredirect: Fix some minor memory leaks - usbredirect: Add documentation about bus-device option - usbredirtestclient: Fix build on MacOS 10.5 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tslib: upgrade 1.22 -> 1.23Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | Changelog: ============ * new filter module: 'module crop' * some build and security fixes * improved release procedure Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* squashfs-tools-ng: upgrade 1.2.0 -> 1.3.1Wang Mingyu2024-06-111-2/+2
| | | | | | | | | | | | | | | | Changelog: =========== - gensquashfs: apply xattr file also when using a pack file - Fix broken C++ guard in rbtree.h - fixed fragment table size typo - rdsquashfs: improve unpacking error message on Windows - rdsquashfs: add a workaround for unpacking forbidden filenames on Windows - tar2sqfs: Add option to exclude files - Fix compressor ID enumerator in format documentation - libsqfs: add a threshold for extended directory inodes with index Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sdmon: upgrade 0.8.1 -> 0.9.0Wang Mingyu2024-06-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | Changelog: ========== - Add support for Adata cards - Merge pull request - Fix type warnings - fixe types and count - Add support for Innodisk cards - Modify Adata code - Move SB code - Merge branch 'master' into J-Twin-patch-1 - Fix Maximum erase count for Transcend cards - Fix Maximum erase count for Transcend cards - Merge branch 'master' into master - remove "Z" from local time timestamp - merging changes from FreeBSD support - Merge remote-tracking branch 'origin/master' Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sanlock: upgrade 3.9.2 -> 3.9.3Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | Changelog: =========== - skip delay when same host acquires delta lease - improve handling our_host_name Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remmina: upgrade 1.4.34 -> 1.4.35Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | | Changelog: ========== * Fix build for openssl-1.1 * Allow running an SSH command when connecting via ssh tunnel * Check if WINPR_ASSERT is defined * [REM-3047] fix issue compiling with gcc-14 * Fix crash caused by enabling disablepasswordstoring * Revert setting loadbalanceinfo to the old method used before FreeRDP3 * updated call to set FreeRDP_LoadBalanceInfo Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qpdf: upgrade 11.8.0 -> 11.9.0Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ============ * Add ENABLE_COVERAGE cmake option to assist with generating coverage reports. * From M. Holger: add QPDFObjectHandle::writeJSON to directly write a JSON representation to a pipeline. * set the actual value based on the allowable non-/Off value in the normal appearance dictionary. * Add fuzz testing for JSON. * Add JSON::getDictItem (from m-holger) * Allow --overlay and --underlay to be repeated. * Add new command-line arguments --file and --range which can be used within --pages in place of positional arguments. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xlsxwriter: upgrade 3.1.9 -> 3.2.0Wang Mingyu2024-06-111-2/+2
| | | | | | | | | | | | | License-Update: Copyright year updated to 2024. Changelog: ============ - Add :func:'embed_image()' worksheet method to embed images in cells. - Fix issue where a horizontal alignment format was ignored if indentation was also set. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-typeguard: upgrade 4.2.1 -> 4.3.0Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | Changelog: ============ - Added support for checking against static protocols - Fixed some compatibility problems when running on Python 3.13 - Fixed test suite incompatibility with pytest 8.2 - Fixed pytest plugin crashing on pytest version older than v7.0.0 (even if it's just present) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tomlkit: upgrade 0.12.3 -> 0.12.5Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | Changelog: ============ - Remove the extra minus sign added to the float value after calculation. - Fix unexpected newline added after accessing the out-of-order table. - Support | and |= operator for tables, and support + and += operator for arrays. - Fix an index error when setting dotted keys in a table. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sympy: upgrade 1.12 -> 1.12.1Wang Mingyu2024-06-111-1/+1
| | | | | | | | Changelog: https://github.com/sympy/sympy/wiki/release-notes-for-1.12.1 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-stevedore: upgrade 5.1.0 -> 5.2.0Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | Changelog: =========== - pre-commit: Integrate bandit - pre-commit: Bump versions - reno: Update master for unmaintained/yoga - Bump hacking - Update python classifier in setup.cfg - Update master for stable/2023.2 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-snagboot: upgrade 1.2 -> 1.3Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== treewide: ---------- support passing USB paths (e.g. 3-1.2) to snagboot instead of vid:pid addresses i.MX: ------- Drop libhidapi dependency and add custom HID implementation Add support for i.MX53 SoCs AM335x: ------- Improve POSIX compliance of setup script and make it compatible with Fish shell AM62x: -------- Update recovery flow for newer versions of U-Boot Add board template for phyBOARD-Lyra snagflash: ---------- Handle "continue" command gracefully Generalize handling of command parameters Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sh: upgrade 2.0.6 -> 2.0.7Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | Changelog: ========= - Fix sh.glob arguments - Misc modernizations Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sdbus: upgrade 0.11.1 -> 0.12.0Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | Changelog: ============ - Fixed async D-Bus properties not having a proper generic typing. - Fixed build not working when systemd has a minor version suffix. - Fixed being unable to name arguments in D-Bus introspection when - method has no return arguments. - Fixed serving D-Bus methods that return a single struct. - Fixed sending extremely large D-Bus messages getting stuck. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.7.0 -> 13.7.1Wang Mingyu2024-06-111-1/+1
| | | | | | | | Changelog: Updated the widths of some characters Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-redis: upgrade 5.0.1 -> 5.0.4Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | Changelog: ============ - Make it possible to customize SSL ciphers - Fix breaking change: message in LockError is now optional - Allow setting the minimum SSL version - Add modules support to Async RedisCluster Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyyaml-include: upgrade 1.3.2 -> 2.1Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ - Remove custom PyYAML types definition module, use that from types-PyYAML instead. - Add mypy hook in pre-commit - Better type hints/annotations - Better type hints - Some optimizations and bugfix - Add py.typed file, make the package PEP-561 friendly - data-class attribute order changed in yaml_include.Constructor - namespace changed to yaml_include - Data class for include statement. - autoload attribute for Constructor class, controlling if open and parse including files, or return a Data object. - Representer class for YAML dumping. - load and lazy_load function - recursive open and parse for Data object. - Custom loader - Introduce fsspec to open including files. Now we can include files from local filesystem, s3, http, sftp ... - New parameters for the tag in YAML - Drop python support blow 3.8 - The tag constructor class YamlIncludeConstructor renamed to Constructor - Readers for JSON, TOML, INI ... YAML only now - The argument relative and encoding was removed from the tag class's load method. - Anchor (Maybe recovered in future) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyroute2: upgrade 0.7.10 -> 0.7.12Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | | | | | Changelog: ============ - cli: move readline import to the script - ci: update tools versions - ci: generic make test target, update docs - ci: rename Linux python sessions in nox - nl80211: decoder improvements - remote: fix dump() on RemoteIPRoute - ndb: add ensure() call - ethtool: ring support - ndb: fix FDB records index - ndb: fix sources objects counting Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymongo: upgrade 4.6.1 -> 4.7.2Wang Mingyu2024-06-111-1/+1
| | | | | | | | | Changelog: ============= Fixed a bug where PyMongo could not be used with the Nuitka compiler. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pybind11-json: upgrade 0.2.13 -> 0.2.14Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | Changelog: ========== - Require CMake 3.5 of higher - refactor: remove redundant move Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyalsaaudio: upgrade 0.10.0 -> 0.11.0Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | | | | Changelog: ========= - Fixed Mixer.getvolume() returning outdated value - Fixed PCM crashing with some sample formats due to buffer size miscalculation - Fixed PCM.read() ignoring overruns (regression in 0.10.0) - Reverted to PCM.write() not throwing an exception on playback buffer underrun; instead, return -EPIPE like PCM.read() does on overrun - Added PCM.avail() and PCM.polldescriptors_revents() functions - Added nominal_bits and physical_bits entries to PCM.info()'s return value - Added Python type hint file, and adjusted documentation accordingly -Improvements to the examples, in particular isine.py Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-py7zr: upgrade 0.20.8 -> 0.21.0Wang Mingyu2024-06-111-1/+1
| | | | | | | | Changelog: Speed up extraction when number of files is large Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-prompt-toolkit: upgrade 3.0.43 -> 3.0.45Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | Changelog: ============ - Improve performance of 'GrammarCompleter' (faster deduplication of completions). - Accept 'os.PathLike' in 'FileHistory' (typing fix). - Fix memory leak in filters. - Improve performance of progress bar formatters. - Fix compatibility when a SIGINT handler is installed by non-Python (Rust, C). - Limit number of completions in buffer to 10k by default (for performance). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pdm: upgrade 2.15.3 -> 2.15.4Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | | | | | Changelog: ========== - Build wheel from sdist if available, to make sure sdist is built properly. This behavior is consistent with pypa/build. - Fix the issue of self-referencing extra dependencies failing to be resolved for local packages. - Fix an issue of max recursion depth error when parsing a poetry project with circular dependencies on local packages. - Fix a bug that VCS dependencies and --self don't work in the exported requirements.txt with hashes. - Fix a cache miss when there exist built wheels for a given link. - Don't try to store caches when --no-cache is given. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pdm-backend: upgrade 2.1.8 -> 2.3.0Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | Changelog: =========== - Remove support for python 3.7 and older - Add tag_filter as a way to pre-filter tags - Error about dynamic project version - ci: CI matrix on macos latest - Use Literal type for valid target values Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-openpyxl: upgrade 3.1.2 -> 3.1.3Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ - Column name caches are slow and use a lot of memory - Improved handling of duplicate named styles - Rich-text can be saved if lxml is not installed - Documentation for sheet views is incorrect - Timedeltas not read properly in read-only mode - List of formulae names contains mistakes - Filters does not handle non-numerical filters - Type checking increases exponentially - Loading pivot tables can be unnecessarily slow - Improve performance when reading files with lots of custom properties - Setting Trendline.name attribute raises exception when saving - Timezone and Zombie formatting cannot be combined. - Column name generation is inefficient and slow - File handlers not always released in read-only mode - Workbook files not properly closed on Python >= 3.11.8 and Windows - Pivot cache definitions using tupleCache had serialisation issues - Add a __repr__ method for Row and Column dimension objects so you don't need to check every time. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-netaddr: upgrade 1.2.1 -> 1.3.0Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | | | Changelog: ========== - Add partial address expansion in IPNetwork via the expand_partial switch, this enables opting into pre-1.1.0 behavior - Fix running the test suite on musl systems - Fix IPAddress IPv6 parsing with ZEROFILL enabled - Fix handling of the NOHOST flag in the IPNetwork copy constructor Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-msgpack: upgrade 1.0.7 -> 1.0.8Wang Mingyu2024-06-111-1/+1
| | | | | | | | | | | Changelog: =========== - exclude C/Cython files from wheel - Build pure Python wheel for minor architectures. - update Cython to 3.0.8 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>