Marcin Niestroj
dbacf9108a
configs/chiliboard: uboot needs openssl
...
Fixes uboot build errors:
In file included from tools/imagetool.h:24,
from tools/aisimage.c:7:
include/image.h:1383:12: fatal error: openssl/evp.h: No such file or directory
1383 | # include <openssl/evp.h>
|
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 7ee2bd48f1 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-17 13:07:27 +02:00
Bernd Kuhls
2f9f55b000
package/sconeserver: re-add dependency to pcre
...
While pcre was an optional dependency with autoconf [1] upstream removed
the HAVE_LIBPCRE defines with the introduction of cmake [2] breaking the
build without pcre after buildroot switched to cmake with commit
8b42bbf30a .
Fixes:
http://autobuild.buildroot.net/results/a15/a15db87c8cec195905b6bcc2cbd3da59ad8aa3b9/
[1] 98ec61436c
[2] 0cb655721d
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 8539a2075c )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-17 13:05:45 +02:00
Bernd Kuhls
78333aa89a
package/mpir: force arm mode instead of Thumb mode
...
Fix the following build failure:
/tmp/ccuwJnnt.s:124: Error: selected processor does not support `umull ip,r6,r2,r1' in Thumb mode
/tmp/ccuwJnnt.s:159: Error: selected processor does not support `umull ip,r0,r7,r1' in Thumb mode
Fixes:
http://autobuild.buildroot.net/results/610/61094bc7b7eb1d1e49bf8fcd1864b5cd3d7c4499/
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit ff037fe543 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-17 13:04:01 +02:00
Bernd Kuhls
c25ec8829c
package/taglib: bump to version 1.13.1
...
Release notes:
https://mail.kde.org/pipermail/taglib-devel/2023-July/003066.html
Changelog:
https://taglib.org/#taglib-1131-release---jul-1-2023
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 261c5894b0 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-17 12:56:15 +02:00
Bernd Kuhls
607450ac62
package/python-pyicu: fix build
...
Fixes:
http://autobuild.buildroot.net/results/977/977c043615603dd3541e23b81c5f11374606aff6/
Set environment variables to cross-compile friendly values, this prevents
icu-config picking up host libraries:
https://gitlab.pyicu.org/main/pyicu/-/blob/main/setup.py#L89
https://gitlab.pyicu.org/main/pyicu/-/blob/main/setup.py#L179
https://gitlab.pyicu.org/main/pyicu/-/blob/main/setup.py#L216
This follows the upstream build docs:
https://gitlab.pyicu.org/main/pyicu#building-pyicu
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit c15e60c106 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 22:06:22 +02:00
Sébastien Szymanski
20969cb303
package/pkgconf: fix download URL
...
Due to problems with the registrar (dynadot) [1], the dereferenced.org
domain got stolen and is up for auction. While sorting that out, the
official download site has changed to a different domain [2]. Update
PKGCONF_SITE to the new location.
There's an upstream bug to track the issue [3].
[1] https://social.treehouse.systems/@ariadne/110643909699308207
[2] 437c2a3218
[3] https://github.com/pkgconf/pkgconf/issues/302
Fixes: https://bugs.busybox.net/show_bug.cgi?id=15673
Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit ef95ec920c )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 22:03:24 +02:00
Romain Naour
4808ca56c9
package/{binutils, gdb}: switch to https urls for archives hashes
...
FTP urls doesn't work anymore with Firefox [1] and Google Chrome [2],
switch to https urls.
[1] https://blog.mozilla.org/addons/2020/04/13/what-to-expect-for-the-upcoming-deprecation-of-ftp-in-firefox/
[2] https://chromestatus.com/feature/6246151319715840
Signed-off-by: Romain Naour <romain.naour@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit bd17127b4a )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 19:46:52 +02:00
Bernd Kuhls
bfc4e616e3
package/assimp: needs gcc >= 7
...
Fixes:
http://autobuild.buildroot.net/results/d6c/d6caf3c2c0fd670e70950d3e89629df39f8ce596/
After adding various fixes for the autobuilder error and subsequent
build errors this build error can only be fixed by using gcc >= 7:
output/build/assimp-5.2.5/code/AssetLib/Obj/ObjFileParser.cpp:55:23:
fatal error: string_view: No such file or directory
Usage of string_view was added in version 5.2.5 by upstream commit
f6bcb160d0
which was added to buildroot by commit
7d843d9cc0
Removed BR2_TOOLCHAIN_HAS_GCC_BUG_64735 which is only valid for gcc < 7
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 6dad3a709c )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 19:44:46 +02:00
Bernd Kuhls
44d6104ece
package/haproxy: bump version to 2.6.14
...
Changelog: http://www.haproxy.org/download/2.6/src/CHANGELOG
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit f43f9c6ea6 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 19:43:36 +02:00
Bernd Kuhls
0a45615f65
package/haproxy: fix build on aarch64
...
Fixes:
http://autobuild.buildroot.net/results/07c/07ccb8c45c709a4b6ed32aafa33cd04e74174b11/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 7fde35212c )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 19:43:31 +02:00
Gary Bisson
2927ab2135
configs/nitrogen*: add missing openssl u-boot dependency
...
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271709
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271710
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271712
Signed-off-by: Gary Bisson <bisson.gary@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 717762b5f5 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 18:26:26 +02:00
Gary Bisson
ca8d533b47
configs/nitrogen*: add missing pylibfdt u-boot dependency
...
Needed by binman.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271714
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271716
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271718
https://gitlab.com/buildroot.org/buildroot/-/jobs/4519271719
Signed-off-by: Gary Bisson <bisson.gary@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit ce8bf14ff6 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 18:24:58 +02:00
Bernd Kuhls
f5315e59bd
package/rygel: fix Config.in comment
...
Move the comment out of the if-clause and include the python3 dependency
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit e539853fc3 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 18:17:44 +02:00
Bernd Kuhls
d69773edb4
package/gupnp: fix build with newer versions of libxml2
...
Fixes:
http://autobuild.buildroot.net/results/b26/b267c4137edebc504757b6275824c748cce3d894/
libxml2 deprecated the function xmlRecoverMemory with commit
51035c539e
first included in versions 2.11.0. Buildroot bumped libxml2 to the 2.11
branch with commit dfe1ca7872 .
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 4f9ce6dbf6 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 18:16:53 +02:00
Peter Seiderer
b1223386bf
package/qt6: bump version to 6.4.3
...
For details see [1].
[1] https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.4.3/release-note.md
Signed-off-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit a846728911 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 18:06:15 +02:00
Julien Olivain
e7188504c3
package/fluidsynth: bump to version 2.3.3
...
For change log since v2.3.2, see:
- https://github.com/FluidSynth/fluidsynth/releases/tag/v2.3.3
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 2c9b853093 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 18:03:19 +02:00
Luca Ceresoli
0741fd01fa
package/agentpp: fix build error due to type mismatch
...
This was supposedly fixed by commit 5f06ecf5e1 ("package/agentpp:
security bump to version 4.6.0") but has kept happening so far.
No public place for contributions, thus this patch has been sent to private
e-mail.
Fixes:
http://autobuild.buildroot.net/results/e8abd6bdc62a028955915706b03d72239786c703/
http://autobuild.buildroot.net/results/24441fb679fbf5f913c9b6431c98aec596ead587/
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit d68f6e3042 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 17:59:08 +02:00
Bernd Kuhls
9af2e541e3
package/bind: security bump version to 9.16.42
...
Changelog: https://ftp.isc.org/isc/bind9/9.16.42/CHANGES
Fixes CVE-2023-2911
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 5ce72a74d2 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 11:13:18 +02:00
Peter Korsgaard
7b1e6c0220
package/wireshark: security bump to version 4.0.6
...
Fixes the following security issues:
- CVE-2023-1992: The RPC over RDMA dissector could crash
https://www.wireshark.org/security/wnpa-sec-2023-09.html
- CVE-2023-1993: The LISP dissector could go into a large loop
https://www.wireshark.org/security/wnpa-sec-2023-10.html
- CVE-2023-1994: The GQUIC dissector could crash
https://www.wireshark.org/security/wnpa-sec-2023-11.html
- CVE-2023-2855: The Candump log file parser could crash
https://www.wireshark.org/security/wnpa-sec-2023-12.html
- CVE-2023-2857: The BLF file parser could crash
https://www.wireshark.org/security/wnpa-sec-2023-13.html
- The GDSDB dissector could go into an infinite loop
https://www.wireshark.org/security/wnpa-sec-2023-14.html
- CVE-2023-2858: The NetScaler file parser could crash
https://www.wireshark.org/security/wnpa-sec-2023-15.html
- CVE-2023-2856: The VMS TCPIPtrace file parser could crash
https://www.wireshark.org/security/wnpa-sec-2023-16.html
- CVE-2023-2854: The BLF file parser could crash
https://www.wireshark.org/security/wnpa-sec-2023-17.html
- CVE-2023-0666: The RTPS dissector could crash
https://www.wireshark.org/security/wnpa-sec-2023-18.html
- CVE-2023-0668: The IEEE C37.118 Synchrophasor dissector could crash
https://www.wireshark.org/security/wnpa-sec-2023-19.html
- The XRA dissector could go into an infinite loo
https://www.wireshark.org/security/wnpa-sec-2023-20.html
[Peter: refer to SIGNATURES files now that it is again fixed]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit af25796d49 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 11:12:43 +02:00
Bernd Kuhls
3c81f3293d
package/dav1d: bump version to 1.2.1
...
Release notes:
https://code.videolan.org/videolan/dav1d/-/blob/master/NEWS
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 199301a6d5 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 08:28:37 +02:00
Bernd Kuhls
2b087c7c28
package/dav1d: bump version to 1.2.0
...
Additionally fxes a security issue:
- CVE-2023-32570: VideoLAN dav1d before 1.2.0 has a thread_task.c race
condition that can lead to an application crash, related to
dav1d_decode_frame_exit.
Release notes:
https://code.videolan.org/videolan/dav1d/-/blob/master/NEWS
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 37fd4ee80a )
[Peter: mention security fix]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 08:27:36 +02:00
Bernd Kuhls
77d944f083
package/dav1d: bump version to 1.1.0
...
Release notes:
https://code.videolan.org/videolan/dav1d/-/blob/master/NEWS
Switched _SITE to https.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 3ed1653bfb )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 08:27:24 +02:00
Peter Korsgaard
a65eb8c871
package/tiff: security bump to version 4.5.1
...
Fixes the following security issues:
- CVE-2023-1916: A flaw was found in tiffcrop, a program distributed by the
libtiff package. A specially crafted tiff file can lead to an
out-of-bounds read in the extractImageSection function in
tools/tiffcrop.c, resulting in a denial of service and limited information
disclosure. This issue affects libtiff versions 4.x.
- CVE-2023-25434: libtiff 4.5.0 is vulnerable to Buffer Overflow via
extractContigSamplesBytes() at /libtiff/tools/tiffcrop.c:3215.
- CVE-2023-26965: loadImage() in tools/tiffcrop.c in LibTIFF through 4.5.0
has a heap-based use after free via a crafted TIFF image
Drop the now upstream
0001-tiffcrop-Correct-simple-copy-paste-error-Fix-488.patch.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit cb496970c0 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 08:18:38 +02:00
Charles Hardin
ecf53c5e0f
package/alsa-plugins: fix dependencies for the alsa plugin package
...
The alsa-utils will remove and create the /usr/share/alsa dir
as a whole and since the alsa plugins needs to add config into
this same directory it should come after those install steps.
Also, the bluez alsa needs the plugins installed to find them
during the configuration phases - so, interlock the plugins
when configured.
Signed-off-by: Charles Hardin <ckhardin@gmail.com >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit 3223a34ee5 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 08:15:04 +02:00
Bernd Kuhls
6cc3d49997
package/quickjs: disable on sh*
...
quickjs unconditionally uses FE_{DOWN,UP}WARD and so fails to build on
sh* since its addition in commit
5d50793659
Fixes:
sh4: http://autobuild.buildroot.net/results/46d/46d7da58a857939ee3a33f60ab64ad278157c3bd/
sh4a: http://autobuild.buildroot.net/results/b1d/b1db05e79e5505c6606524e54e159224b633eac2/
sh4aeb: http://autobuild.buildroot.net/results/c30/c307a1b67142405f81c9276056b28bea366f2ccf/
sh4eb: http://autobuild.buildroot.net/results/945/945b508385ba5aa25f982f8a8493628fa828e472/
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit 1880a061e8 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 08:09:14 +02:00
Bernd Kuhls
d0126da06b
package/quickjs: disable on microblaze
...
quickjs unconditionally uses FE_{DOWN,UP}WARD and so fails to build on
microblaze since its addition in commit
5d50793659
Fixes:
http://autobuild.buildroot.net/results/3b1/3b1b1f91998bfdec65f3e6fb8931df9c8871b953/
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit 72bb3e89aa )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 08:09:03 +02:00
Peter Korsgaard
19fc429a86
package/dbus: security bump to version 1.2.28
...
Fixes the following security issues:
- CVE-2023-34969: Fix an assertion failure in dbus-daemon when a privileged
Monitoring connection (dbus-monitor, busctl monitor, gdbus monitor or
similar) is active, and a message from the bus driver cannot be delivered
to a client connection due to <deny> rules or outgoing message quota.
This is a denial of service if triggered maliciously by a local attacker.
- Fix an incorrect assertion that could be used to crash dbus-daemon or
other users of DBusServer prior to authentication, if libdbus was compiled
with assertions enabled.
For details, see the NEWS file:
https://gitlab.freedesktop.org/dbus/dbus/blob/dbus-1.12/NEWS
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit 52ae2a4e1d )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 08:06:02 +02:00
Marcin Niestroj
474354c08d
package/python-dbus-fast: drop python-async-timeout dependency
...
async-timeout dependency was dropped upstream for Python 3.11 (see [1]).
[1] 1b5c9e1cb9
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit d39ca32388 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 08:00:48 +02:00
Bernd Kuhls
d2ebcac107
DEVELOPERS: remove Bernd Kuhls from package/x11r7/
...
Remove packages which are no longer runtime-tested here.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit 2aa3f61b5b )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 00:24:48 +02:00
Bernd Kuhls
bd0608468c
package/x11r7/xdriver_xf86-video-dummy: bump version to 0.4.1
...
Release notes:
https://lists.x.org/archives/xorg-announce/2023-May/003394.html
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit db45cc593e )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-16 00:20:41 +02:00
Bernd Kuhls
aa50601298
{linux, linux-headers}: bump 4.{14, 19}.x / 5.{4, 10, 15}.x / 6.{1, 3}.x series
...
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 11ca48bc4b )
[Peter: drop 6.3.x bump]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 17:44:06 +02:00
James Hilliard
d24a21ff53
package/python-cryptography: bump to version 39.0.2
...
Signed-off-by: James Hilliard <james.hilliard1@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit adabd0b8b0 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 17:32:31 +02:00
Bernd Kuhls
df7c755a55
package/heimdal: Use perl module JSON:PP, part of core, instead of JSON package
...
Fixes:
http://autobuild.buildroot.net/results/48b/48b52d205150e30e522b40d1c7b51f339ae8b0db/
This patch ports the existing patch for the samba4 package:
https://git.busybox.net/buildroot/tree/package/samba4/0004-3rdparty-heindal-Use-perl-module-JSON-part-of-core-i.patch
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 770f097ee6 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 17:12:34 +02:00
Bernd Kuhls
94a381ed47
package/fftw: bump version to 3.3.10
...
Release notes: http://fftw.org/release-notes.html
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit d521d6b756 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 13:46:48 +02:00
Bernd Kuhls
dd653e4e6a
DEVELOPERS: remove José Pekkarinen
...
E-mails are bouncing:
<jose.pekkarinen@unikie.com >: host ASPMX.L.GOOGLE.com[74.125.133.26] said:
550-5.1.1 The email account that you tried to reach does not exist. Please
try 550-5.1.1 double-checking the recipient's email address for typos or
550-5.1.1 unnecessary spaces. Learn more at 550 5.1.1
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 5206492d6a )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 13:43:25 +02:00
James Hilliard
18fb407dc4
package/python-requests: security bump to version 2.31.0
...
Fixes the following security issue:
- CVE-2023-32681: Unintended leak of Proxy-Authorization header
https://github.com/psf/requests/security/advisories/GHSA-j8r2-6x86-q33q
Signed-off-by: James Hilliard <james.hilliard1@gmail.com >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit c94922beac )
[Peter: mark as security bump]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 13:41:57 +02:00
Peter Korsgaard
74fa4b795f
package/nodejs: security bump to version 16.20.0
...
Fixes the following security issues:
- CVE-2023-23918: Node.js Permissions policies can be bypassed via
process.mainModule (High)
- CVE-2023-23919: Node.js OpenSSL error handling issues in nodejs crypto
library (Medium)
- CVE-2023-23920: Node.js insecure loading of ICU data through ICU\_DATA
environment variable (Low)
- CVE-2023-23936: Fetch API in Node.js did not protect against CRLF
injection in host headers (Medium)
https://github.com/nodejs/undici/security/advisories/GHSA-5r9g-qh6m-jxff
- CVE-2023-24807: Regular Expression Denial of Service in Headers in Node.js
fetch API (Low)
https://github.com/nodejs/undici/security/advisories/GHSA-r6ch-mqf9-qc9w
For more details, see the advisory:
https://nodejs.org/en/blog/vulnerability/february-2023-security-releases
Update LICENSE hash after an update of the openssl license snippet:
e7ed56f501
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit a240f9da85 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 13:32:51 +02:00
Peter Korsgaard
4a5deaea87
package/c-ares: security bump to version 1.19.1
...
Fixes the following security issues:
- CVE-2023-32067: High. 0-byte UDP payload causes Denial of Service
- CVE-2023-31147 Moderate. Insufficient randomness in generation of DNS
query IDs
- CVE-2023-31130. Moderate. Buffer Underwrite in ares_inet_net_pton()
- CVE-2023-31124. Low. AutoTools does not set CARES_RANDOM_FILE during
cross compilation
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit 0afcfe5a48 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 13:32:24 +02:00
Peter Korsgaard
989da60ac4
package/python-django: security bump to version 4.1.9
...
Fixes the following security issues:
- CVE-2023-31047: Potential bypass of validation when uploading multiple
files using one form field
https://www.djangoproject.com/weblog/2023/may/03/security-releases/
In addition, 4.1.8 fixed a bug related to secrets rotation:
https://docs.djangoproject.com/en/4.2/releases/4.1.8/
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit fa1d011a05 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 13:30:22 +02:00
Bernd Kuhls
115f51407e
package/check: switch to cmake
...
The autoconf-build system fails to properly detect vsnprintf
checking for vsnprintf... yes
checking whether vsnprintf is C99 compliant... no
which leads to a build error
snprintf.c:495:1: error: inlining failed in call to 'always_inline'
'rpl_vsnprintf.localalias': function not inlinable
Building with cmake fixes the problem:
-- Looking for vsnprintf
-- Looking for vsnprintf - found
The cmake build system has an option to disable checkmk, so we don't
need to remove it from target anymore.
Fixes:
http://autobuild.buildroot.net/results/e55/e5562513226de902dae642526165b1555a540144/
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Arnout Vandecappelle <arnout@mind.be >
(cherry picked from commit 6dfc789f4f )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 13:29:27 +02:00
Bernd Kuhls
4c248eb4d8
package/hwdata: install to staging
...
hwdata provides a .pc file, which other packages can look up to find the
location where hwdata files are, and use them at build time.
This is the case for the upcoming libdisplay-info package, which
requires the hwdata's PNP IDs at build time.
However, installing the .pc file is not enough. Indeed, meson (which
libdisplay-info uses) will look for the corresponding data files in
datadir, which it locates relative to the sysroot, which is our staging.
So, we also need to install the hwdata files in staging.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit f36c57728a )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 12:47:53 +02:00
Bernd Kuhls
6dcfb24bed
linux: fix kernel hashes
...
Fixes commit which added hashes for wrong files:
https://git.busybox.net/buildroot/commit/?id=88108f9793f5824fa058b878974f234ebe834325
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit d4a96ee46e )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 12:37:34 +02:00
Bernd Kuhls
b89e4aacfc
{linux, linux-headers}: bump 4.{14, 19}.x / 5.{4, 10, 15}.x / 6.{1, 3}.x series
...
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 88108f9793 )
[Peter: drop 6.3.x bump]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 12:36:04 +02:00
Peter Korsgaard
678af7a6a8
package/jhead: security bump to version 3.08
...
Fixes the following security issue:
- CVE-2022-41751: Jhead 3.06.0.1 allows attackers to execute arbitrary OS
commands by placing them in a JPEG filename and then using the
regeneration -rgt50 option.
Update readme.txt hash after a minor tweak of the text:
a0eed69daa
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 39ffadd6ae )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 12:32:08 +02:00
Bernd Kuhls
bbb1a6e715
package/python3: security bump version to 3.11.4
...
Rebased two patches.
Changelog:
https://docs.python.org/release/3.11.4/whatsnew/changelog.html#python-3-11-4
Fixes the following security problems:
- gh-99889: Fixed a security in flaw in uu.decode() that could allow for
directory traversal based on the input if no out_file was specified.
- gh-104049: Do not expose the local on-disk location in directory
indexes produced by http.client.SimpleHTTPRequestHandler.
- gh-102153: urllib.parse.urlsplit() now strips leading C0 control and
space characters following the specification for URLs defined by WHATWG
in response to CVE-2023-24329. Patch by Illia Volochii.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit b7b11d7e94 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 11:24:40 +02:00
Bernd Kuhls
08f414e1ed
package/ghostscript: security bump version to 10.01.1
...
Switch tarball to .xz
Fixes CVE-2023-28879:
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28879
Release notes:
https://ghostscript.readthedocs.io/en/latest/News.html?utm_source=ghostscript&utm_medium=website&utm_content=inline-link
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 1116fd46a4 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 11:24:02 +02:00
Francois Perrad
05eed171de
package/libgtk3: bump to version 3.24.38
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 043d0e6f6c )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 10:54:06 +02:00
Bernd Kuhls
a7bab4b191
package/libcap: security bump version to 2.69
...
Fixes
- CVE-2023-2602
https://git.kernel.org/pub/scm/libs/libcap/libcap.git/commit/?id=bc6b36682f188020ee4770fae1d41bde5b2c97bb
- CVE-2023-2603
https://git.kernel.org/pub/scm/libs/libcap/libcap.git/commit/?id=422bec25ae4a1ab03fd4d6f728695ed279173b18
Updated license hash due to an upstream commit which added a SPDX header:
https://git.kernel.org/pub/scm/libs/libcap/libcap.git/commit/?id=70998415a87587f31063a26a1e52c6f7806b7834
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 3fc82816b4 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 10:52:28 +02:00
Bernd Kuhls
844d2f7626
{linux, linux-headers}: bump 4.{14, 19}.x / 5.{4, 10, 15}.x / 6.{1, 3}.x series
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit ed4792aaec )
[Peter: drop 6.3.x bump]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 10:50:53 +02:00
Bernd Kuhls
5ff04ccda2
package/libxslt: bump to version 1.1.38
...
Release notes:
https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.38.news
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 6794f14d48 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2023-07-06 10:47:40 +02:00