summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* radvd: Fix groupname gid change warningJD Schroeder2023-08-051-0/+1
| | | | | | | | | | | | | | This patch fixes warnings when useradd-staticids.bbclass is used and USERADD_PARAM is used to add the user to a group that has not been explicitly created yet. By adding the GROUPADD_PARAM for the new group being used the warnings for changing the gid from GID-OLD to GID-NEW is eliminated. Warning fixed: radvd: Changing groupname nogroup's gid from (WXYZ) to (JKLM), verify configuration files! Signed-off-by: JD Schroeder <sweng5080@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rsyslog: Fix function inline errors in debug optimizationNicolas Marguet2023-08-052-4/+35
| | | | | | | | | | | Compiler does not inline any functions when using debug optimization (-Og). Hence, remove -Winline flag when compiling with debug optimization. Backport upstream fix: https://github.com/rsyslog/librelp/pull/258 Remove previous local fix: https://github.com/rsyslog/librelp/issues/256 Signed-off-by: Nicolas Marguet <nicolas.marguet@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-python: Remove unused AUTHOR variableMichael Opdenacker2023-08-0526-26/+0
| | | | | | | | | No longer used in generating packages Also creates a possible confusion with the recipe maintainer name. Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remove unused AUTHOR variableMichael Opdenacker2023-08-031-1/+0
| | | | | | | | | No longer used in generating packages Also creates a possible confusion with the recipe maintainer name. Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remove unused AUTHOR variableMichael Opdenacker2023-08-031-1/+0
| | | | | | | | | No longer used in generating packages Also creates a possible confusion with the recipe maintainer name. Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remove unused AUTHOR variableMichael Opdenacker2023-08-031-1/+0
| | | | | | | | | No longer used in generating packages Also creates a possible confusion with the recipe maintainer name. Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remove unused AUTHOR variableMichael Opdenacker2023-08-033-3/+0
| | | | | | | | | No longer used in generating packages Also creates a possible confusion with the recipe maintainer name. Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remove unused AUTHOR variableMichael Opdenacker2023-08-035-5/+0
| | | | | | | | | No longer used in generating packages Also creates a possible confusion with the recipe maintainer name. Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remove unused AUTHOR variableMichael Opdenacker2023-08-0348-48/+0
| | | | | | | | | No longer used in generating packages Also creates a possible confusion with the recipe maintainer name. Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fuse3: update 3.14.1 -> 3.15.1Markus Volk2023-08-021-2/+2
| | | | | Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcamera: bump to latest masterVivien Didelot2023-08-021-1/+1
| | | | | | | | Bump libcamera to latest master, as commit a2eadc40a introduces flicker controls for rpi which are required in latest libcamera-apps. Signed-off-by: Vivien Didelot <vivien.didelot@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* webkitgtk3: upgrade 2.40.2 -> 2.40.5Markus Volk2023-08-023-72/+1
| | | | | | | | | | | | | | | | | | | | | - Remove unneeded patches What’s new in the WebKitGTK 2.40.5 release? - Fix several crashes and rendering issues. What’s new in the WebKitGTK 2.40.4 release? - Fix a bug in JavaScript reading variable arguments in a call. What’s new in the WebKitGTK 2.40.3 release? - Make memory pressure monitor honor memory.memsw.usage_in_bytes if exists. - Include key modifiers in wheel events. - Apply cookie blocking policy to WebSocket handshakes. - Remove accidental dependency on GLib 2.70. - Fix the build with BUBBLEWRAP_SANDBOX disabled. - Fix several crashes and rendering issues. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpsd: make sure gps-utils-python runtime-depends on python3-pyserialGianfranco Costamagna2023-08-021-0/+1
| | | | | | | | | Pyserial is used at runtime (e.g. by ubxtool) Reported-By: Federico Perenno <federico.perenno@abinsula.com> 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>
* iperf3: remove incorrect CVE_PRODUCT settingChen Qi2023-08-011-2/+0
| | | | | | | | | This CVE_PRODUCT setting seems to be copied from the iperf2 recipe. But the CVE_PRODUCT for iperf3 should be just iperf3. For example, https://nvd.nist.gov/vuln/detail/CVE-2023-38403. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* image_types_sparse: Fix syntax errorChris Dimich2023-08-011-5/+6
| | | | | | | | | | | | | | | | | | | | When using the image type: IMAGE_FSTYPES += " wic.sparse" IMAGE_CLASSES += " image_types_sparse" The following error arises: Syntax error: Bad function name So need to remove function in favor of variable. Also remove IMAGE_NAME_SUFFIX as per: https://git.openembedded.org/openembedded-core/commit/?id=26d97acc71379ab6702fa54a23b6542a3f51779c Signed-off-by: Chris Dimich <chris.dimich@boundarydevices.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sip: upgrade 6.7.9 -> 6.7.10Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | Changelog: =========== - Added the --minimum-glibc-version command line option to sip-wheel. - The latest version of ABI v13 is v13.5.2. - The latest version of ABI v12 is v12.12.2. - Bug fixes. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rdma-core: upgrade 46.0 -> 47.0Wang Mingyu2023-08-011-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-zeroconf: upgrade 0.71.0 -> 0.71.4Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | Changelog: =========== Cleanup naming from previous refactoring in ServiceInfo Pin python-semantic-release to fix release process No change re-release to fix wheel builds Add missing if TYPE_CHECKING guard to generate_service_query Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-virtualenv: upgrade 20.24.0 -> 20.24.2Wang Mingyu2023-08-011-1/+1
| | | | | | | | Changelog: Bump pip and wheel Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-typeguard: upgrade 4.0.0 -> 4.1.0Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | | | | | | | | | Changelog: ========== - Added support for passing a tuple as expected_type to check_type(), making it more of a drop-in replacement for isinstance() - Fixed regression where Literal inside a Union had quotes stripped from its contents, thus typically causing NameError to be raised when run - Fixed handling of typing_extensions.Literal on Python 3.8 and 3.9 when typing_extensions>=4.6.0 is installed - Fixed NameError when generated type checking code references an imported name from a method - Fixed docstrings disappearing from instrumented functions - Fixed @typechecked failing to instrument functions when there are more than one function within the same scope - Fixed frozenset not being checked Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tomlkit: upgrade 0.11.8 -> 0.12.1Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | | | Changelog: ======== Make float and int hashable. Allow users to specify encoders for custom types. Fix the incorrect sort when building a table with dotted keys. Complete the methods required for integer and float items. Replace the deprecated usage of datetime.utcnow(). Minor performance improvements when iterating over the escape sequences. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-robotframework: upgrade 6.1 -> 6.1.1Wang Mingyu2023-08-011-1/+1
| | | | | | | | Changelog: https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-6.1.1.rst Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymodbus: upgrade 3.3.2 -> 3.4.1Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Fix serial startup problems. (#1701) pass source_address in tcp client. (#1700) serial server use source_address[0]. (#1699) Examples coverage nearly 100%. (#1694) new async serial (#1681) Docker is not supported (lack of maintainer). (#1693) Forwarder write_coil --> write_coil. (#1691) Change default source_address to (0.0.0.0, 502) (#1690) Update ruff to 0.0.277 (#1689) Fix dict comprehension (#1687) Removed requests dependency from contrib/explain.py (#1688) Fix broken test (#1685) Fix readme badges (#1682) Bump aiohttp from 3.8.3 to 3.8.5 (#1680) pygments from 2.14.0 to 2.15.0 (#1677) Handle partial local echo. (#1675) clarify handle_local_echo. (#1674) async_client: add retries/reconnect. (#1672) Fix 3.11 problem. (#1673) Add new example simulator server/client. (#1671) examples/contrib/explain.py leveraging Rapid SCADA (#1665) _logger missed basicConfig. (#1670) Bug fix for #1662 (#1663) Bug fix for #1661 (#1664) Fix typo in config.rst (#1660) test action_increment. (#1659) test codeql (#1655) mypy complaints. (#1656) Remove self.params from async client (#1640) Drop test of pypy with python 3.8. repair server_async.py (#1644) move common framer to base. (#1639) Restrict Return diag call to bytes. (#1638) use slave= in diag requests. (#1636) transport listen in server. (#1628) CI test. Integrate transport in server. (#1617) fix getFrameStart for ExceptionResponse (#1627) Add min/min to simulator actions. Change to "sync client" in forwarder example (#1625) Remove docker (lack of maintenance). (#1623) Clean defaults (#1618) Reduce CI log with no debug. (#1616) prepare server to use transport. (#1607) Fix RemoteSlaveContext (#1599) Combine stale and lock. (#1608) update pytest + extensions. (#1610) Change version follow PEP 440. (#1609) Fix regression with REPL server not listening (#1604) Remove handler= for server classes. (#1602) Fix write function codes (#1598) transport nullmodem (#1591) move test of examples to subdirectory. (#1592) transport as object, not base class. (#1572) Simple examples. (#1590) transport_connect as bool. (#1587) Prepare dev (#1588) Release corrections. (#1586) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-portion: upgrade 2.4.0 -> 2.4.1Wang Mingyu2023-08-011-1/+1
| | | | | | | | Changelog: Import error when using create_api outside a REPL Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-marshmallow: upgrade 3.19.0 -> 3.20.1Wang Mingyu2023-08-011-1/+1
| | | | | | | | Changelog: Fix call to get_declared_fields: pass dict_cls again Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-jedi: upgrade 0.18.2 -> 0.19.0Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | | Changelog: ========== -Python 3.11 support -Massive improvements in performance for Interpreter (e.g. IPython) users. This especially affects pandas users with large datasets. -Add jedi.settings.allow_unsafe_interpreter_executions to make it easier for IPython users to avoid unsafe executions. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-grpcio: upgrade 1.56.0 -> 1.56.2Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | Changelog: ========== [WRR] backport (#33694) to 1.56 [backport][iomgr][EventEngine] Improve server handling of file descriptor exhaustion Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-api-python-client: upgrade 2.93.0 -> 2.95.0Wang Mingyu2023-08-011-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-gnupg: upgrade 0.5.0 -> 0.5.1Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog: ========== -Added TRUST_EXPIRED to trust_keys. Thanks to Leif Liddy for the patch. -Fix #206: Remove deprecated --always-trust in favour of --trust-model always -Fix #208: Add status_detail attribute to result objects which is populated when the status is 'invalid recipient' (encryption/decryption) or 'invalid signer' (signing). -Add scan_keys_mem() function to scan keys in a string. Thanks to Sky Moore for the patch. -Fix #214: Handle multiple signatures when one of them is invalid or unverified. -A problems attribute was added which holds problems reported by gpg during verification. -Fix #217: Use machine-readable interface to query the gpg version. Thanks to Justus Winter for the patch. -Added the ability to export keys to a file. Thanks to Leif Liddy for the patch. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-socketio: upgrade 5.3.4 -> 5.3.5Wang Mingyu2023-08-011-1/+1
| | | | | | | | Changelog: Prevent allow_unsafe_werkzeug option from being passed to web servers Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-elementpath: upgrade 4.1.4 -> 4.1.5Wang Mingyu2023-08-011-1/+1
| | | | | | | | Changelog: Fix typed value of ElementNode() if self.elem.text is None Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-dnspython: upgrade 2.4.0 -> 2.4.1Wang Mingyu2023-08-011-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cytoolz: upgrade 0.12.1 -> 0.12.2Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | Changelog: ========== Support Cython 3.0 Stop building wheels for PyPy 3.9 and PyPy 3.10, which stopped working for some reason Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-configargparse: upgrade 1.5.5 -> 1.7Wang Mingyu2023-08-011-1/+1
| | | | | | | | Changelog: added several missed global variables from the argparse module Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cmake: upgrade 3.26.4 -> 3.27.0Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | Changelog: ========== chore(deps): bump cmake from 3.26.3 to 3.26.4 chore: continue testing with python 2.7 Update to CMake 3.27.0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-click: upgrade 8.1.5 -> 8.1.6Wang Mingyu2023-08-011-1/+1
| | | | | | | | Changelog: Fix an issue with type hints for @click.group() Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-bitarray: upgrade 2.7.6 -> 2.8.0Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | Changelog: ========= * allow [integer sequence indexing](indexing.rst) by list of indices, * add [masked indexing](indexing.rst) by bitarray masks, * improve `.bytereverse()` docstring Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aiohttp: upgrade 3.8.4 -> 3.8.5Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | Changelog: ======== Upgraded the vendored copy of llhttp_ to v8.1.1 Added information to C parser exceptions to show which character caused the error. Fixed a transport is :data:None error Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-web3: upgrade 6.3.0 -> 6.7.0Wang Mingyu2023-08-011-2/+2
| | | | | | | License-Update: change lib author to EF Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-gunicorn: upgrade 20.1.0 -> 21.2.0Wang Mingyu2023-08-011-2/+2
| | | | | | | | | | License-Update: year updated to 2009-2023 Changelog: fix thread worker: revert change considering connection as idle Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-dill: upgrade 0.3.6 -> 0.3.7Wang Mingyu2023-08-011-2/+2
| | | | | | | | | | | | | | | | | | | | | License-Update: align LICENSE wording with BSD-3-Clause Copyright updated to 2023. Changelog: ========== Fix _is_builtin_module minor changes from PR #554 align LICENSE wording with BSD-3-Clause Python 3 Metaclasses [Support ABC and Enums - Part 1] Abstract Base Classes [Support ABC and Enums - Part 2] fix typo Bump requests from 2.27.1 to 2.31.0 in /docs Fixed crashed in _dill._is_builtin_module when a module's file is None Bump pygments from 2.11.2 to 2.15.0 in /docs Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mdio-tools,mdio-netlink: Upgrade recipes to 1.3.0Wang Mingyu2023-08-013-1/+1
| | | | | | | | | | | | | | | | | | Changelog: =========== Primarily widen the gamut of supported kernel versions, now supporting all kernels from 5.2 and onwards. Added ------ mvls: Support for 88E6320/88E6321 Changed -------- mdio-netlink: Adapt to the upstream C22/C45 refactor. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* logcheck: upgrade 1.4.2 -> 1.4.3Wang Mingyu2023-08-011-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libqb: upgrade 2.0.7 -> 2.0.8Wang Mingyu2023-08-011-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libio-compress-perl: upgrade 2.204 -> 2.206Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | | | | Changelog: =========== * Merge branch 'master' of https://github.com/pmqs/IO-Compress * Merge pull request #50 from haarg/fix-version-check * fix version checks to use correct method * drop rt.cpan from SUPPORT section * add perl 5.38 * add on workflow_dispatch * Add some OO examples Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libio-compress-lzma-perl: upgrade 2.204 -> 2.206Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | Changelog: =========== * drop rt.cpan from SUPPORT section * add perl 5.38 * add on workflow_dispatch * Add some OO examples Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcompress-raw-zlib-perl: upgrade 2.204 -> 2.206Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | | | | | | Changelog: =========== * drop rt.cpan from SUPPORT section * Test::More::isn't warns in perl 5.38 * add zlib-ng 2.1.3 * add zlib-ng 2.1.2 * Change storage of ZLIBNG_VER_STATUS from IV to PV https://github.com/pmqs/Compress-Raw-Zlib/issues/24 * Fix to allow building with C++17 register keyword not allowed in C++17 https://github.com/pmqs/Compress-Raw-Zlib/issues/23 * Change while loop for `LimitOutput` example https://github.com/pmqs/Compress-Raw-Zlib/issues/21 * [doc] zlib.h: Remove duplicate "the" (#22) * Add zlib compat version for 2.0.7 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcompress-raw-lzma-perl: upgrade 2.204 -> 2.206Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | | | Changelog: =========== * Add instructions to deal with build failure on Ubuntu/Debian https://github.com/pmqs/Compress-Raw-Lzma/issues/7 * Test::More isn't warns in Perl 5.38 * perl 5.38 * add on workflow_dispatch * update action/checkout version Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcompress-raw-bzip2-perl: upgrade 2.204 -> 2.206Wang Mingyu2023-08-011-1/+1
| | | | | | | | | | | | | | | Changelog: =========== * drop rt.cpan from SUPPORT section * Test::More::isn't warns in perl 5.38 * Add perl 5.38 & run cron for upstream repos * add on workflow_dispatch * fix reference to github issue * Fix to allow building with C++17 register keyword not allowed in C++17 https://github.com/pmqs/Compress-Raw-Bzip2/issues/11 * Silence warnings on HPUX https://github.com/pmqs/Compress-Raw-Bzip2/issues/10 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gspell: upgrade 1.12.1 -> 1.12.2Wang Mingyu2023-08-011-1/+1
| | | | | | | | Changelog: Small code maintenance: don't use g_slice_*(). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>