Julien Olivain
eb4f5a2cbc
package/openblas: fix some x86 32bit builds
...
OpenBLAS Makefile normally needs to explicitly define the CPU
architecture size (32 or 64bit) in the BINARY macro. See [1].
When an architecture supports both 64 and 32bit, the 32bit support
is sometimes implemented in OpenBLAS by overriding a fallback to an
anterior architecture. For example, if the build target architecture
is x86 Haswell 32bit, OpenBLAS build will override the arch to
Nehalem. See [2].
If the BINARY macro is undefined, the 32bit fallback will not happen,
sometimes leading to a link failure, with output:
i686-buildroot-linux-gnu/bin/ar: strmm_kernel_LN.o: No such file or directory
This commit fixes those issues by explicitly defining the BINARY
macro. This issue has also been discussed upstream in [3] and [4].
Note: this issue was not introduced recently ([3] dates back from 2015),
and was also see in previous package version, for example in [5].
Fixes:
http://autobuild.buildroot.net/results/e1e/e1e2034a78799abe1bd28b036fa6f7d13322e42f
[1] https://github.com/xianyi/OpenBLAS/blob/v0.3.24/Makefile.rule#L50
[2] https://github.com/xianyi/OpenBLAS/blob/v0.3.24/Makefile.system#L113
[3] https://github.com/xianyi/OpenBLAS/issues/657
[4] https://github.com/xianyi/OpenBLAS/issues/1106
[5] http://autobuild.buildroot.net/results/5cd/5cdccd106b1de275ac75c39783e536107a31651f
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
2023-09-15 22:48:04 +02:00
Fabrice Fontaine
3557a7b599
package/lldpd: fix CVE-2023-41910
...
An issue was discovered in lldpd before 1.0.17. By crafting a CDP PDU
packet with specific CDP_TLV_ADDRESSES TLVs, a malicious actor can
remotely force the lldpd daemon to perform an out-of-bounds read on heap
memory. This occurs in cdp_decode in daemon/protocols/cdp.c.
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 23:30:32 +02:00
Fabrice Fontaine
23e774d2de
package/zbar: add ZBAR_CPE_ID_VENDOR
...
cpe:2.3:a:zbar_project:zbar is a valid CPE identifier for this package:
https://nvd.nist.gov/products/cpe/detail/438B9E70-F8E2-4318-83B5-46A0DF320CE3
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 23:30:25 +02:00
Fabrice Fontaine
c8672a8b60
package/libspdm: fix legal info
...
Hash of license file is wrong since the addition of the package in
commit a837a609a8
Fixes:
- http://autobuild.buildroot.org/results/2f9007ee40126cd57753bc97ae2d81c922d9f9f2
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 23:30:10 +02:00
Giulio Benetti
5ce78e1909
package/rtl8812au-aircrack-ng: bump to version 2023-07-23
...
This version fix build failure on Linux version < 5.15.
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 23:26:43 +02:00
Chris Packham
622f82c2f1
package/syslog-ng: bump version to 4.3.1
...
Update to latest version.
Release notes:
https://github.com/syslog-ng/syslog-ng/releases/tag/syslog-ng-4.3.1
Signed-off-by: Chris Packham <judge.packham@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 23:08:06 +02:00
Yann E. MORIN
bcee3ca6d6
support/download/git: fix shellcheck errors
...
The quoting around the expansion of ${relative_dir} was indeed incorrect
since it was introduced back in 8fe9894f65 (suport/download: fix git
wrapper with submodules on older git versions): it is in fact already
quoted as part of the whole sed expression.
${GIT} can contain more than one item, but we don't care about splitting
on spaces when we just print it for debug, so we can just quote it
rather than add an exception.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 23:02:20 +02:00
Yann E. MORIN
daa341cb9b
support/download/git: properly catch failures
...
Since commit b7efb43e86 (download/git: try to recover from
utterly-broken repositories), we catch errors through an ERR
trap, so we can try and recover from a broken repository. In
that commit, we switched from using "set -e" to "set -E", so
that trap is inherited in functions, command substitutions,
and subshells.
However, the trap is not defined until we have parsed the
options, created the cache directory, and eventually chdir()ed
into it. Athough improbable, it is possible for the git helper
to fail in any of those steps, and that would not get caught.
Fix that
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 23:02:13 +02:00
Yann E. MORIN
768f9f80f6
support/download: generate even more reproducible tarballs
...
When we generate the taballs off a local working copy of a VCS tree,
the umask is the one that we enforce in out top-level Makefile.
However, it is possible that a user manually tinkers in said working
copy (e.g. to check an upstream bug fix, or regression). If the user
umask is different from the one Buildroot enfirces, such tinkering
can impact the mode bits of the files, even if their content is not
modified.
When we eventually need to create a tarball from said working copy,
the VCS (e.g. git) will only be interested in checking whether the
content of the files have changed before chcking them out, and will
not look at, and restore/fix the mode bits.
As a consequence, we may create non-reproducible archives.
We fix that by enforcing the mode bits on the files before we create
the tarball: we disable the write and execute bits, and only set the
execute bit if the user execute bit is set.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
Cc: Vincent Fazio <vfazio@xes-inc.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 23:02:07 +02:00
Yann E. MORIN
0055c9c634
package/qt5: fix upstream git trees
...
Since commits 4e8b5f9bee [0], 6cfbd51d98 [1], and d838a416c4 [2],
the repository we clone from is the cgit browser, and it does not serve
the git tree, only the browser:
$ git clone https://code.qt.io/cgit/qt/qtcoap.git
Cloning into 'qtcoap'...
fatal: repository 'https://code.qt.io/cgit/qt/qtcoap.git/ ' not found
Browsing there displays the cgit UI, which gives a proper URI to clone
from; switch to using that. Things happened to "work" so far thanks to
sources.buildroot.net.
[0] 4e8b5f9bee package/qt5/qt5mqtt: bump version to 5.15.2 (and fix download)
[1] 6cfbd51d98 package/qt5/qt5coap: bump version to 5.15.2 (and fix download)
[2] d838a416c4 package/qt5/qt5knx: bump version to 5.15.2 (and fix download)
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr >
Cc: Peter Seiderer <ps.report@gmx.net >
Cc: Angelo Compagnucci <angelo.compagnucci@gmail.com >
Cc: Giulio Benetti <giulio.benetti@benettiengineering.com >
CC: Julien Corjon <corjon.j@ecagroup.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 22:57:22 +02:00
Fabrice Fontaine
fd94f49566
package/libde265: add LIBDE265_CPE_ID_VENDOR
...
cpe:2.3:a:struktur:libde265 is a valid CPE identifier for this package:
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Astruktur%3Alibde265
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 22:56:29 +02:00
Fabrice Fontaine
270b7c017d
package/libheif: add LIBHEIF_CPE_ID_VENDOR
...
cpe:2.3:a:struktur:libheif is a valid CPE identifier for this package:
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Astruktur%3Alibheif
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 22:56:21 +02:00
Fabrice Fontaine
b7e57785d0
package/firewalld: add FIREWALLD_CPE_ID_VENDOR
...
cpe:2.3:a:firewalld:firewalld is a valid CPE identifier for this
package:
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Afirewalld%3Afirewalld
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 22:55:28 +02:00
Fabrice Fontaine
b169bebd7e
package/libspdm: add LIBSPDM_CPE_ID_VENDOR
...
cpe:2.3:a:dmtf:libspdm is a valid CPE identifier for this package:
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Admtf%3Alibspdm
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 22:53:34 +02:00
Alexander Egorenkov
68df203366
package/s390-tools: bump version to 2.29.0
...
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 22:33:51 +02:00
Niklas Cassel
443f7feeb6
package/elf2flt: update to version 2023.09
...
Several of our patches have been accepted upstream and are included in
elf2flt version 2023.09.
Patch 0001-elf2flt-handle-binutils-2.34.patch is upstream as of commit
c70b9f208979 ("elf2flt: handle binutils >= 2.34").
Patch 0002-elf2flt.ld-reinstate-32-byte-alignment-for-.data-sec.patch is
upstream as of commit 679c94adf27c ("elf2flt.ld: reinstate 32 byte
alignment for .data section").
Patch 0003-elf2flt-add-riscv-64-bits-support.patch is upstream as of
commit c5c8043c4d79 ("elf2flt: add riscv 64-bits support").
Patch 0008-riscv64-add-more-relocations-required-to-be-handled.patch was
squashed into upstream commit c5c8043c4d79 ("elf2flt: add riscv 64-bits
support") during upstreaming.
Patch 0006-xtensa-fix-text-relocations.patch is upstream as of commit
26dfb54a59c8 ("elf2flt: xtensa: fix text relocations").
Patch 0007-elf2flt-remove-use-of-BFD_VMA_FMT.patch is upstream as of
commit a36df7407d9e ("elf2flt: remove use of BFD_VMA_FMT").
Patch 0004-elf2flt-create-a-common-helper-function.patch simply added
a helper function to make the changes in the follow-up patch
0005-elf2flt-fix-fatal-error-regression-on-m68k-xtensa-ri.patch
less intrusive.
Patch 0005-elf2flt-fix-fatal-error-regression-on-m68k-xtensa-ri.patch
is no longer needed as upstream has reverted the commit that necessitated
this patch, see upstream commit 35c692ca4546 ("Revert "elf2flt: fix for
segfault on some ARM ELFs""). The problem that the reverted upstream patch
solved is now instead solved by the combination of upstream commits
7a59b265c2dc ("Revert "elf2flt: fix relocations for read-only data"") and
a934fb42cf59 ("elf2flt: force ARM.exidx section into text").
Signed-off-by: Niklas Cassel <niklas.cassel@wdc.com >
Tested-By: Waldemar Brodkorb <wbx@openadk.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 22:32:49 +02:00
Francois Perrad
c9dcd9e459
package/luajit: bump to version 41fb94defa8f830ce69a8122b03f6ac3216d392a
...
The LuaJIT project switches to a rolling release scheme.
Now, the version contains the timestamp of its latest commit.
The timestamp can be seen in build log:
==== Successfully installed LuaJIT 2.1.1693350652 to /usr ====
diff COPYRIGHT:
-Copyright (C) 2005-2022 Mike Pall. All rights reserved.
+Copyright (C) 2005-2023 Mike Pall. All rights reserved.
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-14 22:23:15 +02:00
Waldemar Brodkorb
ab4f3fafaa
package/gcc: fix missing .note.GNU-stack section
...
Shellinabox configure fails to detect ptsname_r, because of the following warning
binutils 2.39+ emits:
ld: warning: crtend.o: missing .note.GNU-stack section implies executable stack
ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
Then the build errors out with:
shellinabox/launcher.c:772:12: error: static declaration of 'ptsname_r' follows non-static declaration
The same issue exist for cairo 1.16.0 and the detection of pthreads.
Fixes:
- http://autobuild.buildroot.net/results/3e4/3e478d22e820703ddfd11d1491e631ef8ed6b29b
- http://autobuild.buildroot.net/results/f60/f602ea17d5938a5beb81d07e13de75ba41d5f6a1
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-11 22:56:23 +02:00
Daniel Lang
7bc5ea80c7
utils/getdeveloperlib.py: handle file removal
...
If a patch only removes files, it is ignored. Meaning, that the
registered developer isn't automatically picked up when calling
get-developer.
Fix this by also checking if the line starts with ---, as a patch
removing a file has a line starting with --- with the name of the
removed file and one started with +++ /dev/null.
A set is used to store the changed files, which doesn't allow
duplicates. Therefore normal patches aren't affected by this change.
Signed-off-by: Daniel Lang <dalang@gmx.at >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-11 22:08:22 +02:00
Daniel Lang
5ee7c76823
package/libxcrypt: drop upstream patches
...
These patches were backported (47b7947 and 7dd5233 ) before the 2023.08
release. Meanwhile the package was bumped on next (be5e4a1 ) to a version
containing these patches. Therefore they can be dropped.
Fixes:
- http://autobuild.buildroot.net/results/7f7ec74e80cd1ab782d87f5db3e4631c12611101/
Signed-off-by: Daniel Lang <dalang@gmx.at >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-11 22:07:32 +02:00
Giulio Benetti
076974bae6
package/mmc-utils: bump version to 2023-08-07
...
Starting from commit:
https://git.kernel.org/pub/scm/utils/mmc/mmc-utils.git/commit/?id=958227890690290ee766aaad1b92f3413f67048c
VERSION macro should be defined by mmc-utils Makefile itself but it doesn't
work in Buildroot because it needs to be in a git repository clone. So
let's mimic what they do in the Makefile by picking the first 6 SHA1 git
commit digits and set them to -DVERSION.
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-11 22:06:29 +02:00
Giulio Benetti
1cebe962ff
package/harfbuzz: bump version to 8.2.0
...
Release notes: https://github.com/harfbuzz/harfbuzz/blob/main/NEWS
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-11 21:52:37 +02:00
Peter Seiderer
dc4436245c
package/speechd: bump version to 0.11.5
...
- remove 0001-add-disable-doc.patch (upstream applied, see [1])
For details see [2].
[1] 1dbc42684d
[2] https://github.com/brailcom/speechd/releases/tag/0.11.5
Signed-off-by: Peter Seiderer <ps.report@gmx.net >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-11 21:51:46 +02:00
James Hilliard
9318e583ad
package/freescale-imx/imx-kobs: bump to version ff13a99a22aa73cca0e09a33c2ebb6a94ad698da
...
Update github organization name to nxp-imx which is being
redirected to.
Rename COPYING TO LICENSE.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-11 21:43:53 +02:00
Chris Packham
8d55b912d7
package/gstreamer1/gst1-shark: bump version to v0.8.1
...
Update to the latest release.
Release notes:
https://github.com/RidgeRun/gst-shark/releases/tag/v0.8.1
https://github.com/RidgeRun/gst-shark/releases/tag/v0.8.0
Signed-off-by: Chris Packham <judge.packham@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-11 21:41:33 +02:00
Thomas Petazzoni
530ea784f1
package/polkit: bump to version 123
...
polkit runtime tests are passing successfully with this version bump:
https://gitlab.com/tpetazzoni/buildroot/-/pipelines/989945901
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 21:09:27 +02:00
Julien Olivain
f8e9314a03
package/libgpgme: bump to version 1.22.0
...
For change log, see [1] and [2].
[1] https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=log;h=gpgme-1.22.0
[2] https://dev.gnupg.org/T6668
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 21:06:43 +02:00
Julien Olivain
01a5adfc15
package/libgpgme: bump to version 1.21.0
...
For change log, see [1] and [2].
This commit also drops the package patch, as an alternate upstream
commit is included in release, see [3]. Consequently, AUTORECONF = YES
is dropped as we're no longer patching the configure.ac script.
The option "--disable-cpp-test" is removed from _CONF_OPTS since it no
longer needed.
The file .checkpackageignore is also updated to reflect the patch
removal.
[1] https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=log;h=gpgme-1.21.0
[2] https://dev.gnupg.org/T6585
[3] https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=commitdiff;h=e2103be390764f62b21a4e5d4fa90a7b78326787
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 21:05:59 +02:00
Alistair Francis
a837a609a8
package/libspdm: new package
...
Signed-off-by: Alistair Francis <alistair.francis@wdc.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 20:52:19 +02:00
Francois Perrad
19706002de
package/strace: bump to version 6.5
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 18:37:40 +02:00
Julien Olivain
4dbee80f33
package/openblas: bump to version v0.3.24
...
For change log since v0.3.23, see:
https://github.com/xianyi/OpenBLAS/releases/tag/v0.3.24
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 18:37:26 +02:00
Julien Olivain
02497626ad
support/testing/tests/package/test_libgpgme.py: new runtime test
...
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 18:34:52 +02:00
Julien Olivain
fc942d5033
support/testing/tests/package/test_screen.py: new runtime test
...
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 18:32:49 +02:00
Julien Olivain
b492a5414e
support/testing/tests/package/test_less.py: new runtime test
...
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 18:32:27 +02:00
Julien Olivain
56e7ca5dbc
package/zynaddsubfx: fix build with gcc 13
...
When compiling with gcc 13, build fails with errors, such as:
In file included from /build/zynaddsubfx-3.0.6/src/Nio/NulEngine.h:21,
from /build/zynaddsubfx-3.0.6/src/Nio/NulEngine.cpp:14:
/build/zynaddsubfx-3.0.6/src/Nio/MidiIn.h:37:9: error: 'uint8_t' does not name a type
37 | uint8_t midiSysEx(unsigned char data);
| ^~~~~~~
Those gcc 13 changes were announced at:
https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
This commit fixes the issue by adding upstream patches, not yet
included in a release.
Fixes:
http://autobuild.buildroot.net/results/97b5a30c7be820ac91e745cf60f9b759e962aa5c
Signed-off-by: Julien Olivain <ju.o@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 18:27:59 +02:00
James Hilliard
b86542085d
package/swupdate: bump to version 2023.05
...
ISC license hash changed due to text update:
d217a9b10e
Set new HAVE_LIBEBGENV and HAVE_LIBUBOOTENV env variables.
Apply latest updates to swupdate-usb@.service from:
d5f84e74aa
dac7b2d10e
Signed-off-by: James Hilliard <james.hilliard1@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 18:27:41 +02:00
Sébastien Szymanski
a1dff18f66
package/libzlib: bump to version 1.3
...
https://github.com/madler/zlib/releases/tag/v1.3
Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 14:26:34 +02:00
Maxim Kochetkov
25408f767d
package/osm2pgsql: bump version to 1.9.2
...
Release-notes: https://github.com/openstreetmap/osm2pgsql/releases/tag/1.9.2
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 14:26:25 +02:00
Maxim Kochetkov
b0f2709e6f
package/timescaledb: bump version to 2.11.2
...
Release notes: https://github.com/timescale/timescaledb/blob/2.11.2/CHANGELOG.md
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-10 14:25:52 +02:00
James Hilliard
177170f42f
DEVELOPERS: add myself as developer for all python packages
...
Signed-off-by: James Hilliard <james.hilliard1@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 22:46:13 +02:00
Daniel Lang
b25f1cb47c
package/libiec61850: ignore CVE-2023-27772
...
Segmentation fault in example code can be exploited.
BUILD_EXAMPLES is disabled for all cmake projects.
See https://github.com/mz-automation/libiec61850/issues/442
Signed-off-by: Daniel Lang <dalang@gmx.at >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 22:32:54 +02:00
Frank Hunleth
54b6eced24
package/erlang: support building on aarch64
...
Erlang has good support for aarch64 hosts, and this allows it to be
built without a warning.
Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 22:19:34 +02:00
Christian Stewart
f862a1abf1
package/conmon: bump version to 2.1.8
...
Bug fixes.
https://github.com/containers/conmon/releases/tag/v2.1.8
Signed-off-by: Christian Stewart <christian@aperture.us >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 22:10:31 +02:00
Adam Duskett
07b843ac04
package/php-yaml: bump version to 2.2.3
...
Signed-off-by: Adam Duskett <aduskett@gmail.comm >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 21:47:15 +02:00
Adam Duskett
ec3d0ccc9d
package/php-xdebug: bump version to 3.2.2
...
Signed-off-by: Adam Duskett <aduskett@gmail.comm >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 21:47:14 +02:00
Adam Duskett
73a78cbac4
package/php-ssh2: bump version to 1.4
...
Signed-off-by: Adam Duskett <aduskett@gmail.comm >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 21:47:14 +02:00
Adam Duskett
c142cd2354
package/php-pecl-dbus: bump version to b147624d480c3353e6c700e9a2d0c6f14d853941
...
Drop upstream patches.
Signed-off-by: Adam Duskett <aduskett@gmail.comm >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 21:47:13 +02:00
Adam Duskett
0d68ad6afe
package/php-pam: bump version to 2.2.4
...
Signed-off-by: Adam Duskett <aduskett@gmail.comm >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 21:47:13 +02:00
Adam Duskett
25e18c3063
package/php-memcached: bump version to 3.2.0
...
Signed-off-by: Adam Duskett <aduskett@gmail.comm >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 21:47:12 +02:00
Adam Duskett
c69f12d1c1
package/php-gnupg: bump version to 1.5.1
...
Drop upstream patch
Signed-off-by: Adam Duskett <aduskett@gmail.comm >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
2023-09-08 21:47:06 +02:00