]>
Git Repo - buildroot-mgba.git/log
Raimundo Sagarzazu [Mon, 30 Sep 2024 13:42:14 +0000 (13:42 +0000)]
package/jailhouse: fix python helper scripts installation
When compiling jailhouse with BR2_PACKAGE_JAILHOUSE_HELPER_SCRIPTS=y,
installation is failing with error:
/bin/sh: -c: line 1: syntax error near unexpected token ')'
This error is due to an extra ')' character in the macro
JAILHOUSE_INSTALL_HELPER_SCRIPTS.
This commit fixes this typo.
Signed-off-by: Raimundo Sagarzazu <[email protected] >
[Julien: reworded the commit log]
Signed-off-by: Julien Olivain <[email protected] >
James Hilliard [Fri, 25 Oct 2024 17:57:38 +0000 (11:57 -0600)]
package/python-grpcio-reflection: bump to version 1.67.0
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 17:49:43 +0000 (11:49 -0600)]
package/python-frozenlist: bump to version 1.5.0
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 17:43:15 +0000 (11:43 -0600)]
package/python-flask-wtf: bump to version 1.2.2
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 17:39:40 +0000 (11:39 -0600)]
package/python-flask-smorest: bump to version 0.45.0
Migrate from setuptools to flit build backend.
License hash changed due to year removal:
https://github.com/marshmallow-code/flask-smorest/commit/
d813c73f84f624c32ccf9495c292b9f3e8e719a1
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 17:34:58 +0000 (11:34 -0600)]
package/python-fastapi: bump to version 0.115.3
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 17:34:57 +0000 (11:34 -0600)]
package/python-starlette: bump to version 0.41.0
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 17:23:31 +0000 (11:23 -0600)]
package/python-engineio: bump to version 4.10.1
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 17:18:37 +0000 (11:18 -0600)]
package/python-cryptography: bump to version 43.0.3
Add new host-python-setuptools build dependency.
Set --skip-dependency-check build option to bypass overly strict
setuptools version requirement.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 17:06:55 +0000 (11:06 -0600)]
package/python-bottle: bump to version 0.13.2
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 17:02:04 +0000 (11:02 -0600)]
package/python-bitarray: bump to version 3.0.0
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 16:58:56 +0000 (10:58 -0600)]
package/python-apispec: bump to version 6.7.0
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Fri, 25 Oct 2024 16:55:29 +0000 (10:55 -0600)]
package/python-anyio: bump to version 4.6.2.post1
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Flávio Tapajós [Fri, 25 Oct 2024 14:59:16 +0000 (11:59 -0300)]
package/python-sqlalchemy: bump version to 2.0.36
Signed-off-by: Flávio Tapajós <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Dario Binacchi [Mon, 23 Sep 2024 05:46:26 +0000 (07:46 +0200)]
package/iproute2: bump to version 6.11.0
The building test using musl as the C library for the cross-compilation
toolchain raised errors that required the application of two additional
patches.
Signed-off-by: Dario Binacchi <[email protected] >
Reviewed-by: Petr Vorel <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Dario Binacchi [Mon, 23 Sep 2024 05:46:25 +0000 (07:46 +0200)]
package/iproute2: fix building error using designated initializers
This patch fixes the following error:
arpd.c:442:17: error: initialization of 'int' from 'void *' makes integer from pointer without a cast [-Wint-conversion]
442 | NULL, 0,
The analysis of socket.h [1] containing the msghdr structure shows that
it has been modified with the addition of padding fields, which cause
the compilation error:
struct msghdr {
void *msg_name;
socklen_t msg_namelen;
struct iovec *msg_iov;
#if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __BIG_ENDIAN
int __pad1;
#endif
int msg_iovlen;
#if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __LITTLE_ENDIAN
int __pad1;
#endif
void *msg_control;
#if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __BIG_ENDIAN
int __pad2;
#endif
socklen_t msg_controllen;
#if __LONG_MAX > 0x7fffffff && __BYTE_ORDER == __LITTLE_ENDIAN
int __pad2;
#endif
int msg_flags;
};
The use of designated initializers allows the issue to be fixed.
[1] iproute2/host/mips64-buildroot-linux-musl/sysroot/usr/include/sys/socket.h
Fixes:
- http://autobuild.buildroot.org/results/
e4cdfa38ae9578992f1c0ff5c4edae3cc0836e3c
Signed-off-by: Dario Binacchi <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Bernd Kuhls [Thu, 24 Oct 2024 20:15:30 +0000 (22:15 +0200)]
{linux, linux-headers}: bump 5.{10, 15}.x / 6.{1, 6, 11}.x series
Signed-off-by: Bernd Kuhls <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Romain Naour [Fri, 25 Oct 2024 21:20:57 +0000 (23:20 +0200)]
.checkpackageignore: remove xenomai patches
Xenomai patches have been dropped in commit
44fafcc41aca4c32ecd937c4b7ae93b7a713d9f2 , which forgot to update
.checkpackageignore.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/
8192495435
Signed-off-by: Romain Naour <[email protected] >
Dario Binacchi [Sat, 14 Sep 2024 15:15:44 +0000 (17:15 +0200)]
package/xenomai: bump to version 3.2.5
The previous download URL does not contain the most recent versions, so
it was necessary to change it to bump to the current version.
No license file has been changed.
[Romain:
- remove 3.0.10 patches
- Update XENOMAI_AUTORECONF comment]
Signed-off-by: Dario Binacchi <[email protected] >
Signed-off-by: Romain Naour <[email protected] >
Zoltan Gyarmati [Tue, 24 Sep 2024 19:56:27 +0000 (21:56 +0200)]
package/proj: bump to 9.5.0
For change log since 9.4.1, see:
https://proj.org/en/9.5/news.html#release-notes
Signed-off-by: Zoltan Gyarmati <[email protected] >
[Julien: add change log link]
Signed-off-by: Julien Olivain <[email protected] >
Francois Perrad [Mon, 30 Sep 2024 19:02:34 +0000 (21:02 +0200)]
package/kbd: bump to 2.6.4
For change log since 2.5.1, see:
https://git.kernel.org/pub/scm/linux/kernel/git/legion/kbd.git/log/?h=v2.6.4
Signed-off-by: Francois Perrad <[email protected] >
[Julien: add change log link]
Signed-off-by: Julien Olivain <[email protected] >
Thomas Petazzoni [Sun, 15 Sep 2024 13:27:34 +0000 (15:27 +0200)]
package/lrzsz: fix build with GCC >= 14.x
The lrzsz package currently fails to build with GCC >= 14.x. In [1],
Fabrice had proposed to update the package to what's available on a
Github repository from the upstream maintainer at [2], but in this
very repository (not updated since 4 years), the maintainer writes:
NOTE:
Do not use the repository until further notice.
It contains work in progress and at least one change i am unhappy with.
Use either http://ohse.de/uwe/testing/lrzsz-0.12.21rc.tar.gz (over
20 years in rc state, so it's good enough), or 0.12.20 from
https://ohse.de/uwe/software/lrzsz.html (do not expect me to update
that old site ever again).
So, let's stick to the 0.12.20 version we have, and add a few patches.
Patch 0001 is patching the configure script, which we obviously don't
normally like. However, the configure.in script is very old and no
longer autoreconfs properly with modern autoconf. Since the patch is
trivial, and upstream seems almost dead, we take the route of patching
the configure script.
[1] https://patchwork.ozlabs.org/project/buildroot/patch/
20240726092042 .
1273023 [email protected] /
[2] https://github.com/UweOhse/lrzsz
Fixes:
http://autobuild.buildroot.net/results/
3eb94eac3e0e1a04d41c618ed9ea2e4e398ea48a /
Signed-off-by: Thomas Petazzoni <[email protected] >
Signed-off-by: Julien Olivain <[email protected] >
Thomas Perale [Mon, 30 Sep 2024 20:21:25 +0000 (22:21 +0200)]
package/gnuradio: fix build by removing unneeded package patch
The gnuradio package patch 0001 was introduced in commit
81e6541ef
"package/gnuradio: fix build with fmt >= 11.x" [1] while Buildroot
was in a release client stabilization branch.
It was first in included in the 2024.08-rc2 tag. This is why the
gnuradio version was _not_ bumped at that time.
At the same time, the gnuradio package was also broken in the "next"
branch for the same reason. It was fixed by bumping the gnuradio
version in commit
101e7b69d "package/gnuradio: bump version to
3.10.11.0" [2] which contained the 0001 patch.
Both commits [1] and [2] are individually working. The gnuradio
package fails to build since the merge commit
3daa03752 "Merge branch
'next'" [3].
This commit fixes the issue by removing the package patch.
Fixes:
- http://autobuild.buildroot.org/results/
dfda705bb1b3b975bde3d84c6b25a9b41c545c84
- http://autobuild.buildroot.org/results/
7c32bd40b5e1420535734480bf5a4d4365b8896f
- https://gitlab.com/buildroot.org/buildroot/-/jobs/
7888800399
[1] https://gitlab.com/buildroot.org/buildroot/-/commit/
81e6541efe054df635947d0c143818f8cf7cb048
[2] https://gitlab.com/buildroot.org/buildroot/-/commit/
101e7b69da88148fa8333af05444e47bae631833
[3] https://gitlab.com/buildroot.org/buildroot/-/commit/
3daa037528c38b91caf616cb47992da7730f4343
Signed-off-by: Thomas Perale <[email protected] >
Reviewed-by: Julien Olivain <[email protected] >
Signed-off-by: Julien Olivain <[email protected] >
Bernd Kuhls [Thu, 24 Oct 2024 20:22:37 +0000 (22:22 +0200)]
package/kodi-pvr-waipu: bump version to 21.8.7-Omega
Signed-off-by: Bernd Kuhls <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Bernd Kuhls [Thu, 24 Oct 2024 20:22:36 +0000 (22:22 +0200)]
package/kodi-pvr-mediaportal-tvserver: bump version to 21.0.4-Omega
Signed-off-by: Bernd Kuhls <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Bernd Kuhls [Thu, 24 Oct 2024 20:17:35 +0000 (22:17 +0200)]
package/python3: bump version to 3.12.7
Release notes:
https://blog.python.org/2024/10/python-3127-released.html
Signed-off-by: Bernd Kuhls <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Mon, 30 Sep 2024 23:00:15 +0000 (17:00 -0600)]
package/python-pysmb: bump to version 1.2.10
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Mon, 30 Sep 2024 23:11:56 +0000 (17:11 -0600)]
package/python-pysnmp: bump to version 7.1.4
Drop no longer required python-pysnmpcrypto runtime dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Mon, 30 Sep 2024 22:44:49 +0000 (16:44 -0600)]
package/python-multipart: bump to version 0.0.12
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Mon, 30 Sep 2024 22:39:28 +0000 (16:39 -0600)]
package/python-jaraco-functools: bump to version 4.1.0
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Vincent Stehlé [Thu, 3 Oct 2024 07:45:18 +0000 (09:45 +0200)]
configs/arm_fvp_ebbr: bump Linux, U-Boot, TF-A and FVP
- Bump Linux kernel to 6.10.12 and add the dependency on host-python3.
- Bump U-Boot to 2024.07.
- Bump TF-A to v2.11. Remove the stdout patch, which is present
upstream. Remove our hash file now that the arm-trusted-firmware
package centralises those.
- Bump FVP to 11.27.19 in the documentation.
- Convert to `make savedefconfig' format.
Signed-off-by: Vincent Stehlé <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Thomas Petazzoni [Wed, 2 Oct 2024 19:18:59 +0000 (21:18 +0200)]
docs/website/news.html: announce Buildroot Developers Meeting 2025
Signed-off-by: Thomas Petazzoni <[email protected] >
Giulio Benetti [Wed, 2 Oct 2024 15:08:18 +0000 (17:08 +0200)]
package/harfbuzz: bump to version 10.0.1
Signed-off-by: Giulio Benetti <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Giulio Benetti [Wed, 2 Oct 2024 14:48:55 +0000 (16:48 +0200)]
package/libnss: bump version to 3.105
Signed-off-by: Giulio Benetti <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Francois Perrad [Tue, 1 Oct 2024 19:33:54 +0000 (21:33 +0200)]
package/perl: bump to version 5.40.0
remove merged patch
diff README:
-Perl is Copyright (C) 1993 - 2024 by Larry Wall and others.
+Perl is Copyright (C) 1993 - 2023 by Larry Wall and others.
Signed-off-by: Francois Perrad <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Akhilesh Nema [Sun, 22 Sep 2024 02:50:51 +0000 (19:50 -0700)]
package/openssh: bump version to 9.9p1
https://www.openssh.com/txt/release-9.9
License sha256sum has changed due to inclusion of the
openbsd-compat/base64.c license in the LICENSE file.
(https://github.com/openssh/openssh-portable/commit/
ef2d7f2d3e1b4c9ae71bacf963e76a92ab8be543 )
Signed-off-by: Akhilesh Nema <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Julien Olivain [Mon, 7 Oct 2024 22:24:05 +0000 (00:24 +0200)]
package/erofs-utils: bump to version 1.8.2
For a change log since 1.8.1, see:
https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/ChangeLog?h=v1.8.2
Signed-off-by: Julien Olivain <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Julien Olivain [Mon, 7 Oct 2024 21:33:25 +0000 (23:33 +0200)]
package/rrdtool: bump version to 1.9.0
For release note, see:
https://github.com/oetiker/rrdtool-1.x/releases/tag/v1.9.0
The commit also removes the package patches which are included in this
version.
Signed-off-by: Julien Olivain <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Julien Olivain [Mon, 7 Oct 2024 20:28:22 +0000 (22:28 +0200)]
package/libjxl: bump to version 0.11.0
For release notes since v0.10.3, see:
https://github.com/libjxl/libjxl/releases/tag/v0.11.0
Signed-off-by: Julien Olivain <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Maxim Kochetkov [Mon, 7 Oct 2024 18:45:06 +0000 (21:45 +0300)]
package/osm2pgsql: bump version to 2.0.0
osm2pgsql now use std::filesystem instead of boost::filesystem. So
drop BR2_PACKAGE_BOOST_SYSTEM, BR2_PACKAGE_BOOST_FILESYSTEM
dependencies and set BR2_TOOLCHAIN_GCC_AT_LEAST_8.
Lua is not optional now. So add lua or luajit as dependencies.
Legacy Proj interface (Proj 4) was dropped and option was renamed
from USE_PROJ_LIB to WITH_PROJ
Release-notes: https://github.com/openstreetmap/osm2pgsql/releases/tag/2.0.0
Signed-off-by: Maxim Kochetkov <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Maxim Kochetkov [Mon, 7 Oct 2024 17:33:56 +0000 (20:33 +0300)]
package/libgeos: bump version to 3.13.0
Changelog: https://github.com/libgeos/geos/releases/tag/3.13.0
Signed-off-by: Maxim Kochetkov <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Dario Binacchi [Mon, 7 Oct 2024 16:46:16 +0000 (18:46 +0200)]
package/acsccid: bump to version 1.1.11
Release notes:
https://sourceforge.net/p/acsccid/news/2024/03/acsccid-1111-released/
Signed-off-by: Dario Binacchi <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Erico Nunes [Thu, 3 Oct 2024 15:25:23 +0000 (17:25 +0200)]
DEVELOPERS: drop my packages
I still follow Buildroot development and use it for some personal
projects, but no longer have the time to be an active contributor.
Some of these are important defconfigs and packages to have up-to-date
in Buildroot, and mostly other developers have been doing that work, so
I am dropping them so that someone from the active contributors can be
the maintainer contact for them.
Signed-off-by: Erico Nunes <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Thomas Petazzoni [Wed, 2 Oct 2024 19:36:47 +0000 (21:36 +0200)]
docs/website/sponsors.html: update sponsors information
Move Logilin to past sponsors, update details about Smile sponsoring
and Armadeus sponsoring, and likewise for a number of past sponsors.
The text about Smile as a past sponsor is reworded/reduced so that it
stills fits in the size of the block in a reasonable way.
Signed-off-by: Thomas Petazzoni <[email protected] >
Thomas Petazzoni [Wed, 2 Oct 2024 19:36:46 +0000 (21:36 +0200)]
docs/website/sponsors.html: fix page layout
The LTS block was glued with the next block, add missing </div>.
Signed-off-by: Thomas Petazzoni <[email protected] >
Julien Olivain [Tue, 8 Oct 2024 20:12:59 +0000 (22:12 +0200)]
package/openipmi: bump to version 2.0.36
For release announces since 2.0.34, see:
https://sourceforge.net/p/openipmi/news/2024/08/openipmi-2036-released/
https://sourceforge.net/p/openipmi/news/2024/04/openipmi-2035-released/
Signed-off-by: Julien Olivain <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Julien Olivain [Tue, 8 Oct 2024 18:02:41 +0000 (20:02 +0200)]
package/screen: bump to version 5.0.0
See release announce [1].
License hash changed, due to url updates from http to https in [2].
Package patches were reworked for this new version:
- Patch 0001 is removed. It is no longer needed with upstream
commit [3] and [4].
- Patches 0002 to 0004 are rebased to the new version, and are now
named 0001 to 0003.
- Patch 0005 is regenerated to rename all occurrences of the renamed
header file. It is now named 0004.
- Patch 0006 is removed. It is included in the new version,
in commit [5].
- Patch 0007 is removed. It is fixed alternatively upstream in
commit [6], included in this version.
Also, the patch entries in ".checkpackageignore" were updated
accordingly.
Since upstream commit [7], included in version 5.0.0, screen needs
wchar support. This change is reflected in the Kconfig Config.in file.
Since upstream commit [8], included in version 5.0.0, screen needs
a C17 compiler. This support was introduced in Gcc 8.1.0, see [9].
This requirement is reflected in the Kconfig Config.in file.
This new version also fixes build failures with GCC 14 originally due
to implicit function declarations which became an error. For the
record, screen 4.9.1 builds were failing with error message:
pty.c: In function 'OpenPTY':
pty.c:338:7: error: implicit declaration of function 'openpty'; did you mean 'OpenPTY'? [-Wimplicit-function-declaration]
338 | if (openpty(&f, &s, TtyName, NULL, NULL) != 0)
| ^~~~~~~
| OpenPTY
Fixes:
https://autobuild.buildroot.org/results/
d33751d88af521f0e09d74e86d94d3ce20976c20 /
[1] https://lists.gnu.org/archive/html/screen-users/2024-08/msg00000.html
[2] https://git.savannah.gnu.org/cgit/screen.git/diff/src/COPYING?id=
f66377f9927bf5a1857b1106b28008f3802e1f7b
[3] https://git.savannah.gnu.org/cgit/screen.git/commit/?id=
46df054064dce87049eca427b7e778a42674a85c
[4] https://git.savannah.gnu.org/cgit/screen.git/commit/?id=
725d8ee4fd4fa75cf9d2d6c2f9c7e13920f6c41e
[5] https://git.savannah.gnu.org/cgit/screen.git/commit/?id=
39c5f1c76f1fcef4b5958bf828a63f53426b6984
[6] https://git.savannah.gnu.org/cgit/screen.git/commit/?id=
84092e65f95dd2a00aa4cc2ba75682297f33dfea
[7] https://git.savannah.gnu.org/cgit/screen.git/commit/?id=
9e8e20596f508da866a1e1469b7e6216810dd7f8
[8] https://git.savannah.gnu.org/cgit/screen.git/commit/?id=
35f50657c2d09c9995ccac6d68bfd9e2ee7109b2
[9] https://gcc.gnu.org/onlinedocs/gcc-8.1.0/gcc/C-Dialect-Options.html#index-std-1
Signed-off-by: Julien Olivain <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Bernd Kuhls [Tue, 8 Oct 2024 17:50:03 +0000 (19:50 +0200)]
package/wget: bump version to 1.24.5
Release notes:
https://lists.gnu.org/archive/html/bug-wget/2024-03/msg00008.html
No versions between > 1.21.4 and < 1.24.5 were released:
https://lists.gnu.org/archive/html/bug-wget/2024-03/msg00012.html
Signed-off-by: Bernd Kuhls <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Bernd Kuhls [Tue, 8 Oct 2024 17:48:59 +0000 (19:48 +0200)]
package/sqlite: bump version to 3.46.1
Release notes: https://sqlite.org/releaselog/3_46_1.html
Signed-off-by: Bernd Kuhls <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Bernd Kuhls [Tue, 8 Oct 2024 17:48:40 +0000 (19:48 +0200)]
package/linux-firmware: bump version to
20240909
Updating the hash of the WHENCE file, due to firmware additions and
firmware changes, but no changes to the redistribution/licensing
conditions.
Signed-off-by: Bernd Kuhls <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Waldemar Brodkorb [Thu, 24 Oct 2024 12:19:43 +0000 (14:19 +0200)]
package/bind: update to 9.18.31
See here for a changelog:
https://downloads.isc.org/isc/bind9/9.18.31/doc/arm/html/notes.html#notes-for-bind-9-18-31
Signed-off-by: Waldemar Brodkorb <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Waldemar Brodkorb [Thu, 24 Oct 2024 11:56:06 +0000 (13:56 +0200)]
package/xfsprogs: update to 6.11.0
Patch 0002 no longer required, upstream fixed the situation.
Signed-off-by: Waldemar Brodkorb <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Waldemar Brodkorb [Thu, 24 Oct 2024 11:51:36 +0000 (13:51 +0200)]
package/asterisk: update to 20.10.0
See here for a changelog:
https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.10.0.md
Signed-off-by: Waldemar Brodkorb <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Waldemar Brodkorb [Thu, 24 Oct 2024 11:50:31 +0000 (13:50 +0200)]
package/libjwt: update to 1.17.2
Signed-off-by: Waldemar Brodkorb <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Waldemar Brodkorb [Thu, 24 Oct 2024 11:49:35 +0000 (13:49 +0200)]
package/ruby: update to 3.3.5
Signed-off-by: Waldemar Brodkorb <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Giulio Benetti [Wed, 23 Oct 2024 17:04:46 +0000 (19:04 +0200)]
package/libtraceevent: bump to version 1.8.4
Signed-off-by: Giulio Benetti <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Giulio Benetti [Wed, 23 Oct 2024 17:04:47 +0000 (19:04 +0200)]
package/trace-cmd: bump to version 3.3.1
Signed-off-by: Giulio Benetti <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:33:47 +0000 (23:33 -0600)]
package/python-jsonschema-specifications: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:30:09 +0000 (23:30 -0600)]
package/python-referencing: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:26:36 +0000 (23:26 -0600)]
package/python-urllib3: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:23:53 +0000 (23:23 -0600)]
package/python-beautifulsoup4: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:22:00 +0000 (23:22 -0600)]
package/python-soupsieve: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:19:14 +0000 (23:19 -0600)]
package/python-colorama: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:16:38 +0000 (23:16 -0600)]
package/python-docker: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:14:00 +0000 (23:14 -0600)]
package/python-flask-wtf: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:11:09 +0000 (23:11 -0600)]
package/python-pygments: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:08:44 +0000 (23:08 -0600)]
package/python-paho-mqtt: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:06:15 +0000 (23:06 -0600)]
package/python-traitlets: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:03:51 +0000 (23:03 -0600)]
package/python-annotated-types: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 05:01:20 +0000 (23:01 -0600)]
package/python-wtforms: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 04:58:49 +0000 (22:58 -0600)]
package/python-psygnal: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 04:56:40 +0000 (22:56 -0600)]
package/python-uvicorn: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 04:54:20 +0000 (22:54 -0600)]
package/python-starlette: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 04:51:46 +0000 (22:51 -0600)]
package/python-humanize: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 04:48:47 +0000 (22:48 -0600)]
package/python-hatch-vcs: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 04:44:12 +0000 (22:44 -0600)]
package/python-hatch-fancy-pypi-readme: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 04:41:04 +0000 (22:41 -0600)]
package/python-twisted: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 04:37:46 +0000 (22:37 -0600)]
package/python-dnspython: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 04:34:13 +0000 (22:34 -0600)]
package/python-expandvars: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 04:31:25 +0000 (22:31 -0600)]
package/python-aiofiles: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 00:11:57 +0000 (18:11 -0600)]
package/python-httpcore: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 00:09:23 +0000 (18:09 -0600)]
package/python-pyhamcrest: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 00:07:08 +0000 (18:07 -0600)]
package/python-fastui: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 00:05:00 +0000 (18:05 -0600)]
package/python-termcolor: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Thu, 24 Oct 2024 00:02:49 +0000 (18:02 -0600)]
package/python-attrs: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Wed, 23 Oct 2024 23:59:52 +0000 (17:59 -0600)]
package/python-argon2-cffi: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Wed, 23 Oct 2024 22:42:13 +0000 (16:42 -0600)]
package/python-httpx: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Wed, 23 Oct 2024 22:39:36 +0000 (16:39 -0600)]
package/python-multipart: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Wed, 23 Oct 2024 22:37:50 +0000 (16:37 -0600)]
package/python-service-identity: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Wed, 23 Oct 2024 22:27:06 +0000 (16:27 -0600)]
package/python-jsonschema: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Wed, 23 Oct 2024 22:22:16 +0000 (16:22 -0600)]
package/python-pydantic: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Wed, 23 Oct 2024 22:20:11 +0000 (16:20 -0600)]
package/python-iniconfig: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Wed, 23 Oct 2024 22:18:17 +0000 (16:18 -0600)]
package/python-filelock: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Wed, 23 Oct 2024 22:16:20 +0000 (16:16 -0600)]
package/python-sqlparse: use hatch setup type
Use the new hatch setup type which automatically pulls in the
host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Bernd Kuhls [Tue, 8 Oct 2024 17:48:22 +0000 (19:48 +0200)]
package/intel-microcode: security bump version to
20240910
Release notes:
https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/microcode-
20240813
https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/microcode-
20240910
20240813 fixes
CVE-2024-24853: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-01083.html
CVE-2024-25939: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-01118.html
CVE-2024-24980: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-01100.html
CVE-2023-42667: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-01038.html
CVE-2023-49141: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-01046.html
20240910 fixes
CVE-2024-23984: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-01103.html
CVE-2024-24968: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-01097.html
Signed-off-by: Bernd Kuhls <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Dario Binacchi [Tue, 8 Oct 2024 20:26:09 +0000 (22:26 +0200)]
package/acpica: bump to version
20240927
For change log since
20240321 , see:
https://github.com/user-attachments/files/
17171011 /changes.txt
Signed-off-by: Dario Binacchi <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Dario Binacchi [Tue, 8 Oct 2024 20:26:08 +0000 (22:26 +0200)]
package/acpica: switch to github
As reported in [1] the traditional acpica.org website releases might get
delayed due to website publication process, and indeed, on GitHub, the
latest released version is
20240927 , while in [2] the
20240827 version
appears. Furthermore, in [2], explicit reference is made to the GitHub
URL for direct access to the public ACPICA git repository.
[1] https://github.com/acpica/acpica/releases
[2] https://www.intel.com/content/www/us/en/developer/topic-technology/open/acpica/download.html
Signed-off-by: Dario Binacchi <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
Anisse Astier [Wed, 23 Oct 2024 20:28:14 +0000 (22:28 +0200)]
DEVELOPERS: drop Anisse Astier
I am no longer actively involved in Buildroot.
Signed-off-by: Anisse Astier <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Tue, 8 Oct 2024 21:58:15 +0000 (15:58 -0600)]
package/python-psygnal: new package
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
James Hilliard [Tue, 8 Oct 2024 22:27:24 +0000 (16:27 -0600)]
package/pkg-python.mk: add hatch setup type
As we have many python packages using the hatch(hatchling) build
system we should add a setup type for it so that we don't have to
manually specify the host-python-hatchling dependency.
Signed-off-by: James Hilliard <[email protected] >
Signed-off-by: Thomas Petazzoni <[email protected] >
This page took 0.080525 seconds and 4 git commands to generate.