summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2024-03-28opkg: refresh patchestimo/opkg_retry-get-lockTim Orling
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2024-03-27opkg: enable --retry-get-lockTim Orling
[YOCTO #15428] Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2024-03-27systemd.bbclass: reproducer for opkg_lock 15428Tim Orling
From Richard Purdie. Add "sleep 5" as a simple reproducer for [1]. [1] https://bugzilla.yoctoproject.org/show_bug.cgi?id=15428 Signed-off-by: Tim Orling <tim.orling@konsulko.com>
2024-03-18linux-yocto: implicitly track oe-core's kernel version for genericarm64Ross Burton
Don't override KBRANCH/SRCREV/LINUX_VERSION, instead use the values in the base oe-core linux-yocto recipe. The advantage of this is that we don't need to update this file every time the kernel is upgraded in oe-core. (From meta-yocto rev: 91c4efe03d96bee555b0c6581f3fae1145e75a68) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18linux-yocto: put COMPATIBLE_MACHINE firstRoss Burton
Move the COMPATIBLE_MACHINE assignments to the top of the file as they effectively control what machines this bbappend is for. (From meta-yocto rev: b9c5cd28856d2b86fb00b5c90d346638bf729c29) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18poky-altcfg: Default to ipk packagingRichard Purdie
poky itself defaults to rpm packaging. In support of the binary distro testing, and for wider testing in general, default poky-altcfg to ipk. Since we plan to have better "binary distro" testing on the autobuilder and we plan to primarily use ipk for this, having ipk based images available as part of our builds is desireable. Since we want systemd based images with ipk, it makes sense to leave standard poky using rpm images but switch poky-altcfg to use ipk. Doing this now for scarthgap gives us a good platform to build off in the long term too. This matches https://git.yoctoproject.org/yocto-autobuilder-helper/commit/?id=a9b4f83c05136dd83e07c0f68ae2ad13507ed36a (From meta-yocto rev: 6d89a66ad8a28d07425cf8886567038950ef65e7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18bash/flex: Ensure BUILD_FLAGS doesn't leak onto targetRichard Purdie
The ptest packages were leaking BUILD_LDFLAGS into the Makefile used on target. Remove these values instead. (From OE-Core rev: f5f20ea9ebae67d7d31b2136ba0076b5cf8609fa) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18classes/pypi: don't expose PYPI_ARCHIVE_NAMERoss Burton
This variable is only used when constructing a SRC_URI and some recipes think that it's the correct value to assign if the PyPi package name isn't the same as the recipe name, when PYPI_PACKAGE is actually all that needs to be set. Also document the variables we expect the recipe to assign if needed, and where the PyPi URL structure is documented. (From OE-Core rev: b842963c98c86bf29cde293f714e6c3131b1e32a) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python-*: don't set PYPI_ARCHIVE_NAME and S when PYPI_PACKAGE is sufficientRoss Burton
There's no need to explicitly set PYPI_ARCHIVE_NAME and S when PYPI_PACKAGE is set correctly. (From OE-Core rev: 271c73ffcb411db2ec167b4d93b0d71484b8daf8) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3_pip517: just count wheels in the directory, not subdirectoriesRoss Burton
The install task uses a recursive find to check that it can only find one wheel, but then does a non-recursive glob to install. This can lead to false-failures if PEP517_WHEEL_PATH points at a directory with subdirectories. Solve this mismatch by making the find non-recusive. (From OE-Core rev: daf31a920328145891b8647e4d4d31eb8895e75b) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18gstreamer1.0: improve test reliabilityRoss Burton
First, libcheck has the ability to increase all test timeouts by an arbitrary multiplier. Because we run our tests on loaded build machines, increase all timeouts by 10x to reduce the chance of load causing failures. Second, use GST_CHECKS_IGNORE to list test cases that should be skipped. Drop skip-aggregator-test.patch as this is now redundant, and also skip gstnetclientclock.c:test_functioning as this is very sensitive to load. [ YOCTO #14808 ] (From OE-Core rev: f6608b9b3a966eb8d01d6ab13c9fc86bfb0bc094) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18curl: increase test timeoutsRoss Burton
We often see multiple curl tests fail during ptest runs, the actual test varies but the output is like this: FAIL: 337: protoc! There was no content at all in the file log/3/server.input. Server glitch? Total curl failure? Returned: 28 Error code 28 is CURLE_OPERATION_TIMEDOUT, so this is almost certainly due to a loaded machine resulting in the tests running slowly. It is notable that the test runner explicitly passes --max-time=13 to curl, so experiment and change this to 600 to see if this solves the problem. [ YOCTO #15268 ] (From OE-Core rev: 86586b356b9d3d04c4b7b50c2cfb8bac9b12947d) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18curl: improve run-ptestRoss Burton
There's no need to run the output of runtests.pl through a sed to get automake-style output, as you can pass -am to get this formatting. Don't run timing dependent tests, as the ptests can run on loaded systems. Add a dependency on the en_US locale because some of the tests require this. (From OE-Core rev: e16fb748e7d0fc33866ff09368ef540ba63f1c63) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18gnupg: upgrade 2.4.4 -> 2.4.5Wang Mingyu
Changelog: ========== * gpg,gpgv: New option --assert-pubkey-algo. * gpg: Emit status lines for errors in the compression layer. * gpg: Fix invocation with --trusted-keys and --no-options. * gpgsm: Allow for a longer salt in PKCS#12 files. * gpgtar: Make --status-fd=2 work on Windows. * scd: Support for the ACR-122U NFC reader. * scd: Suport D-TRUST ECC cards. * scd: Allow auto detaching of kernel drivers; can be disabled with the new compatibility-flag ccid-no-auto-detach. * scd: Allow setting a PIN length of 6 also with a reset code for openpgp cards. * agent: Allow GET_PASSPHRASE in restricted mode. * dirmngr: Trust system's root CAs for checking CRL issuers. * dirmngr: Fix regression in 2.4.4 in fetching keys via hkps. * gpg-wks-client: Make option --mirror work properly w/o specifying domains. * g13,gpg-wks-client: Allow command style options as in "g13 mount foo". * Allow tilde expansion for the foo-program options. * Make the getswdb.sh tool usable outside the GnuPG tree. (From OE-Core rev: cb32045d8f5cc3a61a08b42b943ce8fed84aa82b) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18xev: update 1.2.5 -> 1.2.6Wang Mingyu
Changelog: ========== -Mark graceful_exit as noreturn -Mark global variables as "static" since there's only one source file -gitlab CI: stop requiring Signed-off-by in commits -Fix overflow on XmbLookupString buffer (From OE-Core rev: 65c38c794da7808e9494e28a6e84421c1e6c329e) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18xauth: upgrade 1.1.2 -> 1.1.3Wang Mingyu
Changelog: ========== -unifdef Lynx -unifdef hpux -configure: raise minimum autoconf requirement to 2.70 -configure: Use AC_SYS_LARGEFILE to enable large file support -Unbold brackets for optional n at start of commands -Handle -Wempty-body warning for WRITES() macro -Remove unnecessary casts from malloc() calls -Variable scope reductions, as suggested by cppcheck -config: Add missing AC_CONFIG_SRCDIR (From OE-Core rev: b7c401f5e52e8a08a34d6b0fa6da6251b8eb96a3) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18stress-ng: upgrade 0.17.05 -> 0.17.06Wang Mingyu
Changelog: ========== -New fd-fork stressor, force copying of tens of thousands of file descriptors on fork() system calls -New bitonicsort stressor: sort 32 bit integers using bitonic sort, exercises integer compare, copying/cache/memory. -Add more signals in the nested signal signest stressor -New --progress option to show --seq stressor progress and expected end of run time -Add Arrowlake and Pantherlake CPU support for target clones gcc optimizations -Add IRQ tasklet entry/exit events, IPI Raise event, swiotlb event to --perf option -Add --crypt-method option to allow crypt stressor to be selected -Add --fork-unmap option to fork stressor to force unmapping of shared libs to speed up forks -Add --fpunch-bytes option to fpunch stressor to specify fpunch file size -Add --vforkmany-bytes option to specify mmap size -Add NUMA hit/miss metrics to numa stressor -Fix aiol stressor race condition on termination of pending I/Os -Fix race on peterson stressor with modern out-of-order execution ARM CPUs (From OE-Core rev: fe7cc93340338168b67707087c5f4c02790da903) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18shaderc: update 2023.8 -> 2024.0Wang Mingyu
0001-cmake-disable-building-external-dependencies.patch refreshed for 2024.0 Changelog: ========== - Update dependencies - Utilities: - Use Python3 explicitly in utility scripts (From OE-Core rev: 50e8b09a3f8709a76c6764ad89755feb720135cd) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18repo: upgrade 2.42 -> 2.44Wang Mingyu
(From OE-Core rev: 1f5188767e23c09c9603a22516f4c8efe0b33d1c) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3-trove-classifiers: upgrade 2024.2.23 -> 2024.3.3Wang Mingyu
Changelog: ========= *add "License :: OSI Approved :: NASA Open Source Agreement (NOSA)" * added NOSA * Update src/trove_classifiers/__init__.py (From OE-Core rev: 45e77883bf385e00f1df2e530485d86d77ee224b) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3-pytest: upgrade 8.0.2 -> 8.1.1Wang Mingyu
Changelog: https://docs.pytest.org/en/stable/changelog.html (From OE-Core rev: 29753e41c2f19039dc8ada7318e94bd3169899f8) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3-pytest-subtests: upgrade 0.11.0 -> 0.12.1Wang Mingyu
Changelog: =========== -Fixed compatibility with upcoming pytest 8.1.x. -Python 3.12 is now officially supported -Added typing support -SubTests can be imported from pytest_subtests to type-annotate the subtests fixture. (From OE-Core rev: 2591b53af5451c4adde587bc1f62d251be90a4d2) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3-pyparsing: upgrade 3.1.1 -> 3.1.2Wang Mingyu
Changelog: =========== - Added 'ieee_float' expression to 'pyparsing.common', which parses float values, plus "NaN", "Inf", "Infinity". - Updated pep8 synonym wrappers for better type checking compatibility. - Fixed empty error message bug. This _should_ return pyparsing's exception messages to a former, more helpful form. If you have code that parses the exception messages returned by pyparsing, this may require some code changes. - Added unit tests to test for exception message contents, with enhancement to 'pyparsing.testing.assertRaisesParseException' to accept an expected exception message. - Updated example 'select_parser.py' to use PEP8 names and added Groups for better retrieval of parsed values from multiple SELECT clauses. - Added example 'email_address_parser.py' - Added example 'directx_x_file_parser.py' to parse DirectX template definitions, and generate a Pyparsing parser from a template to parse .x files. - Some code refactoring to reduce code nesting - All internal string expressions using '%' string interpolation and 'str.format()' converted to f-strings. (From OE-Core rev: e53072c394e81cf3cc8b03cbb4292b4f06244e49) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3-pyopenssl: upgrade 24.0.0 -> 24.1.0Wang Mingyu
Changelog: -Removed the deprecated OpenSSL.crypto.PKCS12 and OpenSSL.crypto.NetscapeSPKI. OpenSSL.crypto.PKCS12 may be replaced by the PKCS#12 APIs in the cryptography package. (From OE-Core rev: fc7d44ce8cd63aad632de6daa27ae41b01760348) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3-pygobject: update 3.46.0 -> 3.48.1Wang Mingyu
Changelog: =========== * Fix installation with pip failing in some environments with ModuleNotFoundError in g-ir-scanner :issue:'622' :mr:'302' * test: fix some tests on macOS :mr:'296' * docs: some dark mode fixes :mr:'291' * Drop setuptools in favor of meson-python :mr:'248' :mr:'253' :mr:'254' :mr:'255' :mr:'276' * Fundamental type support :mr:'250' * Fundamental type support for GValues :mr:'264' * pygi-convert.sh: migrate FILE_CHOOSER_CONFIRMATION_* :mr:'266' * gimodule, cairo: Use multi-phase initialization as per PEP-489 :mr:'271' * Deprecate classes in gi.option module :mr:'272' * Deprecate pygtkcompat :mr:'278' * Add support for (optional) nullable GErrors :mr:'259' * Fix CssProvider not valid in GTK2 :mr:'284' * Fix double free if array item cannot be marshalled to Python :mr:'280' * Raise exception if a callback property is encountered :mr:'269' * build: Fix pycairo detection "script" for Windows :mr:'267' * Replace deprecated ''pkgutil.find_loader'' call :mr:'252' * Avoid segfault on property access for incompletely initialized objects :mr:'260' * pygenum: When getting a member instance, use correct key for the lookup :mr:'262' (From OE-Core rev: a9b03d5d225e7fe0d7f1cd90d17fd909dcf13387) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3-libarchive-c: upgrade 5.0 -> 5.1Wang Mingyu
Changelog: =========== Fix the format_name property and move it from the ArchiveEntry class to the ArchiveRead class (From OE-Core rev: 93132127c48aa2f06fb103c24cb6872d14653d95) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3-importlib-metadata: upgrade 7.0.1 -> 7.0.2Wang Mingyu
(From OE-Core rev: 24d90c329810d05202557df616b2280a913a3f7b) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3-hypothesis: upgrade 6.98.15 -> 6.99.4Wang Mingyu
Changelog: ========== -Fix regression caused by using PEP 696 default in TypeVar with Python 3.13.0a3. -improves the type annotations in hypothesis.extra.numpy. -Simplify the type annotation of column() and columns() by using PEP 696 to avoid overloading. -implement type annotations for column(). -add the experimental and unstable backend setting. -fixe issue #3900, a performance regression for arrays() due to the interaction of 6.98.12 -improve the type annotations in hypothesis.extra.numpy, which makes inferred types more precise for both mypy and pyright, and fixes some strict-mode errors on the latter. -pave the way for future shrinker improvements. There is no user-visible change. (From OE-Core rev: 58441348520f7b374a176c4c1637f24828d3afb2) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18python3-cython: upgrade 3.0.8 -> 3.0.9Wang Mingyu
Changelog: =========== Features added -------------- * Assigning "const" values to non-const variables now issues a warning. * Using "noexcept" on a function returning Python objects now issues a warning. * Some C-API usage was updated for the upcoming CPython 3.13. * The deprecated "Py_UNICODE" type is no longer used, unless required by user code. * "std::string.replace()" declarations were added to libcpp.string. Bugs fixed ---------- * Cython generates incorrect (but harmless) self-casts when directly calling final methods of subtypes. Lacking a better solution, the errors that recent gcc versions produce have been silenced for the time being. * Unused variable warnings about clineno were fixed when C lines in tracebacks are disabled. * Subclass deallocation of extern classes could crash if the base class uses GC. * Type checks for Python "memoryview" could use an invalid C function. * Calling final fused functions could generate invalid C code. * Declaring extern enums multiple times could generate invalid C code. * "pyximport" used relative paths incorrectly. * Running Cython with globbing characters ("[]*?") in the module search path could fail. * Literal strings that include braces could change the C code indentation. Other changes ------------- * The "enum class not importable" warning is now only issued once per enum type. (From OE-Core rev: fea7f38d48cce49253224f9cc314e42699fa85ed) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18psmisc: upgrade 23.6 -> 23.7Wang Mingyu
0001-Use-UINTPTR_MAX-instead-of-__WORDSIZE.patch refreshed for 23.7 Changelog: =========== * build-sys: Make disable-statx work * fuser: Fallback to stat() if no statx() Debian 1030747 * fuser: silently ignore EACCES when scanning proc directories * killall: small formatting fixes Debian * pstree: Do not assume root PID * pslog: include config.h * misc: Update gettext to 0.21 (From OE-Core rev: b4190322973f929cc1134f9b6982cee9225c6fd1) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18pango: upgrade 1.52.0 -> 1.52.1Wang Mingyu
Changelog: Fix hexbox drawing (From OE-Core rev: 3e7162341d7e0988cea2d46f8e5a63244aad3e4e) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18mkfontscale: upgrade 1.2.2 -> 1.2.3Wang Mingyu
License-Update: "All rights reserved." removed from copyright. Changelog: ============= -Fix -Wimplicit-float-conversion warnings from clang -Resolve some -Wsign-conversion warnings from clang -Variable scope reductions as recommended by cppcheck -ident.c: clear -Wdeclaration-after-statement warning -mkfontscale.c: handle -Wshadow warnings from gcc -doDirectory: add missing check for malloc() returning NULL -Convert to X.Org standard code style -Remove "All rights reserved" from Oracle copyright notices -gitlab CI: stop requiring Signed-off-by in commits -configure: Use AC_SYS_LARGEFILE to enable large file support -Address s UBSan warning about int left shift overflow -configure: Move check for zlib into its own section -configure: Use pkg-config to find zlib (From OE-Core rev: 5711cfd02a1908989d67cc9c7653d7a32577023b) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18lzip: upgrade 1.24 -> 1.24.1Wang Mingyu
Changelog: main.cc: Fix compilation failure on MinGW because of mkdir. (From OE-Core rev: bb8cacff5e3bdf5b40bd086659bd53371836b49d) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18libxdmcp: upgrade 1.1.4 -> 1.1.5Wang Mingyu
Changelog: ========== -gitlab CI: add xz-utils to container for "make distcheck" -XdmcpWriteHeader: use calloc instead of malloc to alloc buffer -XdmcpWriteHeader: drop unnecessary cast of free() argument -Clear -Wunused-macros warnings when arc4random_buf() is available -Xdmcp.h: add access attributes to function prototypes -configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL -Remove "All rights reserved" from Oracle copyright notices (From OE-Core rev: 4c4ef8e578173ad245aa3cbba721b1329ef1d23d) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18libxcursor: upgrade 1.2.1 -> 1.2.2Wang Mingyu
Changelog: =========== -Remove superfluous and unguarded config.h include -XcursorXcFileLoad: plug memory leak in error paths -Add comment about keeping libxcb-cursor copy of code in sync -If O_CLOEXEC is defined, add "e" to fopen modes -configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL -gitlab CI: stop requiring Signed-off-by in commits (From OE-Core rev: e54a0500861c9050725660c96805a13c1bf727ce) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18libxcb: upgrade 1.16 -> 1.16.1Wang Mingyu
Changelog: =========== -Enable large file support -Fix compilation on Windows -gitlab CI: use latest xcbproto from git to build against -configure.ac: drop `pthread-stubs` dependency on NetBSD -gitlab CI: regenerate container used for builds (From OE-Core rev: 5551369ac633c3c2b67afd1e6a6047895edf5bb0) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18libsdl2: upgrade 2.30.0 -> 2.30.1Wang Mingyu
Changelog: =========== -Fixed a regression causing SDL_WaitEvent() to return spurious failures -Fixed X11 cursors on the latest release of GNOME -Wayland windows automatically have OpenGL enabled again -Fixed memory corruption when converting signed 16-bit audio to float -Fixed audio artifacts when converting signed 8-bit audio to float -Fixed the clip rectangle not being updated when the viewport changes in the SDL renderer -Convert mouse wheel coordinates to the rendering view in the SDL renderer -Fixed a crash handling controllers on macOS -Fixed a crash setting a window fullscreen with Emscripten -Fixed the keyboard automatically popping up when resuming an application on Android (From OE-Core rev: af877a90ddeb2a6764b51ffd35f75ab1356737d4) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18libpng: upgrade 1.6.42 -> 1.6.43Wang Mingyu
Changelog: =========== -Fixed the row width check in png_check_IHDR(). -Added eXIf chunk support to the push-mode reader in pngpread.c. -Added contrib/pngexif for the benefit of the users who would like to inspect the content of eXIf chunks. -Added contrib/conftest/basic.dfa, a basic build-time configuration. -Fixed a preprocessor condition in pngread.c that broke build-time configurations like contrib/conftest/pngcp.dfa. -Added CMake build support for LoongArch LSX. -Fixed a CMake build error that occurred under a peculiar state of the dependency tree. This was a regression introduced in libpng-1.6.41. -Marked the installed libpng headers as system headers in CMake. -Updated the build support for RISCOS. -Updated the makefiles to allow cross-platform builds to initialize conventional make variables like AR and ARFLAGS. -Added various improvements to the CI scripts in areas like version consistency verification and text linting. Added version consistency verification to pngtest.c also. (From OE-Core rev: dcc9204fc0917ad956dd4f5a390c44cd7dfdf983) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18libfontenc: upgrade 1.1.7 -> 1.1.8Wang Mingyu
Changelog: ========== -Set close-on-exec when opening files -configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL -Remove "All rights reserved" from Oracle copyright notices -configure: raise minimum autoconf requirement to 2.70 (From OE-Core rev: 0a157ae3d91753bbd0d33f1c2e801eb09671e225) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18libassuan: upgrade 2.5.6 -> 2.5.7Wang Mingyu
Changelog: ============ * New configure option --with-libtool-modification. * Change the naming of the 64 bit Windows DLL from libassuan6-0.dll to libassuan-0.dll to sync this with what we did for libgpg-error. (From OE-Core rev: 3bd7c347303a0fd77e551f36fc44fb39d75772e6) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18libadwaita: upgrade 1.4.3 -> 1.4.4Wang Mingyu
Changelog: =========== - Fix layout with GtkSettings:gtk-xft-dpi == 0 - AdwNavigationView - Fix signal mentions in push() docs - AdwStatusPage - Fix property notification in set_child() - AdwToolbarView - Fix a typo in docs - Translation updates - British English (From OE-Core rev: 208415f88e826f1b99125eec1c950ddb63bd25e0) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18ghostscript: upgrade 10.02.1 -> 10.03.0Wang Mingyu
avoid-host-contamination.patch refreshed for 10.03.0 configure.ac-add-option-to-explicitly-disable-neon.patch removed since it's included in 10.03.0 (From OE-Core rev: 77965bc5f06e019091cc0f009522be46fc8b44e8) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18gcr: upgrade 4.2.0 -> 4.2.1Wang Mingyu
Changelog: =========== - gcr-ssh-agent: set 'SSH_AUTH_SOCK' - gcr-ssh-agent: port avoid deadlock fix - Updated translations (From OE-Core rev: 590b65ad213d58d185657cd6f7ae1cd2c6f35516) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18encodings: upgrade 1.0.7 -> 1.1.0Wang Mingyu
Changelog: ========== -Add a meson build system -Add the ISO8859-14 encoding (From OE-Core rev: 8442a7053cc59d102a453bdaaed1c793de03377e) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18diffoscope: upgrade 259 -> 260Wang Mingyu
Changelog: ========== * Actually test 7z support in the test_7z set of tests, not the lz4 functionality. * In addition, correctly check for the 7z binary being available (and not lz4) when testing 7z. * Prevent a traceback when comparing a contentful .pyc file with an empty one. (From OE-Core rev: 60c441b4576ec839d95d8727368d544195218007) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18debianutils: upgrade 5.16 -> 5.17Wang Mingyu
Changelog: ============= * run-parts.c: Forward last exit code to preserve exit status. * d/tests/control: Add run-parts.test to autopkgtests. * d/tests/run-parts.test: Move run-parts testing here and add testing for the --exit-on-error option. * d/tests/smoke: Remove duplicate run-parts testing. * acinclude.m4: Bump DEBIANUTILS_VERSION from 5.14 to 5.17. (From OE-Core rev: 4be952718b0f60f87c77bdb6157dfdc28960b611) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18waffle: update 1.7.2 -> 1.8.0Alexander Kanavin
(From OE-Core rev: 89e7835b4ef42cd68605b167b4d928f2978817e2) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18texinfo: update 7.0.3 -> 7.1Alexander Kanavin
Drop texinfo/link-zip.patch (no longer necessary) Add texinfo_cv_sys_iconv_converts_euc_cn=yes as otherwise it's determined via building and running a helper binary. (From OE-Core rev: 61c6b5ed23bef008b1642ad1d79fa72b241f734a) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18tcl: update 8.6.13 -> 8.6.14Alexander Kanavin
Drop recipes-devtools/tcltk/tcl/fix_issue_with_old_distro_glibc.patch (very obsolete) (From OE-Core rev: eed53b8a537f66be869270d98aca4929a5a8d722) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-03-18shadow: update 4.14.2 -> 4.15.0Alexander Kanavin
libcrack support was dropped. (From OE-Core rev: 9f1f3ba7b55a5aac3f6e4fa43a843aebf2304452) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>