Brandon Maier
c4a0b4f392
package/openssh: fix build error on powerpc
...
Fixes the following error message introducted by OpenSSH v9.6p1.
sshkey.c: In function 'sshkey_set_filename':
sshkey.c:3705:1: sorry, unimplemented: '-fzero-call-used-regs' not supported on this target
3705 | }
Fixes:
http://autobuild.buildroot.org/results/ec7/ec780aed5b1c4fdf9b91f6e7be99e8d4c42efa58
Signed-off-by: Brandon Maier <brandon.maier@collins.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 325fe1aecf )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 16:30:57 +01:00
Fabrice Fontaine
891a18201a
package/ngrep: fix build with libnet
...
Use pkg-config to find libnet and avoid the following build failure
raised since commit 100ba8351c if
libnet-config is found on the host:
/home/autobuild/autobuild/instance-4/output-1/host/bin/mips64el-buildroot-linux-gnu-gcc -s -o ngrep ngrep.o tcpkill.o -lpcap -lnet -lpcre -L/usr/lib -lnet
mips64el-buildroot-linux-gnu-gcc: ERROR: unsafe header/library path used in cross-compilation: '-L/usr/lib'
While at it, format Upstream tag of other patches
Fixes:
- http://autobuild.buildroot.org/results/05c916162b9c1027cf53f1699a1f5653151098ed
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 14c0c37eaf )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 16:29:23 +01:00
Fabrice Fontaine
9bea8aa5cc
package/leptonica: affected by gcc bug 101737
...
leptonica is affected by gcc bug 101737 resulting in the following build
failure since at least bump to version 1.82.0 in commit
81a961c545 :
sh4eb-buildroot-linux-gnu-gcc.br_real: internal compiler error: Segmentation fault signal terminated program cc1
Please submit a full bug report, with preprocessed source (by using -freport-bug).
See <http://bugs.buildroot.net/ > for instructions.
Fixes:
- http://autobuild.buildroot.org/results/f18979454399d9c728f9e017e4cc3a1b27458f5b
- http://autobuild.buildroot.org/results/f3c803892175b3bb2ce68e3140c879b4a4d4b302
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 31b4883379 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 16:27:08 +01:00
Fabrice Fontaine
ccf4a64464
package/domoticz: drop fmt dependency
...
fmt is not a dependency since bump to version 2022.1 in commit
adca60540f and
82043c4d5c
9e02d9a79c
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit dc3609c53f )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 16:24:23 +01:00
Thomas Petazzoni
75faae5b6b
package/sysstat: update upstream location
...
The http://pagesperso-orange.fr service being down,
http://pagesperso-orange.fr/sebastien.godard/ is no longer
accessible (or more precisely serves some HTML junk), meaning that we
currently cannot download the tarball of sysstat from the official
upstream location, and we always fallback to sources.buildroot.net.
This commit therefore updates to use the new upstream location on
github.io. The 12.6.1 release is available there, with the same hash,
so we can just point to the new upstream location.
Fixes:
ERROR: while checking hashes from package/sysstat//sysstat.hash
ERROR: sysstat-12.6.1.tar.xz has wrong sha1 hash:
ERROR: expected: a730982e0c2d4964a0022c1509f3ea0a345402bc
ERROR: got : d64a079729f2ff5b304294d68fbc041a46c4966d
ERROR: Incomplete download, or man-in-the-middle (MITM) attack
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit 35a2cb0227 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 16:21:03 +01:00
Atsushi Nemoto
f807faa332
package/sysstat: do not autodetect sa_lib_dir
...
The configure script of sysstat package checks host's /usr/lib64
directory for default sa_lib_dir.
Specify sa_lib_dir exclicitly to avoid host dependency.
Signed-off-by: Atsushi Nemoto <atsushi.nemoto@sord.co.jp >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit eef5c297e7 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 16:18:04 +01:00
Fabrice Fontaine
02fa102977
package/frr: drop libnl dependency
...
libnl is not needed to build frr since the addition of the package in
commit 26d82d006b
No mention of libnl found in https://github.com/FRRouting/frr or
https://docs.frrouting.org/projects/dev-guide/en/latest/building.html
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
(cherry picked from commit efa955ac41 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 16:17:12 +01:00
Fabrice Fontaine
5d06ac104a
package/rdma-core: fix mips4 build
...
The 'sync' instruction for MIPS was defined in MIPS-II as taking no
operands. MIPS32 extended the define of 'sync' as taking an optional
unsigned 5 bit immediate.
As a result, replace "sync 0" by "sync" to fix the following build
failure on mips4 raised since the addition of the package in commit
ea47e177f0 and
b7c428344e :
/tmp/ccrBy9fV.s: Assembler messages:
/tmp/ccrBy9fV.s:994: Error: invalid operands `sync 0'
Fixes:
- http://autobuild.buildroot.org/results/2ab22a3ec4287fc15ff6a90d8715b4897b32a933
- http://autobuild.buildroot.org/results/2df58f9b98aacf00960932f53510b29199393461
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 7e5a90f1b7 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 16:15:23 +01:00
Aleksandr Makarov
d3657f363f
package/haproxy: fix runtime 'FATAL ERROR: invalid code detected -- cannot go further'
...
Setting HAPROXY_CFLAGS on the haproxy build command line overrides CFLAGS
which were internally set by the haproxy Makefile.
Among those omitted CFLAGS is -fwrapv. Compiling haproxy without it and
and then running the program results in runtime error:
$ haproxy
FATAL ERROR: invalid code detected -- cannot go further, please recompile!
...
To address this issue, include HAPROXY_CFLAGS in the DEFINE variable instead
of CFLAGS in haproxy.mk.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 9b90ef6178 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 15:20:56 +01:00
Fabrice Fontaine
158395a46d
package/yasm: add YASM_CPE_ID_VENDOR
...
cpe:2.3:a:tortall:yasm is a valid CPE identifier for this package:
https://nvd.nist.gov/products/cpe/detail/2E6C9C2F-A057-4083-BC90-095403EF138E
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 17dac57e3e )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 15:18:18 +01:00
Fabrice Fontaine
ec07035714
package/opus: set OPUS_CPE_ID_VENDOR
...
cpe:2.3:a:opus-codec:opus is a valid CPE identifier for this package:
https://nvd.nist.gov/products/cpe/detail/6C4EA9AB-4801-48FF-9737-A7C3B368C41B
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 302175353a )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 15:18:15 +01:00
Fabrice Fontaine
8778f7b6b6
package/dbus: drop DBUS_CPE_ID_PRODUCT
...
Commit 363b4ebf1a set DBUS_CPE_ID_PRODUCT
to dbus but this is not needed as DBUS_CPE_ID_PRODUCT will be set to the
package name (i.e. dbus) by default
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit b878e7bbbc )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-29 15:17:56 +01:00
Fabrice Fontaine
3f2145c084
package/python-aiohttp: update PYTHON_AIOHTTP_CPE_ID_VENDOR
...
cpe:2.3:a:aiohttp_project:aiohttp has been deprecated in favor of
cpe:2.3:a:aiohttp:aiohttp in November 2023:
<cpe-item name="cpe:/a:aiohttp_project:aiohttp:3.8.0:beta0" deprecated="true" deprecation_date="2023-11-22T17:09:16.157Z">
<title xml:lang="en-US">Aiohttp Project Aiohttp 3.8.0 Beta 0</title>
<reference href="https://github.com/aio-libs/aiohttp/releases ">Change Log</reference>
<cpe-23:cpe23-item name="cpe:2.3:a:aiohttp_project:aiohttp:3.8.0:beta0:*:*:*:*:*:*">
<cpe-23:deprecated-by name="cpe:2.3:a:aiohttp:aiohttp:3.8.0:beta0:*:*:*:*:*:*" type="NAME_CORRECTION"/>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit a01deb6617 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:21:45 +01:00
Fabrice Fontaine
801051154b
package/c-ares: update C_ARES_CPE_ID_VENDOR
...
cpe:2.3:a:c-ares_project:c-ares has been deprecated in favor of
cpe:2.3:a:c-ares:c-ares in September 2023:
<cpe-item name="cpe:/a:c-ares_project:c-ares:1.17.1" deprecated="true" deprecation_date="2023-09-15T11:42:40.183Z">
<title xml:lang="en-US">C-ares Project C-ares 1.17.1</title>
<reference href="https://github.com/c-ares/c-ares/releases ">Change Log</reference>
<cpe-23:cpe23-item name="cpe:2.3:a:c-ares_project:c-ares:1.17.1:*:*:*:*:*:*:*">
<cpe-23:deprecated-by name="cpe:2.3:a:c-ares:c-ares:1.17.1:*:*:*:*:*:*:*" type="NAME_CORRECTION"/>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit ae2baf1771 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:21:29 +01:00
Fabrice Fontaine
5d99116998
package/dbus: fix CPE variables
...
cpe:2.3:a:d-bus_project:d-bus has been deprecated in favor of
cpe:2.3:a:freedesktop:dbus in December 2023:
<cpe-item name="cpe:/a:d-bus_project:d-bus:1.15.6" deprecated="true" deprecation_date="2023-12-27T16:36:56.510Z">
<title xml:lang="en-US">D-Bus Project D-Bus 1.15.6</title>
<reference href="https://gitlab.freedesktop.org/dbus/dbus/-/tags ">Version</reference>
<reference href="https://gitlab.freedesktop.org/dbus/dbus/-/issues/457 ">Advisory</reference>
<cpe-23:cpe23-item name="cpe:2.3:a:d-bus_project:d-bus:1.15.6:*:*:*:*:*:*:*">
<cpe-23:deprecated-by name="cpe:2.3:a:freedesktop:dbus:1.15.6:*:*:*:*:*:*:*" type="NAME_CORRECTION"/>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 363b4ebf1a )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:20:56 +01:00
Fabrice Fontaine
51cf6919d0
package/flex: update FLEX_CPE_ID_VENDOR
...
cpe:2.3:a:flex_project:flex has been deprecated in favor of
cpe:2.3:a:westes:flex in October 2023:
<cpe-item name="cpe:/a:flex_project:flex:2.6.4" deprecated="true" deprecation_date="2023-10-06T17:12:20.950Z">
<title xml:lang="en-US">Flex Fast Lexical Analyser 2.6.4</title>
<reference href="https://github.com/westes/flex/releases ">Version</reference>
<reference href="https://github.com/westes/flex/ ">Product</reference>
<cpe-23:cpe23-item name="cpe:2.3:a:flex_project:flex:2.6.4:*:*:*:*:*:*:*">
<cpe-23:deprecated-by name="cpe:2.3:a:westes:flex:2.6.4:*:*:*:*:*:*:*" type="NAME_CORRECTION"/>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit c438422d49 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:20:50 +01:00
Fabrice Fontaine
ab793d11db
package/json-c: update JSON_C_CPE_ID_VENDOR
...
cpe:2.3:a:json-c_project:json-c has been deprecated in favor of
cpe:2.3:a:json-c:json-c in September 2023:
<cpe-item name="cpe:/a:json-c_project:json-c:0.14" deprecated="true" deprecation_date="2023-09-16T13:05:58.643Z">
<title xml:lang="en-US">JSON-C Project JSON-C 0.14</title>
<reference href="https://github.com/json-c/json-c/releases ">Version</reference>
<cpe-23:cpe23-item name="cpe:2.3:a:json-c_project:json-c:0.14:*:*:*:*:*:*:*">
<cpe-23:deprecated-by name="cpe:2.3:a:json-c:json-c:0.14-20200419:*:*:*:*:*:*:*" type="NAME_CORRECTION"/>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 63118fbb55 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:20:15 +01:00
Fabrice Fontaine
713753e81e
package/x11r7/xlib_libXpm: update XLIB_LIBXPM_CPE_ID_VENDOR
...
cpe:2.3:a:libxpm_project:libxpm has been deprecated in favor of
cpe:2.3:a:x.org:libxpm in October 2023:
<cpe-item name="cpe:/a:libxpm_project:libxpm:3.5.15" deprecated="true" deprecation_date="2023-10-17T15:55:35.850Z">
<title xml:lang="en-US">Libxpm Project Libxpm 3.5.15</title>
<reference href="https://gitlab.freedesktop.org/xorg/lib/libxpm/-/tags ">Version</reference>
<cpe-23:cpe23-item name="cpe:2.3:a:libxpm_project:libxpm:3.5.15:*:*:*:*:*:*:*">
<cpe-23:deprecated-by name="cpe:2.3:a:x.org:libxpm:3.5.15:*:*:*:*:*:*:*" type="NAME_CORRECTION"/>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 03a9171cce )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:17:19 +01:00
Fabrice Fontaine
9d4262cf2a
package/netatalk: update NETATALK_CPE_ID_VENDOR
...
cpe:2.3:a:netatalk_project:netatalk has been deprecated in favor of
cpe:2.3:a:netatalk:netatalk in September 2023:
<cpe-item name="cpe:/a:netatalk_project:netatalk:3.1.13" deprecated="true" deprecation_date="2023-09-29T11:15:00.340Z">
<reference href="https://sourceforge.net/projects/netatalk/files/netatalk/ ">Version</reference>
<cpe-23:cpe23-item name="cpe:2.3:a:netatalk_project:netatalk:3.1.13:*:*:*:*:*:*:*">
<cpe-23:deprecated-by name="cpe:2.3:a:netatalk:netatalk:3.1.13:*:*:*:*:*:*:*" type="NAME_CORRECTION"/>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 5ae38ec621 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:16:56 +01:00
Fabrice Fontaine
caf50ae750
package/linux-firmware: drop LINUX_FIRMWARE_CPE_ID_VENDOR
...
cpe:2.3:a:kernel:linux-firmware added by commit
63332c33aa has never been a valid CPE ID
for this package:
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe:2.3:a:kernel:linux-firmware
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 380d4a75f5 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:15:25 +01:00
Fabrice Fontaine
ac90d5aecd
package/wireless-regdb: drop WIRELESS_REGDB_CPE_ID_VENDOR
...
cpe:2.3:a:kernel:wireless-regdb added by commit
63332c33aa has never been a valid CPE ID
for this package:
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:kernel:wireless-regdb
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 05617160dd )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:15:00 +01:00
Fabrice Fontaine
50834a50e1
package/libvips: update LIBVIPS_CPE_ID_VENDOR
...
cpe:2.3:a:libvips_project:libvips has been deprecated in favor of
cpe:2.3:a:libvips:libvips in September 2023:
<cpe-item name="cpe:/a:libvips_project:libvips:8.10.6:-" deprecated="true" deprecation_date="2023-09-29T11:18:01.067Z">
<title xml:lang="en-US">libvips Project libvips 8.10.6 -</title>
<reference href="https://libvips.github.io/libvips/ ">Project</reference>
<reference href="https://github.com/libvips/libvips/releases ">Change Log</reference>
<cpe-23:cpe23-item name="cpe:2.3:a:libvips_project:libvips:8.10.6:-:*:*:*:*:*:*">
<cpe-23:deprecated-by name="cpe:2.3:a:libvips:libvips:8.10.6:-:*:*:*:*:*:*" type="NAME_CORRECTION"/>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 5e4eba6414 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:14:30 +01:00
Fabrice Fontaine
c3203317ec
package/minizip: fix CPE variables
...
cpe:2.3:a:minizip_project:minizip added by commit
425339dcdf is not a valid CPE identifier
for this package, cpe:2.3:a:zlib-ng:minizip-ng is the correct one:
https://nvd.nist.gov/products/cpe/detail/64E392F1-65DD-42E5-B618-AD893BA37FB3
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit f1e05a8199 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:13:57 +01:00
Fabrice Fontaine
5e5a8f7383
package/lvm2: fix CPE variable
...
Commit d70da0be78 wrongly set
LVM2_CPE_ID_PRODUCT instead of LVM2_CPE_ID_VENDOR
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 8c0d9795a7 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:13:39 +01:00
Fabrice Fontaine
ed4b9473c3
package/mpfr: fix CPE variables
...
cpe:2.3:a:gnu:mpfr added by commit
63332c33aa has never been a valid CPE
identifier for this package
cpe:2.3:a:mpfr:gnu_mpfr is a valid CPE identifier for this package:
https://nvd.nist.gov/products/cpe/detail/7B981E0A-5BAC-4A80-A734-5FD4B51B04EF
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 186883f497 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:13:02 +01:00
Fabrice Fontaine
535bac39d5
package/crda: drop CRDA_CPE_ID_VENDOR
...
cpe:2.3:a:kernel:crda added by commit
63332c33aa has never been a valid CPE ID
for this package:
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe:2.3:a:kernel:crda
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 85d300f102 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:11:58 +01:00
Bernd Kuhls
92a53b9062
{linux, linux-headers}: bump 6.{1, 6}.x series
...
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 52a15667b1 )
[Peter: drop 6.6.x bump]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:11:22 +01:00
Fabrice Fontaine
f2f446133d
package/freerdp: security bump to version 2.11.5
...
- Fix CVE-2024-22211
- Update Upstream tag in patches
https://github.com/FreeRDP/FreeRDP/blob/2.11.5/ChangeLog
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit dbe037dc99 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:08:44 +01:00
Sébastien Szymanski
a643262322
docs/manual/contribute.txt: fix typo
...
"who sponsored who sponsored" -> "who sponsored"
Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit f24e85238f )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:01:02 +01:00
Fabrice Fontaine
b348beb358
package/lynx: fix openssl static build
...
Use LDFLAGS instead of LIBS to fix the following openssl static build
failure raised because lynx filters out duplicates (i.e. -lz) in
CF_ADD_LIBS:
configure:12958: checking for inet_ntoa
configure:12995: /home/autobuild/autobuild/instance-7/output-1/host/bin/x86_64-buildroot-linux-uclibc-gcc -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Ofast -g0 -static -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DLINUX -static conftest.c -L/home/autobuild/autobuild/instance-7/output-1/host/bin/../x86_64-buildroot-linux-uclibc/sysroot/usr/lib64 -lssl -L/home/autobuild/autobuild/instance-7/output-1/host/bin/../x86_64-buildroot-linux-uclibc/sysroot/usr/lib64 -lz -pthread -lcrypto -lz -pthread >&5
configure:12998: $? = 0
configure:13001: test -s conftest
configure:13004: $? = 0
configure:13014: result: yes
configure:13095: checking for gethostbyname
configure:13151: result: yes
configure:13232: checking for strcasecmp
configure:13288: result: yes
configure:13401: checking for inet_aton function
configure:13443: /home/autobuild/autobuild/instance-7/output-1/host/bin/x86_64-buildroot-linux-uclibc-gcc -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Ofast -g0 -static -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DLINUX -static conftest.c -L/home/autobuild/autobuild/instance-7/output-1/host/bin/../x86_64-buildroot-linux-uclibc/sysroot/usr/lib64 -lssl -lz -pthread -lcrypto >&5
[...]
/home/autobuild/autobuild/instance-7/output-1/host/bin/x86_64-buildroot-linux-uclibc-gcc -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I. -I.. -Ichrtrans -I./chrtrans -I.. -I../src -I.././WWW/Library/Implementation -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DLINUX -I/home/autobuild/autobuild/instance-7/output-1/host/x86_64-buildroot-linux-uclibc/sysroot/usr/include -I/home/autobuild/autobuild/instance-7/output-1/host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/openssl -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Ofast -g0 -static -Wl,-rpath,/home/autobuild/autobuild/instance-7/output-1/host/bin/../x86_64-buildroot-linux-uclibc/sysroot/usr/lib64 -Wl,-rpath,/home/autobuild/autobuild/instance-7/output-1/host/x86_64-buildroot-linux-uclibc/sysroot/usr/lib -L/home/autobuild/autobuild/instance-7/output-1/host/x86_64-buildroot-linux-uclibc/sysroot/usr/lib -static -o lynx LYebcdic.o LYClean.o LYShowInfo.o LYEdit.o L
YStrings.o LYMail.o HTAlert.o GridText.o LYGetFile.o LYMain.o LYMainLoop.o LYCurses.o LYBookmark.o LYmktime.o LYUtils.o LYOptions.o LYReadCFG.o LYSearch.o LYHistory.o LYForms.o LYPrint.o LYrcFile.o LYDownload.o LYNews.o LYKeymap.o HTML.o HTFWriter.o HTInit.o DefaultStyle.o LYUpload.o LYLeaks.o LYexit.o LYJump.o LYList.o LYCgi.o LYTraversal.o LYEditmap.o LYCharSets.o LYCharUtils.o LYMap.o LYCookie.o LYStyle.o LYHash.o LYPrettySrc.o TRSTable.o parsdate.o UCdomap.o UCAux.o UCAuto.o LYSession.o LYLocal.o .././WWW/Library/Implementation/libwww.a -lz -static -lncurses -lssl -lcrypto -L/home/autobuild/autobuild/instance-7/output-1/host/bin/../x86_64-buildroot-linux-uclibc/sysroot/usr/lib64 -pthread
/home/autobuild/autobuild/instance-7/output-1/host/lib/gcc/x86_64-buildroot-linux-uclibc/11.4.0/../../../../x86_64-buildroot-linux-uclibc/bin/ld: /home/autobuild/autobuild/instance-7/output-1/host/x86_64-buildroot-linux-uclibc/sysroot/usr/lib/libcrypto.a(libcrypto-lib-c_zlib.o): in function `zlib_oneshot_expand_block':
c_zlib.c:(.text+0xb8b): undefined reference to `uncompress'
Patching aclocal.m4 is not possible as autoreconf fails due to missing
AC_DIVERT_HELP macro.
This build failure is only raised by autobuilders since 2024 for an
unknown reason.
Fixes:
- http://autobuild.buildroot.org/results/6d4119b54fc6b6111a03f81e131e83bae0d844d1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit ef5d3327a1 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 22:00:24 +01:00
Bernd Kuhls
c6767e03ba
{linux, linux-headers}: bump 4.19.x / 5.{4, 10, 15}.x / 6.{1, 6}.x series
...
Signed-off-by: Bernd Kuhls <bernd@kuhls.net >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 44292dabc0 )
[Peter: drop 6.6.x bump]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 21:56:08 +01:00
Fabrice Fontaine
e2cc7eb278
package/joe: add JOE_CPE_ID_VENDOR
...
cpe:2.3:a:joseph_allen:joe is a valid CPE identifier for this package:
https://nvd.nist.gov/products/cpe/detail/5F530947-2060-4842-92B9-5BC61D9C5430
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
(cherry picked from commit 2953cd2644 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 21:53:39 +01:00
Fabrice Fontaine
b4dee60f60
package/frr: security bump to version 8.5.4
...
Fix CVE-2023-38802, CVE-2023-41360, CVE-2023-46752, CVE-2023-46753,
CVE-2023-47234 and CVE-2023-47235
https://frrouting.org/security/
https://frrouting.org/release/8.5.4/
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit c3cf06e0a8 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:34:16 +01:00
Fabrice Fontaine
eb15ce67f5
package/x11r7/xserver_xorg-server: add CPE variables
...
cpe:2.3:a:x.org:xorg-server is a valid CPE identifier for this package:
https://nvd.nist.gov/products/cpe/detail/79A86C02-31A5-4F25-8CA6-7C4A8CD92B7B
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit b80705800a )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:29:28 +01:00
Peter Korsgaard
78fb608576
package/gstreamer1-editing-services: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit c55c1263ab )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:38 +01:00
Peter Korsgaard
b1e0f93416
package/gst-omx: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 9f342e4a67 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:37 +01:00
Peter Korsgaard
9fd9fa1543
package/gst1-vaapi: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 6f28c463cf )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:37 +01:00
Peter Korsgaard
a31c7735fb
package/gst1-rtsp-server: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 88a6cfefbf )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:36 +01:00
Peter Korsgaard
a5c728ad23
package/gst1-python: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit d948714037 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:35 +01:00
Peter Korsgaard
b249e43d69
package/gst1-libav: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit db9b4f3b0c )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:35 +01:00
Peter Korsgaard
c88c6a1320
package/gst1-devtools: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 74c32bfa5d )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:34 +01:00
Peter Korsgaard
53c2b299f1
package/gst1-plugins-ugly: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit ca65df3da2 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:33 +01:00
Peter Korsgaard
0b8eb25c54
package/gst1-plugins-bad: security bump to version 1.22.9
...
Fixes the following security issue:
CVE-2024-0444: Heap-based buffer overflow in the AV1 codec parser when
handling certain malformed streams before GStreamer 1.22.9
https://gstreamer.freedesktop.org/security/sa-2024-0001.html
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 3ee1148b00 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:33 +01:00
Peter Korsgaard
b8cab7e50f
package/gst1-plugins-good: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 3407703f2c )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:32 +01:00
Peter Korsgaard
bf4c7f70f3
package/gst1-plugins-base: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 6b7db1bf64 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:31 +01:00
Peter Korsgaard
3880eba082
package/gstreamer1: bump to version 1.22.9
...
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit e81d29d551 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 18:28:31 +01:00
Peter Korsgaard
1ed1ff4c43
package/darkhttpd: security bump to version 1.15
...
Fixes the following security issues:
CVE-2024-23770: Local Leak of Authentication Parameter in Process List
CVE-2024-23771: Basic Auth Timing Attack
https://security.opensuse.org/2024/01/22/darkhttpd-basic-auth-issues.html
Notice that CVE-2024-23770 is only documented as a known weakness, not
fixed.
Also change the license logic to use the dedicated COPYING file available
since 1.14:
a8ae2b1de0
This license is ISC, not MIT - So adjust DARKHTTPD_LICENSE to match.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 0c7fd35947 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 17:42:57 +01:00
Fabrice Fontaine
5e057ff46e
package/mbedtls: security bump to version 2.28.7
...
- Fix CVE-2024-23170 and CVE-2024-23775
- Mbed TLS is now released under a dual Apache-2.0 OR GPL-2.0-or-later
license. Users may choose which license they take the code under:
f429557c59
https://mbed-tls.readthedocs.io/en/latest/security-advisories/mbedtls-security-advisory-2024-01-1/
https://mbed-tls.readthedocs.io/en/latest/security-advisories/mbedtls-security-advisory-2024-01-2/
https://github.com/Mbed-TLS/mbedtls/releases/tag/v2.28.6
https://github.com/Mbed-TLS/mbedtls/releases/tag/v2.28.7
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 52fd4753fe )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 17:42:00 +01:00
Peter Korsgaard
6c8d4ea2ed
package/environment-setup: do not export GIT_DIR
...
Commit c07aafa087 (package/Makefile.in: set GIT_DIR=. in {HOST,
TARGET}_MAKE_ENV) added GIT_DIR=. to TARGET_MAKE_ENV (which is included in
TARGET_CONFIGURE_OPTS) to work around issues with packages getting confused
when building in a subdir of the Buildroot git repo.
This unfortunately also causes git commands to fail when
output/host/environment-setup is sourced:
git status
fatal: not a git repository: '.'
So strip GIT_DIR= from TARGET_CONFIGURE_OPTS when generating
environment-setup.
Reported-by: Mircea Gliga <gliga.mircea@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit 48874afb9d )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 17:41:22 +01:00
Yann E. MORIN
e8f374db5c
boot/syslinux: carry fix for build failures with binutils 2.31+
...
From a report on the syslinux mailing list [0]:
The GNU linker now writes two segments of type PT_LOAD into the
program header. However, this is not supported by the wrapper
script that converts the shared object to an .efi executable.
As per comment in that file:
(...) Although there may be several LOAD program headers,
only one is currently copied.
A simple workaround I've found to work is to ask the linker to put
everything into one PT_LOAD program header.
The issue is ackowledged in the syslinux wiki page about building
syslinux [1]. This page refers to various resources, of which a Debian
patch [2].
This information is also referenced in #11861 .
Fixes : #11861
[0] https://www.syslinux.org/archives/2018-August/026167.html
[1] https://wiki.syslinux.org/wiki/index.php?title=Building
[2] https://salsa.debian.org/images-team/syslinux/-/blob/debian/master/debian/patches/0017-single-load-segment.patch
Reported-by: Sam Lancia <sam@gpsm.co.uk >
Reported-by: Meliodas <meliodasren01@gmail.com >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
(cherry picked from commit e53a8593b4 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2024-02-28 17:37:11 +01:00