]> git.feebdaed.xyz Git - 0xmirror/buildroot.git/log
0xmirror/buildroot.git
33 hours agopackage/dash: bump to version 0.5.13
Giulio Benetti [Tue, 23 Dec 2025 19:46:52 +0000 (20:46 +0100)]
package/dash: bump to version 0.5.13

For change log, see:
https://git.kernel.org/pub/scm/utils/dash/dash.git/log/?h=v0.5.13

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
[Julien:
 - replace change log link
 - import upstream sha512 to match hash file comment
 - add pgp signature comment
]
Signed-off-by: Julien Olivain <ju.o@free.fr>
34 hours agoDEVELOPERS: add Giulio Benetti for package zlib-ng
Giulio Benetti [Tue, 23 Dec 2025 20:22:29 +0000 (21:22 +0100)]
DEVELOPERS: add Giulio Benetti for package zlib-ng

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
34 hours agopackage/zlib-ng: bump to 2.3.2
Giulio Benetti [Tue, 23 Dec 2025 20:22:28 +0000 (21:22 +0100)]
package/zlib-ng: bump to 2.3.2

Release Notes: https://github.com/zlib-ng/zlib-ng/releases/tag/2.3.2

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
35 hours agoDEVELOPERS: add Giulio Benetti to vim
Giulio Benetti [Wed, 24 Dec 2025 11:24:04 +0000 (12:24 +0100)]
DEVELOPERS: add Giulio Benetti to vim

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
35 hours agopackage/vim: bump package to version 9.1.2017
Giulio Benetti [Wed, 24 Dec 2025 11:24:03 +0000 (12:24 +0100)]
package/vim: bump package to version 9.1.2017

Changelog:
https://github.com/vim/vim/compare/v9.1.1989...v9.1.2017

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
35 hours agoDEVELOPERS: add Giulio Benetti to package util-linux
Giulio Benetti [Wed, 24 Dec 2025 19:59:35 +0000 (20:59 +0100)]
DEVELOPERS: add Giulio Benetti to package util-linux

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
35 hours agoDEVELOPERS: add Giulio Benetti to tmux
Giulio Benetti [Thu, 25 Dec 2025 21:19:07 +0000 (22:19 +0100)]
DEVELOPERS: add Giulio Benetti to tmux

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
35 hours agopackage/tmux: bump to version 3.6a
Giulio Benetti [Thu, 25 Dec 2025 21:19:06 +0000 (22:19 +0100)]
package/tmux: bump to version 3.6a

Changes: https://github.com/tmux/tmux/blob/3.6a/CHANGES
Release Notes: https://github.com/tmux/tmux/issues/4745

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
3 days agopackage/rpi-firmware: bump version to 063bcab
Peter Seiderer [Thu, 18 Dec 2025 20:11:47 +0000 (21:11 +0100)]
package/rpi-firmware: bump version to 063bcab

Version 063bcab matches with kernel 6.12.61

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
3 days agoconfigs/raspberrypi*: bump kernel version to 21b4101 (6.12.61)
Peter Seiderer [Thu, 18 Dec 2025 20:11:46 +0000 (21:11 +0100)]
configs/raspberrypi*: bump kernel version to 21b4101 (6.12.61)

Now based on 6.12.61 (from 6.12.41)

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
4 days agopackage/vim: inline the VIM_REMOVE_DOCS variable
Thomas Petazzoni [Tue, 23 Dec 2025 18:10:11 +0000 (19:10 +0100)]
package/vim: inline the VIM_REMOVE_DOCS variable

The VIM_REMOVE_DOCS variable is currently a post install target hook,
but it can just as well be done inside VIM_INSTALL_TARGET_CMDS
directly.

The hook was registered conditionally based on BR2_PACKAGE_VIM_RUNTIME
because prior to commit f7a07f42f70a73806fd2f6bf3662fc6907845fe9, the
hook's logic was:

    find $(TARGET_DIR)/usr/share/vim -type f -name "*.txt" -delete

which was failing if BR2_PACKAGE_VIM_RUNTIME was not enabled, as
$(TARGET_DIR)/usr/share/vim would not exist.

But since this commit, the hook logic is:

    $(RM) -rf $(TARGET_DIR)/usr/share/vim/vim*/doc/

which obviously won't fail if $(TARGET_DIR)/usr/share/vim doesn't
exist.

So let's simplify the whole logic.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
4 days agopackage/vim: refactor install target logic
Thomas Petazzoni [Tue, 23 Dec 2025 18:10:10 +0000 (19:10 +0100)]
package/vim: refactor install target logic

Instead of calling $(MAKE) multiple times, let's call it once, with
all installation targets needed. We introduce a VIM_INSTALL_TARGETS
variable to collect the list of make install targets that need to be
invoked.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
4 days agopackage/vim: use more conventional $(MAKE) construct
Thomas Petazzoni [Tue, 23 Dec 2025 18:10:09 +0000 (19:10 +0100)]
package/vim: use more conventional $(MAKE) construct

In Buildroot, we more commonly do:

   $(MAKE) -C $(@D)/src

than:

   cd $(@D)/src; $(MAKE)

so let's adopt this more conventional style.

This coding style in vim.mk dates from when the package was introduced
by Peter Korsgaard back in 2010.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
4 days agopackage/vim: fix reinstallation
Thomas Petazzoni [Tue, 23 Dec 2025 18:10:08 +0000 (19:10 +0100)]
package/vim: fix reinstallation

While not very common, it is nice when package re-installation
works. Unfortunately the "installlinks" target of vim installs links
with "ln -s", causing a package reinstallation to fail with:

cd /home/thomas/buildroot/br/output-all/target/usr/bin; ln -s vim ex
cd /home/thomas/buildroot/br/output-all/target/usr/bin; ln -s vim view
cd /home/thomas/buildroot/br/output-all/target/usr/bin; ln -s vim rvim
cd /home/thomas/buildroot/br/output-all/target/usr/bin; ln -s vim rview
cd /home/thomas/buildroot/br/output-all/target/usr/bin; ln -s vim vimdiff
ln: failed to create symbolic link 'ex': File exists
ln: failed to create symbolic link 'view': File exists
make[2]: *** [Makefile:2749: /home/thomas/buildroot/br/output-all/target/usr/bin/ex] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [Makefile:2752: /home/thomas/buildroot/br/output-all/target/usr/bin/view] Error 1
ln: failed to create symbolic link 'rvim': File exists
ln: failed to create symbolic link 'rview': File exists

To fix this, we remove the target links before proceeding with the
installation.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
4 days agopackage/rtl8822cs bump driver version to latest with support kernel 6.18
Viacheslav Bocharov [Tue, 23 Dec 2025 08:15:31 +0000 (11:15 +0300)]
package/rtl8822cs bump driver version to latest with support kernel 6.18

Update rtl8822cs driver for Kernel 6.17/6.18
Fixes: https://autobuild.buildroot.org/results/bafd5af112e49359201580ece3a12bc8724914fe/
Signed-off-by: Viacheslav Bocharov <adeep@lexina.in>
Signed-off-by: Julien Olivain <ju.o@free.fr>
5 days agoDEVELOPERS: add Giulio Benetti to libtirpc and rpcbind
Giulio Benetti [Mon, 22 Dec 2025 21:28:42 +0000 (22:28 +0100)]
DEVELOPERS: add Giulio Benetti to libtirpc and rpcbind

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
5 days agopackage/libfuse3: bump to version 3.18.1
Giulio Benetti [Mon, 22 Dec 2025 18:05:45 +0000 (19:05 +0100)]
package/libfuse3: bump to version 3.18.1

Release notes:
https://github.com/libfuse/libfuse/releases/tag/fuse-3.18.1

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
5 days agopackage/grout: bump to 0.14.2 version
Maxime Leroy [Mon, 15 Dec 2025 11:43:00 +0000 (12:43 +0100)]
package/grout: bump to 0.14.2 version

See the release note of the new versions:
https://github.com/DPDK/grout/releases/tag/v0.14.0
https://github.com/DPDK/grout/releases/tag/v0.14.1
https://github.com/DPDK/grout/releases/tag/v0.14.2

Since v0.14.0, Grout uses the libmnl [1], the dependency are updated in
consequence. Grout also requires VRF support in the kernel, as it creates
a VRF on the Linux side to allow TCP/UDP termination by Linux
applications in different L3 domains. [2]

[1] https://github.com/DPDK/grout/commit/2eb97af1e8
[2] https://github.com/DPDK/grout/commit/391f9fa032

Signed-off-by: Maxime Leroy <maxime@leroys.fr>
Signed-off-by: Julien Olivain <ju.o@free.fr>
5 days agopackage/dpdk: bump to 25.11 version
Maxime Leroy [Mon, 15 Dec 2025 11:42:56 +0000 (12:42 +0100)]
package/dpdk: bump to 25.11 version

See the release note of the new versions:
- https://doc.dpdk.org/guides/rel_notes/release_25_11.html

Signed-off-by: Maxime Leroy <maxime@leroys.fr>
Signed-off-by: Julien Olivain <ju.o@free.fr>
5 days agopackage/python-django: bump to 6.0
Marcus Hoffmann [Mon, 22 Dec 2025 14:54:27 +0000 (15:54 +0100)]
package/python-django: bump to 6.0

Release Notes: https://docs.djangoproject.com/en/6.0/releases/6.0/

A few changes in the license files and an actual (sub)-license update:

* django/contrib/gis/measure.py -> formatting change
* django/contrib/admin/static/admin/img -> svg files got uupdated and
  the new ones are licensed under CC-BY-4.0; separate LICENSE file got
  removed, License is now mentioned in the readme
* django/utils/archive.py -> File got updated, license (which is only
  the header) did not change.

Remove the comment about django site having an inconvenient download
URL. We download pretty much all python package from pypi.org, so doing
that for django shouldn't need a separate comment.

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Julien Olivain <ju.o@free.fr>
5 days agopackage/python-django: security bump to 5.2.9
Marcus Hoffmann [Mon, 22 Dec 2025 14:54:26 +0000 (15:54 +0100)]
package/python-django: security bump to 5.2.9

Fixes:
* CVE-2025-13372: Potential SQL injection in FilteredRelation column aliases on PostgreSQL
* CVE-2025-64460: Potential denial-of-service vulnerability in XML Deserializer

Full release notes: https://docs.djangoproject.com/en/6.0/releases/5.2.9/

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-paramiko: bump version to 4.0.0
Bernd Kuhls [Sat, 20 Dec 2025 21:42:06 +0000 (22:42 +0100)]
package/python-paramiko: bump version to 4.0.0

https://github.com/paramiko/paramiko/blob/4.0.0/sites/www/changelog.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-multipart: bump version to 0.0.21
Bernd Kuhls [Sat, 20 Dec 2025 21:42:05 +0000 (22:42 +0100)]
package/python-multipart: bump version to 0.0.21

https://github.com/Kludex/python-multipart/blob/0.0.21/CHANGELOG.md

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-markupsafe: bump version to 3.0.3
Bernd Kuhls [Sat, 20 Dec 2025 21:42:04 +0000 (22:42 +0100)]
package/python-markupsafe: bump version to 3.0.3

https://github.com/pallets/markupsafe/blob/3.0.3/CHANGES.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-botocore: bump version to 1.42.14
Bernd Kuhls [Sat, 20 Dec 2025 21:42:02 +0000 (22:42 +0100)]
package/python-botocore: bump version to 1.42.14

https://github.com/boto/botocore/blob/1.42.14/CHANGELOG.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-boto3: bump version to 1.42.14
Bernd Kuhls [Sat, 20 Dec 2025 21:42:01 +0000 (22:42 +0100)]
package/python-boto3: bump version to 1.42.14

https://github.com/boto/boto3/blob/1.42.14/CHANGELOG.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-incremental: bump version to 24.11.0
Bernd Kuhls [Sat, 20 Dec 2025 21:42:00 +0000 (22:42 +0100)]
package/python-incremental: bump version to 24.11.0

https://github.com/twisted/incremental/blob/incremental-24.11.0/NEWS.rst

Switched setup type to hatch:
https://github.com/twisted/incremental/commit/c7104f892616fa37f99c6620cc85016d2f86df88

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-grpclib: bump version to 0.4.9
Bernd Kuhls [Sat, 20 Dec 2025 21:41:59 +0000 (22:41 +0100)]
package/python-grpclib: bump version to 0.4.9

https://github.com/vmagamedov/grpclib/blob/v0.4.9/docs/changelog/index.rst

Updated license hash due to upstream commit:
https://github.com/vmagamedov/grpclib/commit/069f2493abcd7734231e4071d5ecb9b83852a8a9

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-google-auth: bump version to 2.45.0
Bernd Kuhls [Sat, 20 Dec 2025 21:41:58 +0000 (22:41 +0100)]
package/python-google-auth: bump version to 2.45.0

https://github.com/googleapis/google-auth-library-python/blob/v2.45.0/CHANGELOG.md

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-fonttools: bump version to 4.61.1
Bernd Kuhls [Sat, 20 Dec 2025 21:41:57 +0000 (22:41 +0100)]
package/python-fonttools: bump version to 4.61.1

https://github.com/fonttools/fonttools/releases/tag/4.61.1

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-flask-jsonrpc: bump version to 4.0.0
Bernd Kuhls [Sat, 20 Dec 2025 21:41:56 +0000 (22:41 +0100)]
package/python-flask-jsonrpc: bump version to 4.0.0

https://github.com/cenobites/flask-jsonrpc/releases/tag/v4.0

Switched setup type to hatch and updated license file:
https://github.com/cenobites/flask-jsonrpc/commit/a4031daaaf54b67f002b62de162a904f3f34cee4

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-filelock: security bump version to 3.20.1
Bernd Kuhls [Sat, 20 Dec 2025 21:41:55 +0000 (22:41 +0100)]
package/python-filelock: security bump version to 3.20.1

https://github.com/tox-dev/filelock/releases/tag/3.20.1

Fixes CVE-2025-68146: https://github.com/advisories/GHSA-w853-jp5j-5j7f

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-fastapi: bump version to 0.126.0
Bernd Kuhls [Sat, 20 Dec 2025 21:41:54 +0000 (22:41 +0100)]
package/python-fastapi: bump version to 0.126.0

https://github.com/fastapi/fastapi/blob/0.126.0/docs/en/docs/release-notes.md

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-dtschema: bump version to 2025.12
Bernd Kuhls [Sat, 20 Dec 2025 21:41:53 +0000 (22:41 +0100)]
package/python-dtschema: bump version to 2025.12

https://github.com/devicetree-org/dt-schema/releases/tag/v2025.12

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-docutils: bump version to 0.22.4
Bernd Kuhls [Sat, 20 Dec 2025 21:41:52 +0000 (22:41 +0100)]
package/python-docutils: bump version to 0.22.4

https://docutils.sourceforge.io/HISTORY.html#release-0-22-4-2025-12-18

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-crontab: bump version to 3.3.0
Bernd Kuhls [Sat, 20 Dec 2025 21:41:51 +0000 (22:41 +0100)]
package/python-crontab: bump version to 3.3.0

https://gitlab.com/doctormo/python-crontab/-/tags/v3.3.0

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-cachetools: bump version to 6.2.4
Bernd Kuhls [Sat, 20 Dec 2025 21:41:50 +0000 (22:41 +0100)]
package/python-cachetools: bump version to 6.2.4

https://github.com/tkem/cachetools/blob/v6.2.4/CHANGELOG.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/python-colorlog: bump version to 6.10.1
Bernd Kuhls [Sat, 20 Dec 2025 21:41:49 +0000 (22:41 +0100)]
package/python-colorlog: bump version to 6.10.1

https://github.com/borntyping/python-colorlog/releases/tag/v6.10.1

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/watchdogd: bump to version 4.1
Joachim Wiberg [Mon, 15 Dec 2025 23:11:37 +0000 (00:11 +0100)]
package/watchdogd: bump to version 4.1

Changes:
 - Add watchdogctl list-clients command to display currently subscribed
   clients to the process supervisor. Outputs to stdout in either table
   format (default) with colored headers, or JSON format with -j/--json
 - New global -j, --json option for machine-readable output, currently
   supported by list-clients and status commands
 - New API: wdog_clients() returns array of wdog_client_t structs for
   programmatic access to subscribed clients. See API documentation at
   https://codedocs.xyz/troglobit/watchdogd/wdog_8h.html
 - Enhance watchdogctl status command to display formatted output by
   default, with device information, capabilities, and reset history in
   a human-readable table format. Use -j/--json for JSON output

Fixes:
 - Generic scripts running more than 1 second would fail with false
   "critical error" reports and cause unwanted system reboots due
   to uninitialized exit status variable
 - watchdogctl reload with tempmon crashes watchdogd
 - Issue causing unwanted reboot when watchdogctl reload was called
   while a generic monitor script was running
 - Fix memory leak in generic monitor with optional script path, would
   be triggered on watchdogctl reload

The first of the fixes means we can now drop the backported patch.
Also, the test mode has been dropped from public use, hence it being
removed as well in this commit.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/libmbus: bump version to 0.9.0
Bernd Kuhls [Sat, 22 Nov 2025 21:12:23 +0000 (22:12 +0100)]
package/libmbus: bump version to 0.9.0

Release notes:
https://github.com/rscada/libmbus/blob/0.9.0/release_notes.txt

Downloading the source tarball is broken since at least Oct 30th, 2024
as reported by the buildroot autobuilders:
https://autobuild.buildroot.net/?reason=libmbus-0.8.0&step=50&start=50

Switching to the github helper provides the correct source code but the
tarball downloaded has a different hash. A quick search did not provide
alternative download locations for the original tarball
libmbus-0.8.0.tar.gz.

To solve the broken build we do not only switch _SITE to github but also
bump the package to 0.9.0 and add autoreconf which needs two directories
being created in _POST_PATCH_HOOKS. One missing directory was already
reported upstream: https://github.com/rscada/libmbus/issues/179

Updated license hash due to upstream commit:
https://github.com/rscada/libmbus/commit/ab8919136d3cabb943b1cbdd4d6e2f7eea4b8f3f

Fixes:
https://autobuild.buildroot.net/results/91a/91a82dc73bf87cf1969cd6a2ddea1809ab9a1613/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[Julien: change release notes url to use tag]
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/ltp-testsuite: bump version to 20250930
Petr Vorel [Sun, 14 Dec 2025 22:36:50 +0000 (23:36 +0100)]
package/ltp-testsuite: bump version to 20250930

Changelog:
https://github.com/linux-test-project/ltp/releases/tag/20250930

Remove patches backported from this release.

Remove LTP_TESTSUITE_AUTORECONF (patch, which required it was backported
from this release).

Require kernel headers for uclibc >= 4.5 for uclibc due F_GETOWN_EX from <fcntl.h>.

Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/v4l2loopback: bump version to 0.15.3
Bernd Kuhls [Sat, 6 Dec 2025 13:17:30 +0000 (14:17 +0100)]
package/v4l2loopback: bump version to 0.15.3

Changelog:
https://github.com/v4l2loopback/v4l2loopback/blob/v0.15.3/ChangeLog

This new version fixes compilation errors with gcc >= 14.

Fixes:
https://autobuild.buildroot.net/results/910/910e27b189c62f977bc42f7c53471334eb765168/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[Julien: add comment about the fixed issue]
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/udpcast: bump version to 20250223
Bernd Kuhls [Tue, 25 Nov 2025 22:12:46 +0000 (23:12 +0100)]
package/udpcast: bump version to 20250223

Release notes of this bugfix release:
https://udpcast.linux.lu/mailman3/hyperkitty/list/udpcast@udpcast.linux.lu/thread/JTGZCUMSXYLVT73TIRJJICBX7AWIE4CA/

Switched _SITE and Config.in homepage URL to https.

Fixes:
https://autobuild.buildroot.net/results/acf/acf208588c2ca7e658a9a7bee49b947309d6b8be

Upstream removed the tarball of the previous version causing autobuilder
errors, first recorded March, 2nd 2025.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[Julien: update package homepage url to use https]
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/nushell: bump version to 0.108.0
Bernd Kuhls [Sat, 29 Nov 2025 07:56:10 +0000 (08:56 +0100)]
package/nushell: bump version to 0.108.0

Release notes: https://www.nushell.sh/blog/

Updated license hash due to copyright year bump:
https://github.com/nushell/nushell/commit/192ee59c754ec5c9b66e28cca94a75d643501be7

Fixes:
https://autobuild.buildroot.net/results/d27/d27004dd62cd0c87fbfbe0eca8057b17d84c799d/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/rtl8723bu: bump to 2025-12-14 version
Giulio Benetti [Sun, 14 Dec 2025 21:01:14 +0000 (22:01 +0100)]
package/rtl8723bu: bump to 2025-12-14 version

This version allows to build with Linux 6.18

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/rtl8821cu: bump to version 2025-12-14
Giulio Benetti [Mon, 15 Dec 2025 18:18:28 +0000 (19:18 +0100)]
package/rtl8821cu: bump to version 2025-12-14

With this commit it builds with Linux 6.18

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/esp-hosted: bump to version 1.0.5.0.3
Giulio Benetti [Thu, 4 Dec 2025 16:59:10 +0000 (17:59 +0100)]
package/esp-hosted: bump to version 1.0.5.0.3

Drop local patch that has been upstreamed.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/libselinux: host-python3 needs SSL support
Bernd Kuhls [Wed, 17 Dec 2025 18:48:22 +0000 (19:48 +0100)]
package/libselinux: host-python3 needs SSL support

Buildroot commit 285097051d4a7dd821f01d15c705867f7e26c635 bumped
python-pip to version 25.3, causing build errors when host-python3 was
built without SSL support:

  WARNING: pip is configured with locations that require TLS/SSL,
   however the ssl module in Python is not available.
[...]
  Could not fetch URL https://pypi.org/simple/setuptools/:
   There was a problem confirming the ssl certificate:
   HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded
   with url: /simple/setuptools/ (Caused by SSLError("Can't connect to
   HTTPS URL because the SSL module is not available.")) - skipping
  ERROR: Could not find a version that satisfies the requirement setuptools>=40.8.0 (from versions: none)

Reverting the python-pip bump reveals the true cause of the build error
by showing these messages:

  WARNING: pip is configured with locations that require TLS/SSL,
   however the ssl module in Python is not available.
[...]
  DEPRECATION: Building 'selinux' using the legacy setup.py bdist_wheel
  mechanism, which will be removed in a future version. pip 25.3 will
  enforce this behaviour change. A possible replacement is to use the
  standardized build interface by setting the `--use-pep517` option,
  (possibly combined with `--no-build-isolation`), or adding a
  `pyproject.toml` file to the source tree of 'selinux'.
  Discussion can be found at https://github.com/pypa/pip/issues/6334

Selecting BR2_PACKAGE_HOST_PYTHON3_SSL fixes the problem.

Criu, the only other buildroot package using host-python-pip as
dependency, already selects BR2_PACKAGE_HOST_PYTHON3_SSL.

Fixes:
https://autobuild.buildroot.net/results/fd6/fd6d3edd5f74d094621ac9fdb93db24520b7a6e3/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/drbd-utils: bump version to 9.33.0
Bernd Kuhls [Sat, 29 Nov 2025 08:07:18 +0000 (09:07 +0100)]
package/drbd-utils: bump version to 9.33.0

Changelog: https://github.com/LINBIT/drbd-utils/blob/v9.33.0/ChangeLog

This new version also fixes build failures with gcc >= 15.

Fixes:
https://autobuild.buildroot.net/results/abd/abd9fe3f8b8051b8fac278bcd56e1c11aa056737/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[Julien: add comment about gcc-15 build failure]
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agopackage/nanomsg: bump version to 1.2.2
Bernd Kuhls [Sun, 30 Nov 2025 13:14:54 +0000 (14:14 +0100)]
package/nanomsg: bump version to 1.2.2

Release notes:
https://github.com/nanomsg/nanomsg/releases/tag/1.2.1
https://github.com/nanomsg/nanomsg/releases/tag/1.2.2

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agosupport/testing: add tests for FIT hash support in package/uboot-tools
Fiona Klute [Sun, 16 Nov 2025 20:20:53 +0000 (21:20 +0100)]
support/testing: add tests for FIT hash support in package/uboot-tools

The tests check if all supported hash algorithms are usable in
mkimage, for both host and target packages. Additionally, as a
necessary tool, it verifies the previous fix for FIT output from
dumpimage.

Signed-off-by: Fiona Klute <fiona.klute@gmx.de>
[Julien: use builtin kernel for faster testing]
Signed-off-by: Julien Olivain <ju.o@free.fr>
6 days agosupport/testing: infra: add host bin dir to PATH when running host command
Fiona Klute [Sun, 16 Nov 2025 20:20:52 +0000 (21:20 +0100)]
support/testing: infra: add host bin dir to PATH when running host command

Some host commands need to call other host commands: For example,
"mkimage" from host-uboot-tools needs to run "dtc". This would fail or
call system commands without adding the host bin dir to PATH.

Signed-off-by: Fiona Klute <fiona.klute@gmx.de>
[Julien: use python functions/constants to build path]
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/uboot-tools: include FIT print support if FIT support is enabled
Fiona Klute [Sun, 16 Nov 2025 20:20:51 +0000 (21:20 +0100)]
package/uboot-tools: include FIT print support if FIT support is enabled

Otherwise "dumpimage -l" produces only a newline when processing a FIT
image.

Signed-off-by: Fiona Klute <fiona.klute@gmx.de>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/python-glslang: bump version to 16.1.0
Bernd Kuhls [Sat, 13 Dec 2025 11:58:09 +0000 (12:58 +0100)]
package/python-glslang: bump version to 16.1.0

https://github.com/KhronosGroup/glslang/blob/16.1.0/CHANGES.md

Supports spirv-{headers, tools} version 1.4.335.0:
https://github.com/KhronosGroup/glslang/commit/209b675bf0c0d82c0e536bcb3cb7e1011957dd59

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/spirv-{headers, tools}: bump to version 1.4.335.0
Bernd Kuhls [Sat, 13 Dec 2025 11:58:08 +0000 (12:58 +0100)]
package/spirv-{headers, tools}: bump to version 1.4.335.0

https://github.com/KhronosGroup/SPIRV-Tools/blob/vulkan-sdk-1.4.335.0/CHANGES
https://github.com/KhronosGroup/SPIRV-Headers/releases/tag/vulkan-sdk-1.4.335.0

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/spirv-llvm-translator: bump version to 21.1.3
Bernd Kuhls [Sat, 13 Dec 2025 11:58:07 +0000 (12:58 +0100)]
package/spirv-llvm-translator: bump version to 21.1.3

https://github.com/KhronosGroup/SPIRV-LLVM-Translator/releases/tag/v21.1.3

Switched version number format according to 'git describe'result:

$ git describe --tags --match 'v21*' --abbrev=40 llvm_release_210
v21.1.3

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/libconfig: bump to version 1.8.2
Yegor Yefremov [Mon, 15 Dec 2025 10:44:52 +0000 (11:44 +0100)]
package/libconfig: bump to version 1.8.2

For change log, see:

https://github.com/hyperrealm/libconfig/releases/tag/v1.8.2

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Reviewed-by: Florian Larysch <fl@n621.de>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/python-sqlparse: bump to 0.5.4
Marcus Hoffmann [Fri, 5 Dec 2025 12:28:32 +0000 (13:28 +0100)]
package/python-sqlparse: bump to 0.5.4

Changes: https://sqlparse.readthedocs.io/en/latest/changes.html#release-0-5-4-nov-28-2025

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/python-anyio: bump to 4.12.0
Marcus Hoffmann [Fri, 5 Dec 2025 12:27:12 +0000 (13:27 +0100)]
package/python-anyio: bump to 4.12.0

Drop dependency on python-sniffio, that's no longer required.

Release Notes https://github.com/agronholm/anyio/releases/tag/4.12.0

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/python-pydantic: bump to 2.12.5
Marcus Hoffmann [Fri, 5 Dec 2025 12:21:21 +0000 (13:21 +0100)]
package/python-pydantic: bump to 2.12.5

Release Notes: https://github.com/pydantic/pydantic-core/releases/tag/v2.41.5

No bump of pydantic-core as the version requirement didn't change.

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/libglib2: bump version to 2.86.2
Marcus Hoffmann [Fri, 5 Dec 2025 12:19:04 +0000 (13:19 +0100)]
package/libglib2: bump version to 2.86.2

Release Notes: https://gitlab.gnome.org/GNOME/glib/-/releases/2.86.2

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Tested-by: Fiona Klute <fiona.klute@gmx.de>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agoconfigs/acmesystems_acqua_a5_*: bump to Linux 6.18.1
Edgar Bonet [Tue, 16 Dec 2025 09:14:26 +0000 (10:14 +0100)]
configs/acmesystems_acqua_a5_*: bump to Linux 6.18.1

Also update the device tree: since Linux v6.15-rc1 (510a6190cf5e "ARM:
dts: microchip: fix faulty ohci/ehci node names"), the USB nodes are
named "usb" instead of "ohci" or "ehci".

Signed-off-by: Edgar Bonet <bonet@grenoble.cnrs.fr>
[Julien: update linux.hash comment to take hash from upstream]
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agoconfigs/acmesystems_acqua_a5_*: switch to Bootlin glibc stable toolchain
Edgar Bonet [Tue, 16 Dec 2025 09:12:57 +0000 (10:12 +0100)]
configs/acmesystems_acqua_a5_*: switch to Bootlin glibc stable toolchain

Update the Acmesystem's Acqua defconfigs to the Bootlin glibc stable
external toolchain, as per[1].

[1]: https://elinux.org/Buildroot:DeveloperDaysELCE2024#Rules_for_defconfigs

Signed-off-by: Edgar Bonet <bonet@grenoble.cnrs.fr>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/gkrellm: bump version to 2.5.0
Bernd Kuhls [Mon, 15 Dec 2025 19:37:25 +0000 (20:37 +0100)]
package/gkrellm: bump version to 2.5.0

https://git.srcbox.net/gkrellm/gkrellm/src/tag/gkrellm-2.5.0/CHANGELOG.md

Added sha256 hash provided by upstream.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/libinput: bump version to 1.30.1
Bernd Kuhls [Mon, 15 Dec 2025 21:29:24 +0000 (22:29 +0100)]
package/libinput: bump version to 1.30.1

https://lore.freedesktop.org/wayland-devel/20251125050917.GA854973@quokka/T/#u
https://lore.freedesktop.org/wayland-devel/20251208024732.GA3642318@quokka/T/#u

Added optional dependency to lua-5.4:
https://gitlab.freedesktop.org/libinput/libinput/-/commit/9461d1a9a17337c6ee5a4baee836fb9b9e12906c

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/inadyn: bump to v2.13.0
Joachim Wiberg [Mon, 15 Dec 2025 22:43:53 +0000 (23:43 +0100)]
package/inadyn: bump to v2.13.0

Changes:
 - Add support for Porkbun DDNS provider
 - Add support for domene.shop (Norwegian DDNS provider)
 - Add support for round-robin records to Cloudflare
 - Add example config for DuckDNS IPv6
 - Cloudflare: omit proxy setting if unset in config
 - Cloudflare: omit TTL update if unset in config
 - Simply.com provider fixed and re-enabled
 - Support for long ddns-path requests (increased buffer size)

Fixes:
 - Do not use an IP resolution method different than the one
   specified in configuration
 - Fix support for Namecheap
 - Fix Dynu IPv6 issue
 - Default value -1 not used for ttl setting
 - Fix IPv6 detection for providers with "v6" in their name,
   e.g., ipv64.net and dynv6.com
 - Fix dnspod error: "Communication with checkip server failed"
 - Fix cache directory creation on --help or --check-config
 - Fix cache directory not writeable and no $HOME

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/mesa3d: add missing dependencies for imagination driver
Thomas Petazzoni [Mon, 15 Dec 2025 21:02:34 +0000 (22:02 +0100)]
package/mesa3d: add missing dependencies for imagination driver

The build of the following basic configuration enabling the
imagination Vulkan driver

BR2_aarch64=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_GLIBC_STABLE=y
BR2_PACKAGE_MESA3D=y
BR2_PACKAGE_MESA3D_VULKAN_DRIVER_IMAGINATION=y

fails with:

meson.build:847:3: ERROR: Feature llvm cannot be disabled: CLC requires LLVM

Adding just LLVM as a dependency is not enough, as then libclc is
needed, then LLVMSPIRVLib, then clangBasic, then the pco_clc tool.

In fact, like the Panfrost driver, building the Imagination driver
requires building host tools using host-mesa3d. To fix this we:

- Make the BR2_PACKAGE_MESA3D_OPENCL option selectable

- Make sure that BR2_PACKAGE_MESA3D_VULKAN_DRIVER_IMAGINATION depends
  on BR2_PACKAGE_MESA3D_LLVM and select
  BR2_PACKAGE_MESA3D_NEEDS_PRECOMP_COMPILER (the latter being needed to
  build host-mesa3d)

- Make sure the host-mesa3d builds imagination
  tools (-Dtools=imagination) and install
  pco_clc (HOST_MESA3D_INSTALL_PCO_CLC). This requires introducing
  HOST_MESA3D_TOOLS as a list of tools to build, which then gets used
  to construct the -Dtools argument, as we can now have both
  "panfrost" and "imagination" in this list.

With all this, the defconfig above builds successfully.

This has been broken since Buildroot commit
5e818c16a31a902ec29a250f920f43c76e2d9868, which introduced the vulkan
driver support.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/mesa3d: fix imagination Vulkan driver build
Thomas Petazzoni [Mon, 15 Dec 2025 07:42:54 +0000 (08:42 +0100)]
package/mesa3d: fix imagination Vulkan driver build

Since upstream commit 6e189ba6c17a2ab9b60e6fd65fc6a44a17dc9e8f, merged
in mesa-25.3.0, the imagination Vulkan driver is no longer
experimental.

Therefore, since Buildroot commit
3e296a151195f9d32dbfd62d6c75d08b822be6dd, which bumped mesa3d to
version 25.3.0, the build of a configuration such as:

 BR2_aarch64=y
 BR2_TOOLCHAIN_EXTERNAL=y
 BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
 BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_GLIBC_STABLE=y
 BR2_PACKAGE_MESA3D=y
 BR2_PACKAGE_MESA3D_VULKAN_DRIVER_IMAGINATION=y

fails with:

build/mesa3d-25.3.1/meson.build:4:0: ERROR: Value "imagination-experimental" for option "vulkan-drivers" is not in allowed choices: "auto, amd, broadcom, freedreno, intel, intel_hasvk, panfrost, swrast, virtio, imagination, microsoft-experimental, nouveau, asahi, gfxstream, all"

Fix this by using the proper Vulkan driver name.

There are no autobuilder failures for this issue.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/{mesa3d, mesa3d-headers}: bump version to 25.3.2
Bernd Kuhls [Thu, 18 Dec 2025 18:52:54 +0000 (19:52 +0100)]
package/{mesa3d, mesa3d-headers}: bump version to 25.3.2

https://lists.freedesktop.org/archives/mesa-announce/2025-December/000831.html

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/llvm-project: bump to version 21.1.8
Bernd Kuhls [Thu, 18 Dec 2025 20:07:33 +0000 (21:07 +0100)]
package/llvm-project: bump to version 21.1.8

Release notes:
https://discourse.llvm.org/t/llvm-21-1-8-released/89144

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/kodi-inputstream-adaptive: bump version to 21.5.18-Omega
Bernd Kuhls [Wed, 3 Dec 2025 17:00:02 +0000 (18:00 +0100)]
package/kodi-inputstream-adaptive: bump version to 21.5.18-Omega

Release notes of this bugfix release:
https://github.com/xbmc/inputstream.adaptive/releases/tag/21.5.18-Omega

Removed patch 0001 which is included in this release:
https://github.com/xbmc/inputstream.adaptive/commit/a224dc66e93aa0d79152ef283cc7dd2207f7cf7d

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/kodi-pvr-mythtv: bump version to 21.2.2-Omega
Bernd Kuhls [Thu, 18 Dec 2025 19:16:08 +0000 (20:16 +0100)]
package/kodi-pvr-mythtv: bump version to 21.2.2-Omega

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/cryptsetup: bump version to 2.8.3
Giulio Benetti [Sat, 20 Dec 2025 10:09:38 +0000 (11:09 +0100)]
package/cryptsetup: bump version to 2.8.3

For release note, see:
https://gitlab.com/cryptsetup/cryptsetup/-/blob/v2.8.3/docs/v2.8.3-ReleaseNotes

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/linenoise: security bump to version e26268de5e
Francois Perrad [Sat, 20 Dec 2025 08:39:16 +0000 (09:39 +0100)]
package/linenoise: security bump to version e26268de5e

Fixes:
CVE-2025-9810: TOCTOU in linenoiseHistorySave
https://www.cve.org/CVERecord?id=CVE-2025-9810

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/python-*: mass update of hash comments computed by scanpypi
Bernd Kuhls [Fri, 19 Dec 2025 18:13:04 +0000 (19:13 +0100)]
package/python-*: mass update of hash comments computed by scanpypi

No changes to hashes, only comments in hash files computed by our
utils/scanpypi script are updated by this patch.

During future mass package updates this patch will reduce the number of
changes created by scanpypi to be reviewed.

Please note that an updated version of scanpypi was used:
https://patchwork.ozlabs.org/project/buildroot/patch/20251001002004.3178942-1-james.hilliard1@gmail.com/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[Peter: drop packages not downloaded from pypi or where rust vendoring is
        used]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
7 days agopackage/libgpg-error: bump version to 1.58
Bernd Kuhls [Mon, 15 Dec 2025 20:11:28 +0000 (21:11 +0100)]
package/libgpg-error: bump version to 1.58

https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=blob;f=NEWS;h=c60ad85d84da2a1721e6bb8c4ae95e645be1b201;hb=e880193c55f0321bbefc16be3194fdbb7a48078f

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/libldns: bump to version 1.9.0
Bernd Kuhls [Mon, 15 Dec 2025 19:37:52 +0000 (20:37 +0100)]
package/libldns: bump to version 1.9.0

Changelog: https://github.com/NLnetLabs/ldns/blob/1.9.0/Changelog

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/redis: bump to v8.4.0
Titouan Christophe [Wed, 17 Dec 2025 22:37:50 +0000 (23:37 +0100)]
package/redis: bump to v8.4.0

See the release notes: https://github.com/redis/redis/blob/8.4.0/00-RELEASENOTES

Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
Signed-off-by: Julien Olivain <ju.o@free.fr>
7 days agopackage/cryptsetup: bump version to 2.8.2
Giulio Benetti [Thu, 18 Dec 2025 19:23:16 +0000 (20:23 +0100)]
package/cryptsetup: bump version to 2.8.2

For release note, see:
https://gitlab.com/cryptsetup/cryptsetup/-/blob/v2.8.2/docs/v2.8.2-ReleaseNotes

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
8 days agopackage/zfs: bump version to 2.4.0
José Luis Salvador Rufo [Thu, 18 Dec 2025 23:45:27 +0000 (00:45 +0100)]
package/zfs: bump version to 2.4.0

Removed backported patch:
 - 0001-use-sys_stath-instead-of-linux_stath.patch
Merged upstream in:
https://github.com/openzfs/zfs/commit/ccf5a8a6fcfdfbdaa2f0fdca5d787958224bf06d

For release note, see:
https://github.com/openzfs/zfs/releases/tag/zfs-2.4.0

Signed-off-by: José Luis Salvador Rufo <salvador.joseluis@gmail.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
8 days agopackage/libfuse3: bump to version 3.18.0
Giulio Benetti [Fri, 19 Dec 2025 13:09:56 +0000 (14:09 +0100)]
package/libfuse3: bump to version 3.18.0

Release notes:
https://github.com/libfuse/libfuse/releases/tag/fuse-3.18.0

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
8 days agopackage/php: security bump version to 8.4.16
Bernd Kuhls [Fri, 19 Dec 2025 18:29:21 +0000 (19:29 +0100)]
package/php: security bump version to 8.4.16

https://www.php.net/ChangeLog-8.php#8.4.16
https://news-web.php.net/php.announce/478

Fixes CVE-2025-14177, CVE-2025-14178, CVE-2025-14180 & CVE-2025-67899.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
8 days agopackage/python-gpiod: fix md5 hash
Bernd Kuhls [Fri, 19 Dec 2025 18:19:44 +0000 (19:19 +0100)]
package/python-gpiod: fix md5 hash

Buildroot commit b243b77ebe5eedf8fbc683d5539d9bf386da4420 added this
package including a hash file containing a typo of the tarball filename
for the md5 hash. Updated comment as computed by scanpypi.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
8 days agopackage/perl: bump to version 5.42.0
Francois Perrad [Fri, 19 Dec 2025 06:45:22 +0000 (07:45 +0100)]
package/perl: bump to version 5.42.0

For release notes, see:
https://perldoc.perl.org/5.42.0/perl5420delta

Note: the release notes mention fixed CVE. Those were already fixed in
Buildroot commit [1] and [2]. Therefore, this update is not marked as a
security fix.

This commit also updates the `utils/scancpan` script, in order to
update the messages about the host-perl version.

[1] https://gitlab.com/buildroot.org/buildroot/-/commit/61f5e2efcae5ece840a561ad56cdec04dad3a25d
[2] https://gitlab.com/buildroot.org/buildroot/-/commit/164c84ee9b820f5b21e79b4d52c07a613925d3f2

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
[Julien: add commit log]
Signed-off-by: Julien Olivain <ju.o@free.fr>
8 days agopackage/dmidecode: bump to version 3.7
Pierre-Yves Kerbrat [Fri, 19 Dec 2025 14:19:44 +0000 (15:19 +0100)]
package/dmidecode: bump to version 3.7

Release notes:
https://lists.nongnu.org/archive/html/dmidecode-devel/2025-12/msg00039.html

Signed-off-by: Pierre-Yves Kerbrat <pkerbrat@free.fr>
Signed-off-by: Julien Olivain <ju.o@free.fr>
9 days agopackage/linux-headers: drop 6.17.x option
Bernd Kuhls [Thu, 18 Dec 2025 18:53:22 +0000 (19:53 +0100)]
package/linux-headers: drop 6.17.x option

The 6.17.x series is now EOL upstream, so drop the linux-headers
option and add legacy handling for it.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
9 days ago{linux, linux-headers}: bump 6.{12, 17, 18}.x series
Bernd Kuhls [Thu, 18 Dec 2025 18:53:21 +0000 (19:53 +0100)]
{linux, linux-headers}: bump 6.{12, 17, 18}.x series

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
9 days agopackage/json-c: fix build with CMake 4
Bernd Kuhls [Sun, 7 Dec 2025 17:43:48 +0000 (18:43 +0100)]
package/json-c: fix build with CMake 4

The build of host-json-c currently fails due to the move to CMake
4. However, we don't need to patch the problem, as we can instead
disable building the json-c applications (-DBUILD_APPS=OFF) for the
host variant like we already do for the target variant.

Fixes:

  https://autobuild.buildroot.net/results/dcf72922750a830901279e8eb8fc2def95d35e01/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10 days agopackage/python-magic-wormhole: bump version to 0.21.1
Bernd Kuhls [Sun, 7 Dec 2025 14:42:22 +0000 (15:42 +0100)]
package/python-magic-wormhole: bump version to 0.21.1

For change log since 0.19.2, see:
https://github.com/magic-wormhole/magic-wormhole/blob/0.21.1/NEWS.md

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[Julien: add link to change log]
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-zopfli: bump version to 0.4.0
Bernd Kuhls [Tue, 16 Dec 2025 19:41:19 +0000 (20:41 +0100)]
package/python-zopfli: bump version to 0.4.0

https://github.com/fonttools/py-zopfli/releases

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-zope-interface: bump version to 8.1.1
Bernd Kuhls [Tue, 16 Dec 2025 19:41:18 +0000 (20:41 +0100)]
package/python-zope-interface: bump version to 8.1.1

https://github.com/zopefoundation/zope.interface/blob/8.1.1/CHANGES.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-zeroconf: bump version to 0.148.0
Bernd Kuhls [Tue, 16 Dec 2025 19:41:17 +0000 (20:41 +0100)]
package/python-zeroconf: bump version to 0.148.0

https://github.com/python-zeroconf/python-zeroconf/releases/tag/0.148.0
https://github.com/python-zeroconf/python-zeroconf/blob/0.148.0/CHANGELOG.md

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-yarl: bump version to 1.22.0
Bernd Kuhls [Tue, 16 Dec 2025 19:41:16 +0000 (20:41 +0100)]
package/python-yarl: bump version to 1.22.0

https://github.com/aio-libs/yarl/blob/v1.22.0/CHANGES.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-wsproto: bump version to 1.3.2
Bernd Kuhls [Tue, 16 Dec 2025 19:41:15 +0000 (20:41 +0100)]
package/python-wsproto: bump version to 1.3.2

https://github.com/python-hyper/wsproto/blob/1.3.2/CHANGELOG.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-werkzeug: bump version to 3.1.4
Bernd Kuhls [Tue, 16 Dec 2025 19:41:14 +0000 (20:41 +0100)]
package/python-werkzeug: bump version to 3.1.4

https://github.com/pallets/werkzeug/blob/3.1.4/CHANGES.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-webargs: bump version to 8.7.1
Bernd Kuhls [Tue, 16 Dec 2025 19:41:13 +0000 (20:41 +0100)]
package/python-webargs: bump version to 8.7.1

https://github.com/marshmallow-code/webargs/blob/8.7.1/CHANGELOG.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-weasyprint: bump version to 67.0
Bernd Kuhls [Tue, 16 Dec 2025 19:41:12 +0000 (20:41 +0100)]
package/python-weasyprint: bump version to 67.0

https://github.com/Kozea/WeasyPrint/blob/v67.0/docs/changelog.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-urwid: bump version to 3.0.4
Bernd Kuhls [Tue, 16 Dec 2025 19:41:11 +0000 (20:41 +0100)]
package/python-urwid: bump version to 3.0.4

https://github.com/urwid/urwid/blob/3.0.4/docs/changelog.rst

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-ujson: bump version to 5.11.0
Bernd Kuhls [Tue, 16 Dec 2025 19:41:10 +0000 (20:41 +0100)]
package/python-ujson: bump version to 5.11.0

https://github.com/ultrajson/ultrajson/releases/tag/5.11.0

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
10 days agopackage/python-types-setuptools: bump version to 80.9.0.20250822
Bernd Kuhls [Tue, 16 Dec 2025 19:41:09 +0000 (20:41 +0100)]
package/python-types-setuptools: bump version to 80.9.0.20250822

https://github.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/setuptools.md

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>