summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* ace: include UPSTREAM_CHECK_* to fix UNKNOWN_BROKEN statusAlexandre Truong2024-07-241-2/+3
| | | | | | | | | | | Adding UPSTREAM_CHECK_URI and UPSTREAM_CHECK_REGEX fix UNKNOWN_BROKEN status from running devtool check-upgrade-status. The next version of the package can be found from upstream sources. Signed-off-by: Alexandre Truong <alexandre.truong@smile.fr> Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
* nginx: add PACKAGECONFIG knobs for fastcgi, scgi and uwsgiMaxin John2024-07-231-5/+19
| | | | | | | | fastcgi, scgi and uwsgi are enabled by default in nginx. Provide an option to disable these features (that reduces binary size by 8%). Signed-off-by: Maxin John <maxin.john@gehealthcare.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dediprog-flasher: Add recipeTymoteusz Burak2024-07-223-0/+89
| | | | | | | | | This patch adds the dpcmd utility recipe. It provides software for Dediprog SF100 and SF600 SPI flash programmers. Signed-off-by: Tymoteusz Burak <tymoteusz.burak@3mdeb.com> CC: Khem Raj <raj.khem@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hiredis: remove ANSI color from ptest resultZhang Peng2024-07-221-6/+6
| | | | | | | | This change removes the ANSI color codes from the ptest result. Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pipewire: update 1.2.0 -> 1.2.1Markus Volk2024-07-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PipeWire 1.2.1 (2024-07-12) This is a bugfix release that is API and ABI compatible with previous the previous 1.2.0 release and the 1.0.x releases. Highlights - Fix a regression in the node activation counters that would break audio when using KODI. - Fix a regression in ardour export because of mishandling of sync groups. - Fix a regression in KDE screen preview because of the new async scheduling. - Fix a regression in context.exec argument parsing that would break some existing scripts. - More small bug fixes and improvements. PipeWire - Fix a regression in the node activation counters that would break audio when using KODI. (#4087) - Fix a regression in ardour export because of mishandling of sync groups. (#4083) - Fix a regression in KDE screen preview because of the new async scheduling. Disable async for driver nodes. (#4092) - Slightly improve node shutdown to cause less xruns. - Fix a regression in context.exec argument parsing that would break some existing scripts. - Support custom thread create functions. Modules - Improve snapcast address parsing. (#4093) SPA - Fix multiple %f parsing in ACP for the new plug+a52 profiles. - Improve v4l2 param generation. Improve recovery when framesize or rates are unknown, support vivid. (#4063) JACK - Use the custom thread create function to correctly let module-rt kit manage threads so that we don't end up with priorities on the wrong threads. (#4099) GStreamer - Fix a crash when destroying a stream. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* netplan: upgrade 1.0 -> 1.0.1Yi Zhao2024-07-202-5/+5
| | | | | | | | ChangeLog: https://github.com/canonical/netplan/releases/tag/1.0.1 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dav1d: update 1.4.2 -> 1.4.3Markus Volk2024-07-191-2/+2
| | | | | | | | | | | | | | | - set nobranch=1 to fix: This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository. Changes for 1.4.3 'Road Runner': -------------------------------- 1.4.3 is a small release focused on security issues - AArch64: Fix potential out of bounds access in DotProd H/HV filters - cli: Prevent buffer over-read Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nftables: change ptest output formatJiaying Song2024-07-191-2/+6
| | | | | | | | | This change adds a simple format for the skip results. The format selected is the automake "simple test" format: "result: testname" Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-h5py: remove unneeded CFLAGSChangqing Li2024-07-191-5/+0
| | | | | | | | | | | | | Following errors already fixed in 3.11.0, refer[1][2], so remove the unneeded CFLAGS: h5py/h5l.c:8163:107: error: passing argument 4 of '__pyx_f_4h5py_4defs_H5Lunpack_elink_val' from incompatible pointer type [-Wincompatible-pointer-types] h5py/h5l.c:8163:133: error: passing argument 5 of '__pyx_f_4h5py_4defs_H5Lunpack_elink_val' from incompatible pointer type [-Wincompatible-pointer-types] [1] https://github.com/h5py/h5py/pull/2382/commits/387a22b8c1513800c0401f496b4ed512c1639798 [2] https://github.com/h5py/h5py/pull/2380/commits/704e13ac83b42898514610c4df9f32f367e767e4 Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* apache2: use update-alternatives for httpdTrevor Woerner2024-07-181-0/+4
| | | | | | | | | | | | | | | | | Busybox can optionally provide an httpd server, but by default The Yocto Project defconfig for busybox does not enable it. If it is enabled, busybox puts the resulting /usr/sbin/httpd object under the control of update-alternatives. apache2, on the other hand, does not put /usr/sbin/httpd under the control of update-alternatives. Therefore, in the off chance a user enables the busybox httpd server, it does not play well with apache2. Add update-alternatives information to apache2 so that it plays nicely with busybox which can optionally provide an httpd server at /usr/sbin/httpd. Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-incremental: improve packagingGuðni Már Gilbert2024-07-181-6/+21
| | | | | | | | | | | | | | Summary of changes: 1. Create a new package: python3-incremental-tests 2. Create a new package: python3-incremental-scripts. This is an optional package used to update Twisted locally on the command line. The package requires python3-click. Most, if not all, users don't need this package. 3. There is no longer a circular dependency between python3-twisted and python3-incremental at build time. 5. python3-incremental ipk package shrinks from 167 KiB to 32 KiB Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-geomet: Switch to setuptools_build_meta build backendDimitri Bouras2024-07-181-6/+2
| | | | | | | | | | | | | As per [1] this seems to be the right backend to use Switch to pypi fetcher now that 1.1.0 is released Also see the discussion here [2] [1] https://github.com/geomet/geomet/blob/master/pyproject.toml#L5 [2] https://github.com/openembedded/meta-openembedded/pull/843 Signed-off-by: Khem Raj <raj.khem@gmail.com> Reported-by: Dimitri Bouras <dimitrios.bouras@gmail.com>
* imagemagick: Update status for CVENinette Adhikari2024-07-181-1/+41
| | | | | | | | | | Update status for: CVE-2016-7532, CVE-2014-9822, CVE-2014-9823, CVE-2014-9824, CVE-2014-9825, CVE-2014-9826, CVE-2014-9827, CVE-2014-9828, CVE-2014-9829, CVE-2014-9830, CVE-2014-9831, CVE-2014-9848, CVE-2014-9852, CVE-2014-9853, CVE-2014-9854, CVE-2014-9907, CVE-2016-10062, CVE-2016-10144, CVE-2016-10145, CVE-2016-10146, CVE-2016-5118, CVE-2016-7513, CVE-2016-7514, CVE-2016-7515, CVE-2016-7516, CVE-2016-7517, CVE-2016-7518, CVE-2016-7519, CVE-2016-7520, CVE-2016-7521, CVE-2016-7522, CVE-2016-7523, CVE-2016-7524, CVE-2016-7525, CVE-2016-7526, CVE-2016-7527, CVE-2016-7528, CVE-2016-7529, CVE-2016-7530, CVE-2016-7533 CPE is incorrect, the current version is not affected. Signed-off-by: Ninette Adhikari <ninette@thehoodiefirm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* yelp: fix unterminated stringAlba Herrerías2024-07-181-0/+2
| | | | | Signed-off-by: Alba Herrerias <alba@thehoodiefirm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* vbxguestdrivers: upgrade 7.0.18 -> 7.0.20Gianfranco Costamagna2024-07-171-2/+2
| | | | | | | | Also update copying file md5sum Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nftables: upgrade 1.0.9 -> 1.1.0Yi Zhao2024-07-173-102/+1
| | | | | | | | | | ChangeLog: https://www.netfilter.org/projects/nftables/files/changes-nftables-1.1.0.txt * Drop backport patches. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libnftnl: upgrade 1.2.6 -> 1.2.7Yi Zhao2024-07-171-1/+1
| | | | | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* geary: update 44.1 -> 46.0Markus Volk2024-07-173-58/+44
| | | | | | | | | | | | - Remove 0001-meson-Use-PKG_CONFIG_SYSROOT_DIR-when-using-pkg-conf.patch Using it pulls buildpath into the client library and thus breaks reproducibility - Add a patch to fix more reproducibility issues - Add soup3 dependency - inherit gsettings - remove CFLAGS:append, tested to be working with clang 18.1.6 for x86_64 musl Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nss: update 3.101 > 3.102Markus Volk2024-07-161-1/+1
| | | | | Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* apache2: Upgrade 2.4.60 -> 2.4.61Archana Polampalli2024-07-161-1/+1
| | | | | | | | | | | | Security fixes: CVE-2024-39884 Apache HTTP Server: source code disclosure with handlers configured via AddType Changelog: https://github.com/apache/httpd/blob/2.4.61/CHANGES https://httpd.apache.org/security/vulnerabilities_24.html Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencv: Add missing trailing slashKhem Raj2024-07-151-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvm2: install all systemd service filesMarkus Volk2024-07-151-1/+1
| | | | | | | | | | | | | This fixes an install-vs-shipped issue NOTE: Executing Tasks ERROR: lvm2-2.03.25-r0 do_package: QA Issue: lvm2: Files/directories were installed but not shipped in any package: /usr/lib/systemd/system/lvm-devices-import.path /usr/lib/systemd/system/lvm-devices-import.service Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. lvm2: 2 installed and not shipped files. [installed-vs-shipped] Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencv: Check GTK3DISTROFEATURES for enabling gtk supportKhem Raj2024-07-151-1/+1
| | | | | | | gtk with wayland without x11 works equally well, there is no need for x11 alone to enable it. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* android-tools: make PN-adbd as a systemd packageDmitry Baryshkov2024-07-151-0/+1
| | | | | | | | | The android-tools package doesn't include the systemd units. Instead adbd unit is a part of the android-tools-adbd package. Set the SYSTEMD_PACKAGES variable accordingly. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* zenity: upgrade 4.0.1 -> 4.0.2Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | | | | Changelog: ============ - tree: Enable 'activates-default' in GtkSearchEntry - main: Fix command-line signal signature - filesel: Passing a dir with trailing '/' should open that dir - colview: Return if nth item of row exceeds num items in row - tree: Don't try to print nonexisting items - colview: Add more sanity checks - colview: Clicking on column titles should sort items - filesel: Allow a non-existing filename with --save and add associated test - filesel: Remove spurious extra _show() call Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xterm: upgrade 392 -> 393Wang Mingyu2024-07-151-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wolfssl: upgrade 5.7.0 -> 5.7.2Wang Mingyu2024-07-151-1/+1
| | | | | | | | Changelog: https://github.com/wolfSSL/wolfssl/releases/tag/v5.7.2-stable Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wireshark: upgrade 4.2.5 -> 4.2.6Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | | | | | Bugfixes: =========== * RADIUS dissector's dictionary loading broken in many ways. * 3.4 -> 3.6.5 ASCII display is broken on CentOS 7. * Funnel/Lua: Closing child window disconnects buttons of parent. * Lua detection fails with Alpine Linux: missing: LUA_LIBRARIES. * vnd.3gpp.5gnas payloads of type SMS not decoded inside HTTP2 5GC. * TCP Stream Graphs green sliding window line not displayed correctly. * Wireshark window doesn't fully fit on screen on small resolutions and can't be resized properly on Russian language. * Wireshark started from command line doesn't set gui.fileopen_remembered_dir correctly on Windows. * Wireshark expects wrong length for DHCP Relay Agent Information Source Port Suboption. * SIP P-Access-Network-Info header not correctly decoded. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tree: upgrade 2.1.1 -> 2.1.3Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== - Mostly a brown-paper bag release to fix the below regression and add a feature I forgot to add. - Fix regression in search() function that broke --fromfile - Allow the -L option to accept its parameter immediately (with no space) instead of requiring it be the next option word. - Fix issue where --gitignore does not think a pattern with a singular terminal '/' (indicating it matches only directories,) is a relative path. - Don't emit the error 'recursive, not followed' if when using -L, the depth would prevent descending anyway. This also fixes up a JSON output error (missing comma) when this happens. - Don't prematurely sort files/directories with --from*file. - Various seg-faults fixed (Hanqin Guan (The OSLab of Peking University)): - Make doubly sure that there is actually a previous path entry when reading from a tabbed file. - Make sure there is actually a file entity when applying the link info to it when reading fromfile using --fflinks. - Increase space for the path a little in listdir(), just to be sure. - Make sure that there is no topsort (--dirsfirst / --filesfirst) if there is no basesort (-U). - Make sure gittrim() function can handle a null string. - Update email address to steve.baker.llc@gmail.com from ice@mama.indstate.edu which has been permanently disabled. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* thin-provisioning-tools: upgrade 1.0.12 -> 1.0.13Wang Mingyu2024-07-152-103/+105
| | | | | | | | | | | | | | | | Changelog: ========== - Extend cache_check --clear-needs-check-flag to fix leaked blocks - Suppress error messages from cache/era_dump on broken pipe error - Add BTreeIterator - Support listing the highest mapped block in thin_ls - Support repairing device details tree from thin_repair - Support vectored write in SyncIoEngine - Fix missing version option in thin_explore - Fix subcommand parsing in dev-tools Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sngrep: upgrade 1.8.1 -> 1.8.2Wang Mingyu2024-07-151-1/+1
| | | | | | | | Changelog: capture: fix possible buffer overflow while processing RTP payload Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qcbor: upgrade 1.3 -> 1.4Wang Mingyu2024-07-151-1/+1
| | | | | | | | | Changelog: =========== https://github.com/laurencelundblade/QCBOR/releases/tag/v1.4 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-validators: upgrade 0.28.3 -> 0.32.0Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | Changelog: =========== - feat: add validator for sha384 hash - feat: add validators for base16 and base32 encodings - feat: add validator for trx addresses - patch: moves btc_address to crypto_addresses - feat: add validator for eth addresses - chore: update dev deps; adds python EOL info Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-types-setuptools: upgrade 70.1.0.20240627 -> 70.3.0.20240710Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | Changelog: ============ - Support for loading distutils from the standard library is now deprecated, including use of SETUPTOOLS_USE_DISTUTILS=stdlib and importing distutils before importing setuptools. - Bugfix for building Cython extension on Windows - Updated distutils including significant changes to support Cygwin and mingw compilers. - Fix distribution name normalisation (PEP 625) for valid versions that are not canonical (e.g. 1.0-2). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tomlkit: upgrade 0.12.5 -> 0.13.0Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | | | | | Changelog: ============= - fix: Test failures with Python 3.13.0a4: test_dates_behave_like_dates and test_times_behave_like_times - [pre-commit.ci] pre-commit autoupdate - fix: Revert "fix: Construction of OutOfOrderTableProxy can cause newlines to be inserted (#347)" - Update tests action - fix: tomlkit 0.12.5 : Encoder contract interferes with external TypeErrors raised in encoders - chore(deps-dev): bump certifi from 2024.2.2 to 2024.7.4 - chore(deps-dev): bump urllib3 from 2.0.7 to 2.2.2 - chore(deps-dev): bump requests from 2.31.0 to 2.32.2 - chore(deps-dev): bump zipp from 3.15.0 to 3.19.1 - fix: keep the nested out of order table Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sympy: upgrade 1.12.1 -> 1.13.0Wang Mingyu2024-07-151-1/+1
| | | | | | | | Changelog: https://github.com/sympy/sympy/wiki/release-notes-for-1.13.0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-py7zr: upgrade 0.21.0 -> 0.21.1Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | | Changelog: ============ - Treat zero byte stream as a file. - feat: check targets argument type for read and extract method - feat: Add recursive sudirectories and files extraction. - feat: ensure unpack_7zarchive closes the archive - docs: Use same format for unpack_archive example as for make_archive - fix bug in function is_64bit() - feat: make unpack_7zarchive raise ReadError for invalid files Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-prettytable: upgrade 3.10.0 -> 3.10.2Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | Changelog: =========== - Fix typo in README.md - Change how size of headers are calculated to fix ColorTable with title Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-portalocker: upgrade 2.10.0 -> 2.10.1Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | Changelog: ========== - increasing the timeouts to make the osx tests less flaky - Fix spelling error Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pillow: upgrade 10.3.0 -> 10.4.0Wang Mingyu2024-07-152-8/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0001-support-cross-compiling.patch refreshed for 10.4.0 Changelog: =========== - Raise FileNotFoundError if show_file() path does not exist - Improved reading 16-bit TGA images with colour - Deprecate non-image ImageCms modes - Fixed processing multiple JPEG EXIF markers - Do not preserve EXIFIFD tag by default when saving TIFF images - Added ImageFont.load_default_imagefont() - Added Image.WARN_POSSIBLE_FORMATS - Remove zero-byte end padding when parsing any XMP data - Do not detect Ultra HDR images as MPO - Raise SyntaxError specific to JP2 - Do not use first frame duration for other frames when saving APNG images - Consider I;16 pixel size when using a 1 mode mask - When saving multiple PNG frames, convert to mode rather than raw mode - Added byte support to FreeTypeFont - Allow float center for rotate operations - Do not read layers immediately when opening PSD images - Restore original thread state - Read IM and TIFF images as RGB, rather than RGBX - Only preserve TIFF IPTC_NAA_CHUNK tag if type is BYTE or UNDEFINED - Clarify ImageDraw2 error message when size is missing - Support unpacking more rawmodes to RGBA palettes - Removed support for Qt 5 - Improve ImageFont.freetype support for XDG directories on Linux - Improved consistency of XMP handling - Use pkg-config to help find libwebp and raqm - Accept 't' suffix for libtiff version #8126, - Deprecate ImageDraw.getdraw hints parameter - Added ImageDraw circle() - Add mypy target to Makefile - Added more modes to Image.MODES - Deprecate BGR;15, BGR;16 and BGR;24 modes - Fix ImagingAccess for I;16N on big-endian - Support reading P mode TIFF images with padding - Deprecate support for libtiff < 4 - Corrected ImageShow UnixViewer command - Use functools.cached_property in ImageStat - Add support for reading BITMAPV2INFOHEADER and BITMAPV3INFOHEADER - Support reading CMYK JPEG2000 images Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pdm-backend: upgrade 2.3.1 -> 2.3.2Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | Changelog: =========== - Detect src layout only if it exists and included by build config - Use compatible is_relative_to for Python 3.8 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-oletools: upgrade 0.60.1 -> 0.60.2Wang Mingyu2024-07-151-2/+2
| | | | | | | | | | | | | | | | Changelog: ============ - fixed a bug in open_slk - fixed a bug due to new PROJECTCOMPATVERSION record in dir stream - oleobj: fixed SyntaxError with Python 3.12 - rtfobj: fixed SyntaxError with Python 3.12 - clsid: added CLSIDs for MSI, Zed - ftguess: added MSI, PNG and OneNote formats - pyxswf: fixed python 3.12 compatibility - setup/requirements: allow pyparsing 3 to solve install issues Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-moteus: upgrade 0.3.71 -> 0.3.72Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | Changelog: =========== - Properly decode AksIM-2 warning and error bits - Make MA732 trimming for off-axis applications actually work - When encoders are no longer active, stop using them and trigger a fault - Limit the commanded velocity to something physically achievable - Fault if a non-reducing gear ratio is configured without overriding - Default bemf_feedforward to 0.0, and fault if it is configured non-zero without acceleration limits or override Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-humanize: upgrade 4.9.0 -> 4.10.0Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | | Changelog: ========== - Remove shebang from filesize.py - Fix test failures on systems with 32-bit time_t - Fix handling of negative time deltas - Fix naturaldelta sub second precision - Reword the French translation of very small amount of time - Fix Arabic localization - metric: Fix precision format Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-coverage: upgrade 7.5.4 -> 7.6.0Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | Changelog: =========== - Exclusion patterns can now be multi-line - The JSON report now includes per-function and per-class coverage information. - Fixed an incorrect calculation of "(no class)" lines in the HTML classes report. - Python 3.13.0b3 is supported. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-astroid: upgrade 3.2.2 -> 3.2.3Wang Mingyu2024-07-151-1/+1
| | | | | | | | Changelog: Fix AssertionError when inferring a property consisting of a partial function. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-argh: upgrade 0.31.2 -> 0.31.3Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | Changelog: =========== - Fix type annotation of errors in wrap_errors - fix: exposing func arg in CLI under a different name via deco - fix: tests were failing under Python 3.13 - Docs update in similar.rst Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poke: upgrade 4.1 -> 4.2Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============= * Bug fixes - Handle 'strdup' error correctly in mmap IO device. - Exclude unnamed fields when traversing struct types. Fixes bug 31836. - Replace 'strtok' with 'strtok_r' in pkl-ast. - Fix the compiler to not accept invalid use of 'break'/'continue' statements. - Fix the compiler to emit the correct code for valid 'break'/'continue' statements in more unconventional cases. - Fix 'iogetb' to always produce a bit offset due to signature of 'iobias' function. - Fix 'pkl_loc_to_source' to handle compilation from buffer correctly. - Fix use of 'assert' function in parser. * Improvements - Diagnostics for invalid casts has been improved. - Improve diagnostics of '.ios' command. * Build system update - Handle execution errors for 'pokefmt' tests. * Pickles update - 'diff_structured' function in 'diff' pickle has been fixed to detect "simple types" correctly (types that have value semantics instead of reference semantics). * Documentation update - Update reference manual to use '.vm disa' as short name for '.vm disassemble' instead of '.vm dis'. * Internal changes - Internal machinery for compiler builtins has been removed. These were no longer necessary. * Jitter update - Update jitter submodule to incorporate a fix for 'configure' portability issue on some old systems. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* networkmanager: upgrade 1.48.2 -> 1.48.4Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | Changelog: ========== * Support matching a OVS system interface by MAC address. * When looking up the system hostname from the reverse DNS lookup of addresses configured on interfaces, NetworkManager now takes into account the content of /etc/hosts. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nano: upgrade 8.0 -> 8.1Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | | | Changelog: =========== • The idiom 'nano filename:linenumber' is understood only when the option --colonparsing (or 'set colonparsing') is used. • Modern bindings are *not* activated when nano's invocation name starts with "e", as it jars with Debian's alternatives system. • New bindable function 'cycle' first centers the current row, then moves it to the top of the viewport, then to the bottom. It is bound by default to ^L. • Option --listsyntaxes/-z lists the names of available syntaxes. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>