Fabrice Fontaine
b429dce6f8
package/lighttpd: add pgsql support
...
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:46:12 +01:00
Fabrice Fontaine
a1acae4565
package/python-pyopenssl: bump to version 21.0.0
...
Update indentation in hash file (two spaces)
https://github.com/pyca/pyopenssl/blob/21.0.0/CHANGELOG.rst
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:46:12 +01:00
Francois Perrad
d32e062f1c
package/lua: use Lua 5.4 as default
...
lua-sdl2 is not available on Lua 5.4, so update its test to use Lua 5.3
instead.
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:45:19 +01:00
Francois Perrad
4f9a565902
package/lua: bump to version 5.4.4
...
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:45:19 +01:00
Pieter De Gendt
1c667a1140
package/boost: enable context/coroutine for arm variants
...
Add boost context support for aarch64/aarch64_be.
Context support for ARM is only available in the AAPCS ABI, so switch to
AAPCS ABI for all ARM variants.
While we're at it, update the URL about the context architecture support
to the one corresponding to the current version of boost.
Signed-off-by: Pieter De Gendt <pieter.degendt@gmail.com>
[Arnout: update URL, extend commit message]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:41:47 +01:00
Fabrice Fontaine
5eff46a6c9
package/python-sqliteschema: bump to version 1.2.1
...
https://github.com/thombashi/sqliteschema/releases/tag/v1.2.1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:34:41 +01:00
Fabrice Fontaine
66192c66b9
package/python-sqliteschema: drop python-six dependency
...
python-six is not a dependency since version 1.0.0 and
3aae6a0bb6
which dropped python 2 support
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:34:40 +01:00
Fabrice Fontaine
bf7c819f1e
package/python-dataproperty: bump to version 0.54.2
...
https://github.com/thombashi/DataProperty/releases/tag/v0.54.2
https://github.com/thombashi/DataProperty/releases/tag/v0.54.1
https://github.com/thombashi/DataProperty/releases/tag/v0.54.0
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:34:40 +01:00
Fabrice Fontaine
b5654af1ba
package/libnpupnp: bump to version 4.2.1
...
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:34:40 +01:00
James Hilliard
bd7179d139
package/network-manager: bump to version 1.34.0
...
CONTRIBUTING.md hash changed due to various style updates and
additions.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:34:40 +01:00
Michael Fischer
ee572c5448
package/sdl2: bump version to 2.0.20
...
Copyright year updated in LICENSE.txt.
Signed-off-by: Michael Fischer <mf@go-sys.de>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:34:26 +01:00
Christian Stewart
25457ba345
package/runc: bump to version 1.1.0
...
Added LGPL-2.1 license specifier: libseccomp is statically-linked.
https://github.com/opencontainers/runc/releases/tag/v1.1.0
Signed-off-by: Christian Stewart <christian@paral.in>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:30:23 +01:00
Michael Nosthoff
ec7fd50d08
package/fmt: bump to version 8.1.1
...
Signed-off-by: Michael Nosthoff <buildroot@heine.tech>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:30:20 +01:00
Norbert Lange
41ea61d59c
support/scripts/mkusers: allow option for system uid/gid
...
Some software decides based on uid/gid whether a user is a system or
normal (human) user, with different behaviour for those flavors (example
journald [2]).
So adding logic to create system-users is necessary, we take the now
common ranges from [1].
This extends the mkusers script to allow -2 for uid/gid, this argument
will take an identifier from the user range. All identifiers used up to
now should have been from the system range, so -1 is now interpreted as
a system user/group.
Note that after this commit, all the UIDs and GIDs that are created
automatically (with -1) will change. That means if there is peristent
data on an existing system that was created by such an automatic user,
it will suddenly belong to a different user. However, this could already
happen before: if a USERS line is added to a package, then other UIDs
may change as well.
Add system/user ranges as variables, and the argument for user/system
uid variable as well. Thus some magic constants could be removed, some
further occurences of -1 were replaced with equivalent logic. For
consistency, the existing MIN/MAX_UID/GID variables are renamed to
FIRST/LAST_USER_UID/GID.
Update the documentation with the new automatic ranges.
[1] - https://systemd.io/UIDS-GIDS/
[2] - https://www.freedesktop.org/software/systemd/man/journald.conf.html
Signed-off-by: Norbert Lange <nolange79@gmail.com>
[Arnout: use -1 for system users; refactor the changes a bit]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 23:09:31 +01:00
Yann E. MORIN
f22bff4a79
package/zynq-boot-bin: drop legacy package
...
Since commit 6dd5a33c48
(zynq_zed: bump U-Boot to xilinx-v2016.2), we
have no in-tree users of zynq-boot-bin.py, as U-Boot has since v2016.01
been able to natively generate Xilinx images.
zynq-boot-bin.py is python2-only and there is zero chance that upstream
will move it to python3. We could carry a python3-compatible copy, but
that tool is now virtually unused.
6 years have passed now; let it rest in peace at last.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: James Hilliard <james.hilliard1@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-05 22:16:41 +01:00
Fabrice Fontaine
18a19c985f
package/vim: security bump to version 8.2.4301
...
Fix CVE-2022-0393: Out-of-bounds Read in GitHub repository vim/vim prior
to 8.2.
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 18:28:20 +01:00
Fabrice Fontaine
403892137c
package/cryptopp: needs C++
...
Fix the following build failure raised since commit
bf4cf9de83
:
no -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g0 -D_FORTIFY_SOURCE=1 -fPIC -DCRYPTOPP_DISABLE_ARM_NEON -c cryptlib.cpp
make[1]: no: Command not found
Fixes:
- http://autobuild.buildroot.org/results/fa90b416a219a512a482e7dc63e2d72b184307c7
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 18:26:59 +01:00
Fabrice Fontaine
7ec5f99b3a
package/tiff: fix CVE-2022-22844
...
LibTIFF 4.3.0 has an out-of-bounds read in _TIFFmemcpy in tif_unix.c in
certain situations involving a custom tag and 0x0200 as the second word
of the DE field.
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 18:24:14 +01:00
Fabrice Fontaine
9229054bd5
package/libgeotiff: bump to version 1.7.0
...
https://github.com/OSGeo/libgeotiff/releases/tag/1.7.0
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 18:23:22 +01:00
Thomas Devoogdt
53fa10f4c9
package/glib-networking: bump to version 2.70.0
...
PKCS#11 is required if gnutls is used:
9b3d30e40f
Add an upstream patch to fix compilation with older compilers:
b192086b99
Signed-off-by: Thomas Devoogdt <thomas.devoogdt@gmail.com>
Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 18:21:35 +01:00
Fabrice Fontaine
adca60540f
package/domoticz: bump to version 2022.01
...
https://github.com/domoticz/domoticz/blob/2022.1/History.txt
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:32:56 +01:00
Fabrice Fontaine
1e48e5bf0c
package/lcms2: bump to version 2.13
...
https://littlecms.com/blog/2022/01/28/lcms2-2.13
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:31:51 +01:00
Fabrice Fontaine
cc27267ae4
package/safeclib: bump to version 3.7.1
...
Drop patch (already in version) and so autoreconf
https://github.com/rurban/safeclib/blob/v3.7.1/ChangeLog
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:31:20 +01:00
Fabrice Fontaine
d0e519ad3d
package/libgpg-error: add or1k support
...
or1k is supported since version 1.18 and
https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commit;h=c143fa81462584ad39ea780908266bce3fb9a49e
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:30:02 +01:00
Thomas Claveirole
a9c94d126f
package/openlayers: bump to version 6.12.0
...
Signed-off-by: Thomas Claveirole <thomas.claveirole@green-communications.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:28:44 +01:00
Fabrice Fontaine
79f631000f
package/keepalived: bump to version 2.2.7
...
Drop patches (already in version)
https://www.keepalived.org/release-notes/Release-2.2.7.html
https://www.keepalived.org/release-notes/Release-2.2.4.html
https://www.keepalived.org/release-notes/Release-2.2.3.html
https://www.keepalived.org/release-notes/Release-2.2.2.html
https://www.keepalived.org/release-notes/Release-2.2.0.html
https://www.keepalived.org/release-notes/Release-2.1.5.html
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:14:35 +01:00
Maxim Kochetkov
714498eb29
package/osm2pgsql: bump version 1.5.2
...
Release-notes: https://github.com/openstreetmap/osm2pgsql/releases/tag/1.5.2
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:14:03 +01:00
Maxim Kochetkov
119f221306
package/libosmium: bump version to 2.17.3
...
Release-notes: https://github.com/osmcode/libosmium/releases/tag/v2.17.3
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:13:49 +01:00
Maxim Kochetkov
df013c4de6
package/libgeos: bump version to 3.10.2
...
Changelog: https://github.com/libgeos/geos/blob/3.10.2/NEWS
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:13:34 +01:00
James Hilliard
c2151a3f22
package/meson: bump to version 0.61.1
...
Drop patch that is now upstream.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:11:42 +01:00
Fabrice Fontaine
7ddbcb76aa
package/bullet: bump to version 3.21
...
- Drop patch (already in version)
- Update indentation in hash file (two spaces)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 16:09:08 +01:00
Peter Seiderer
dc66c5901c
package/gst1-python: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:55:44 +01:00
Peter Seiderer
ce4bc45000
package/gst-omx: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:55:34 +01:00
Peter Seiderer
aa87c2e168
package/gstreamer1-editing-services: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:55:27 +01:00
Peter Seiderer
56c0d7b886
package/gst1-rtsp-server: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:55:19 +01:00
Peter Seiderer
aef9027773
package/gst1-vaapi: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:55:09 +01:00
Peter Seiderer
8de78f3da0
package/gst1-libav: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:54:59 +01:00
Peter Seiderer
efd9eac4d7
package/gst1-devtools: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:54:37 +01:00
Peter Seiderer
4d02d512f3
package/gst1-plugins-ugly: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:54:26 +01:00
Peter Seiderer
ed2f427fd2
package/gst1-plugins-bad: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:54:05 +01:00
Peter Seiderer
8741ac0e50
package/gst1-plugins-good: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:53:44 +01:00
Peter Seiderer
ecdc76a39c
package/gst1-plugins-base: bump version to 1.18.6
...
- removed 0001-gst-libs-gst-video-gstvideoaggregator.c-fix-build-wi.patch
(upstream accepted [1], [2])
[1] https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/974
[2] d86cf6314f
.patch
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:53:33 +01:00
Peter Seiderer
58be19b028
package/gstreamer1: bump version to 1.18.6
...
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:53:22 +01:00
Bernd Kuhls
9a60a0ff34
package/intel-gmmlib: bump version to 22.0.2
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 15:01:46 +01:00
Bernd Kuhls
6ec46f5608
package/dovecot-pigeonhole: bump version to 0.5.18
...
Release notes:
https://github.com/dovecot/pigeonhole/blob/release-0.5.18/NEWS
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 14:59:52 +01:00
Adam Duskett
c60848387b
package/python-django: bump to version 4.0.2
...
Tested with:
support/testing/run-tests tests.package.test_python_django.TestPythonPy3Django
Signed-off-by: Adam Duskett <aduskett@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 14:59:11 +01:00
Peter Seiderer
e26b261ab5
package/mtools: bump version to 4.0.37
...
For details see [1].
[1] https://lists.gnu.org/archive/html/info-gnu/2022-01/msg00006.html
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 14:58:38 +01:00
Bernd Kuhls
e830f40635
package/kodi-pvr-mythtv: bump version to 19.0.7-Matrix
...
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 13:55:44 +01:00
Peter Seiderer
ad2a752d7b
package/findutils: bump version to 4.9.0
...
For details see [1].
[1] https://lists.gnu.org/archive/html/info-gnu/2022-02/msg00003.html
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 13:55:04 +01:00
Bernd Kuhls
b3058f39b8
package/tor: bump version to 0.4.6.10
...
Release notes:
https://gitlab.torproject.org/tpo/core/tor/-/raw/release-0.4.6/ReleaseNotes
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2022-02-05 13:52:03 +01:00