Jeffery To [Mon, 27 Apr 2020 06:10:53 +0000 (14:10 +0800)]
python3: Fix host build tool names recorded in target files
Python will record the values of CC, CXX, AR, and READELF (and other
configure options) used during compilation. pip will use these programs
when asked to compile extension modules on the target device.
* If ccache is used during build, CC and CXX will be ccache_cc and
ccache_cxx, respectively, which are not available on-device (#11912).
* If an external toolchain is used during build, the values of these
variables will contain the external toolchain prefix, which may not be
available on target.
* If the normal toolchain is used during build, AR and READELF will
contain the toolchain prefix, but the names of ar and readelf
on-device do not contain the prefix; they are named "ar" and
"readelf".
This changes the values of these variables in Python's files to match
the names available on-device, and without any toolchain prefix.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Hannu Nyman [Sun, 26 Apr 2020 19:31:03 +0000 (22:31 +0300)]
Merge pull request #11963 from wvdakker/master
Shorewall: Bump to 5.2.4.3
Michael Heimpold [Sun, 26 Apr 2020 18:58:19 +0000 (20:58 +0200)]
php7-pecl-dio: upgrade to 0.2.0
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
W. van den Akker [Sun, 26 Apr 2020 17:09:34 +0000 (19:09 +0200)]
Shoreware6: Bump to 5.2.4.3
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
W. van den Akker [Sun, 26 Apr 2020 17:08:52 +0000 (19:08 +0200)]
Shoreware: Bump to 5.2.4.3
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
W. van den Akker [Sun, 26 Apr 2020 17:07:53 +0000 (19:07 +0200)]
Shoreware6-lite: Bump to 5.2.4.3
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
W. van den Akker [Sun, 26 Apr 2020 17:06:48 +0000 (19:06 +0200)]
Shoreware-lite: Bump to 5.2.4.3
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
W. van den Akker [Sun, 26 Apr 2020 17:05:23 +0000 (19:05 +0200)]
Shoreware-core: Bump to 5.2.4.3
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
Rosen Penev [Sat, 25 Apr 2020 23:18:44 +0000 (16:18 -0700)]
Merge pull request #11951 from neheb/ffi
libffi: fix build failure on powerpc platforms
Rosen Penev [Sat, 25 Apr 2020 23:13:54 +0000 (16:13 -0700)]
Merge pull request #11812 from neheb/ntfs
antfs-mount: installl mount script to /usr
Rosen Penev [Sat, 25 Apr 2020 23:13:30 +0000 (16:13 -0700)]
Merge pull request #11952 from neheb/ava
avahi: fix dbus issue
Rosen Penev [Thu, 23 Apr 2020 03:12:01 +0000 (20:12 -0700)]
avahi: fix dbus issue
Needs an extra configure parameter.
Reverted pkgconfig fix. It's wrong anyway.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Wed, 22 Apr 2020 21:59:25 +0000 (14:59 -0700)]
ntfs-3g: do not install mount.ntfs into /usr/sbin
ntfs-3g does not include nor install a file like this.
Cleaned up Makefile for consistency between packages.
Added PKG_BUILD_PARALLEL for faster compilation.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Sat, 25 Apr 2020 17:39:04 +0000 (10:39 -0700)]
Merge pull request #11955 from lantis1008/ddns-cloudflare
ddns-scripts: cloudflare.com-v4: Fix success check
Michael Gray [Sat, 25 Apr 2020 05:34:56 +0000 (15:34 +1000)]
ddns-scripts: cloudflare.com-v4: Fix success check for new response format
JSON response now has spaces between parameters. Accept this new format and the old one.
Signed-off-by: Michael Gray <michael.gray@lantisproject.com>
Hannu Nyman [Sat, 25 Apr 2020 06:55:21 +0000 (09:55 +0300)]
Merge pull request #11918 from dvtirol/freeradius-rest
Support building freeradius3-mod-rest
Hannu Nyman [Sat, 25 Apr 2020 05:31:37 +0000 (08:31 +0300)]
Merge pull request #11954 from Wedmer/zoneinfo_update
zoneinfo: Updated to the latest release
Vladimir Ulrich [Fri, 24 Apr 2020 22:23:55 +0000 (01:23 +0300)]
zoneinfo: Updated to the latest release
Signed-off-by: Vladimir Ulrich <admin@evl.su>
Rosen Penev [Fri, 24 Apr 2020 21:55:24 +0000 (14:55 -0700)]
Merge pull request #11935 from neheb/mes2
meson: fix rpath handling
Rosen Penev [Fri, 24 Apr 2020 20:57:16 +0000 (13:57 -0700)]
libffi: fix build failure on powerpc platforms
This is an upstream backport.
Currently on the buildbots, having libffi unavailable leads to long
range build failures.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Fri, 24 Apr 2020 20:30:36 +0000 (13:30 -0700)]
Merge pull request #11889 from neheb/dbusss
dbus: update to 1.13.12
Rosen Penev [Fri, 24 Apr 2020 20:29:47 +0000 (13:29 -0700)]
Merge pull request #11943 from neheb/mpd3
mpd: update to 0.21.23
Hannu Nyman [Fri, 24 Apr 2020 16:49:49 +0000 (19:49 +0300)]
Merge pull request #11947 from jefferyto/python-lxml-default-build
python-lxml: Use default Python package build recipe
Jeffery To [Fri, 24 Apr 2020 13:24:05 +0000 (21:24 +0800)]
python-lxml: Use default Python package build recipe
This also updates the package's metadata (title, description, license).
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Hannu Nyman [Fri, 24 Apr 2020 14:31:41 +0000 (17:31 +0300)]
Merge pull request #11944 from jefferyto/python3-pip-pep517-pyc-fix
python3-pip: Fix error when installing packages that require compilation
Jeffery To [Fri, 24 Apr 2020 13:09:37 +0000 (21:09 +0800)]
python3-pip: Fix error when installing packages that require compilation
This addresses one of the issues raised in #11912.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Dirk Brenken [Fri, 24 Apr 2020 06:28:16 +0000 (08:28 +0200)]
travelmate: refine logical interface selection
Signed-off-by: Dirk Brenken <dev@brenken.org>
Rosen Penev [Thu, 23 Apr 2020 23:15:39 +0000 (16:15 -0700)]
mpd: update to 0.21.23
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Tobias Girstmair [Wed, 15 Apr 2020 10:45:58 +0000 (12:45 +0200)]
freeradius3: Support building freeradius3-mod-rest
Signed-off-by: Tobias Girstmair <tobias.girstmair@tirol.gv.at>
Rosen Penev [Thu, 23 Apr 2020 00:01:13 +0000 (17:01 -0700)]
meson: fix rpath handling
This was uncovered with glib2 where the host builds were linking to the
actual host instead of the generated libraries.
Patch taken from buildroot.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Thu, 23 Apr 2020 01:33:34 +0000 (18:33 -0700)]
Merge pull request #11766 from neheb/remove
Mass unmaintained/unused package removal
Rosen Penev [Sun, 19 Apr 2020 21:40:02 +0000 (14:40 -0700)]
modemmanager: fix compilation under uClibc-ng
Needs nls.mk as a result of the glib2 change.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Mon, 20 Apr 2020 02:06:53 +0000 (19:06 -0700)]
vala: update to 0.48.3
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Sat, 18 Apr 2020 07:00:23 +0000 (00:00 -0700)]
zstd: convert to meson
Allows faster build with ninja. Unfortunately, the LTO stage slows it
massively.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Wed, 22 Apr 2020 22:38:27 +0000 (15:38 -0700)]
Merge pull request #11834 from sumpfralle/master
muninlite: update to 2.0.1
Rosen Penev [Wed, 22 Apr 2020 22:37:08 +0000 (15:37 -0700)]
Merge pull request #11911 from pprindeville/xtables-addons-requires-wget-ssl
xtables-addons: ipt_geoip scripts require wget-ssl
Rosen Penev [Wed, 22 Apr 2020 22:35:24 +0000 (15:35 -0700)]
Merge pull request #11931 from jefferyto/django1-remove-common-package
django1: Remove common package
Rosen Penev [Wed, 22 Apr 2020 22:35:03 +0000 (15:35 -0700)]
Merge pull request #11934 from jefferyto/python-gnupg-0.4.6
python-gnupg: Update to 0.4.6
Rosen Penev [Wed, 22 Apr 2020 21:44:48 +0000 (14:44 -0700)]
Merge pull request #11888 from neheb/libinp
libinput: update to 1.15.5
Rosen Penev [Sat, 18 Apr 2020 08:34:48 +0000 (01:34 -0700)]
libinput: update to 1.15.5
Converted to meson for speed.
Removed all patches. The issues have all been fixed upstream.
Minor cleanups.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Wed, 22 Apr 2020 21:33:49 +0000 (14:33 -0700)]
Merge pull request #11830 from lucize/addisns
isns: add open-isns
Rosen Penev [Wed, 22 Apr 2020 21:31:14 +0000 (14:31 -0700)]
Merge pull request #11915 from BKPepe/less-add-alternatives
less: add ALTERNATIVES
Rosen Penev [Wed, 22 Apr 2020 21:30:37 +0000 (14:30 -0700)]
Merge pull request #11824 from aleksander0m/aleksander/qmi-1-24-10
libqmi: update version to 1.24.10
Rosen Penev [Wed, 22 Apr 2020 21:30:11 +0000 (14:30 -0700)]
Merge pull request #11905 from txt-file/patch-1
prosody: update to 0.11.5
Rosen Penev [Wed, 22 Apr 2020 21:29:40 +0000 (14:29 -0700)]
Merge pull request #11932 from jefferyto/python-appdirs-description
python-appdirs: Fix description
Jeffery To [Wed, 22 Apr 2020 21:25:52 +0000 (05:25 +0800)]
python-gnupg: Update to 0.4.6
This also updates all package metadata (it appears this information was
not updated when the package switched from packaging "gnupg" from PyPI
to "python-gnupg"), updates the package to use the default Python
package build recipe, and adds a src package.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Jeffery To [Wed, 22 Apr 2020 20:38:43 +0000 (04:38 +0800)]
python-appdirs: Fix description
This fixes the incorrect description for this package, as well as adding
a more descriptive title.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Jeffery To [Wed, 22 Apr 2020 20:24:23 +0000 (04:24 +0800)]
django1: Remove common package
python-django1-common was added to allow both Python 2 and 3 versions of
Django 1.11 to be installed at the same time. With the removal of Python
2, this package is no longer necessary.
This removes this common package and updates the CONFLICTS value for the
django package.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Hannu Nyman [Wed, 22 Apr 2020 20:17:30 +0000 (23:17 +0300)]
Merge pull request #11930 from jefferyto/vobject-remove-maintainer
vobject: Remove maintainer
Hannu Nyman [Wed, 22 Apr 2020 20:06:24 +0000 (23:06 +0300)]
Merge pull request #11929 from jefferyto/python-zope-interface-5.1.0
python-zope-interface: Update to 5.1.0
Rosen Penev [Wed, 22 Apr 2020 19:54:07 +0000 (12:54 -0700)]
Merge pull request #11927 from jefferyto/golang-1.14.2
golang: Update to 1.14.2
Jeffery To [Wed, 22 Apr 2020 19:47:12 +0000 (03:47 +0800)]
vobject: Remove maintainer
The previous maintainer has removed himself from his other packages
(#11612). This package appears to have been omitted by mistake.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Jeffery To [Wed, 22 Apr 2020 19:40:11 +0000 (03:40 +0800)]
python-zope-interface: Update to 5.1.0
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Dirk Brenken [Wed, 22 Apr 2020 19:00:03 +0000 (21:00 +0200)]
travelmate: release 1.5.4
* add 'status_service' as workaround to init for 19.07
* fix 'wifionice' auto-login script
* fix autologin script matching
* change wifi scanning to logical interface name,
no longer use the radio device
Signed-off-by: Dirk Brenken <dev@brenken.org>
Rosen Penev [Wed, 22 Apr 2020 18:41:59 +0000 (11:41 -0700)]
Merge pull request #11896 from oleg-derevenetz/bwping-1.16
bwping: add new package
Jeffery To [Wed, 22 Apr 2020 18:40:50 +0000 (02:40 +0800)]
golang: Update to 1.14.2
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Hannu Nyman [Wed, 22 Apr 2020 17:57:27 +0000 (20:57 +0300)]
Merge pull request #11924 from stangri/master-simple-adblock
simple-adblock: bugfix: start downloads on cold boot/fresh install
Stan Grishin [Wed, 22 Apr 2020 17:45:53 +0000 (17:45 +0000)]
simple-adblock: bugfix: start downloads on cold boot
Signed-off-by: Stan Grishin <stangri@melmac.net>
Matthias Schiffer [Wed, 22 Apr 2020 17:11:53 +0000 (19:11 +0200)]
Merge pull request #11922 from adrianschmutzler/micrond
micrond: show stdout and stderr in log
Hannu Nyman [Wed, 22 Apr 2020 15:04:37 +0000 (18:04 +0300)]
Merge pull request #11919 from jefferyto/python-packages-cleanup
python-packages: Clean up Makefiles
Adrian Schmutzler [Wed, 22 Apr 2020 14:57:34 +0000 (16:57 +0200)]
micrond: show stdout and stderr in log
So far, all output created by scripts run with micrond has been
discarded. Since there is no reason for that and it also does not
match the expected behavior, this enables both stdout and stderr
output for the service.
If not desired, a user can still use >/dev/null or similar in his/her
micrond jobs to disable output easily and similar to what it would be
on other systems.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Oleg Derevenetz [Sun, 19 Apr 2020 19:56:34 +0000 (22:56 +0300)]
bwping: add new package
Signed-off-by: Oleg Derevenetz <oleg-derevenetz@yandex.ru>
Rosen Penev [Wed, 22 Apr 2020 08:52:34 +0000 (01:52 -0700)]
Merge pull request #11914 from pprindeville/add-perl-net-cidr-list
perl: add Net::CIDR::Lite for iptables-mod-geoip
Jeffery To [Tue, 21 Apr 2020 17:27:50 +0000 (01:27 +0800)]
python-packages: Clean up Makefiles
This removes:
* Python 3 variants (VARIANT:=python3)
* "for Python3" from package titles
* Package selection condition from package dependencies, e.g.
+PACKAGE_python3-six:python3-light replaced with +python3-light
* "Default" package information sections, e.g.
Package/python-six/Default removed and package details merged into
Package/python3-six
* "(Variant for Python3)" from package descriptions
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Rosen Penev [Wed, 22 Apr 2020 06:59:31 +0000 (23:59 -0700)]
Merge pull request #11858 from peter-stadler/nginx-version
nginx: update to version 1.17.10 and fix bug
Rosen Penev [Wed, 22 Apr 2020 06:04:18 +0000 (23:04 -0700)]
Merge pull request #11897 from pprindeville/fix-dhcpd-startup
Fix dhcpd startup
Philip Prindeville [Wed, 1 Aug 2018 18:41:21 +0000 (12:41 -0600)]
isc-dhcp: improve startup performance
On some platforms where interfaces come up very slowly, this can
cause a race-condition with dhcpd coming up before all the interfaces
have finished initializing.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Philip Prindeville [Tue, 21 Apr 2020 20:17:39 +0000 (14:17 -0600)]
perl: add Net::CIDR::Lite for iptables-mod-geoip
The DBIP geolocation database is generated from sparse data without
compaction. Two different ISP's in the same country might have
adjacent CIDR blocks, and when aggregated as "country" data, may
be merged to conserve space. This package facilitates this.
There are scripts to download and preprocess the GeoIP database
for iptables-mod-geoip which require this Perl module.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Luiz Angelo Daros de Luca [Wed, 22 Apr 2020 04:45:05 +0000 (01:45 -0300)]
libvpx: remove PKG_SOURCE to use default tar.xz
Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
Rosen Penev [Wed, 22 Apr 2020 04:48:56 +0000 (21:48 -0700)]
Merge pull request #11776 from neheb/gerb
gerbera: add
Rosen Penev [Wed, 22 Apr 2020 04:47:46 +0000 (21:47 -0700)]
Merge pull request #11876 from neheb/evsd
libevdev: update to 2.9.0
Rosen Penev [Wed, 22 Apr 2020 04:46:08 +0000 (21:46 -0700)]
Merge pull request #11874 from neheb/meson
meson: allow compilation in a subdirectory
Rosen Penev [Wed, 22 Apr 2020 04:44:27 +0000 (21:44 -0700)]
Merge pull request #11875 from neheb/drm
libdrm: update to 2.4.101
Luiz Angelo Daros de Luca [Wed, 22 Apr 2020 04:24:10 +0000 (01:24 -0300)]
Merge pull request #11885 from BKPepe/libvpx
libvpx: update to version 1.8.2
Rosen Penev [Wed, 22 Apr 2020 03:59:51 +0000 (20:59 -0700)]
Merge pull request #11890 from neheb/dump109
dump1090: update to 3.8.1
Luiz Angelo Daros de Luca [Wed, 22 Apr 2020 03:48:08 +0000 (00:48 -0300)]
sane-backends: enable PKG_BUILD_PARALLEL
Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
Josef Schlehofer [Tue, 21 Apr 2020 22:18:20 +0000 (00:18 +0200)]
libvpx: Makefile polishing
- Remove PKG_REV
- Reorder things to be more sync with other Makefiles
- Add PKG_BUILD_PARALLEL
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Josef Schlehofer [Tue, 21 Apr 2020 21:30:48 +0000 (23:30 +0200)]
less: add ALTERNATIVES
This package can not be installed if you have installed less from
busybox.
Collected errors:
* check_data_file_clashes: Package less wants to install file /bin/less
But that file is already provided by package * busybox
* opkg_install_cmd: Cannot install package less.
To avoid this error, I moved it from /bin/less to /usr/bin/less.
If you install it now, it changes symlink from busybox to /usr/bin/less
/bin/less -> busybox*
/bin/less -> /usr/bin/less*
When you remove it, it changes symlink back to busybox.
That's why postint and postrm scripts are no longer needed.
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Philip Prindeville [Tue, 21 Apr 2020 18:46:36 +0000 (12:46 -0600)]
xtables-addons: ipt_geoip scripts require wget-ssl
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Hannu Nyman [Tue, 21 Apr 2020 12:19:53 +0000 (15:19 +0300)]
Merge pull request #11892 from tobiaswaldvogel/smcroute_keep_config_on_sysupgrade
smcroute: Keep config file /etc/smcroute.conf on sysupgrade
tripolar [Tue, 21 Apr 2020 08:03:31 +0000 (10:03 +0200)]
Merge pull request #11906 from BKPepe/git
git: update to version 2.26.2
Tobias Waldvogel [Tue, 21 Apr 2020 06:28:01 +0000 (08:28 +0200)]
smcroute: Remove faulty tab in conf section
Signed-off-by: Tobias Waldvogel <tobias.waldvogel@gmail.com>
Josef Schlehofer [Tue, 21 Apr 2020 05:37:16 +0000 (07:37 +0200)]
git: update to version 2.26.2
Fixes CVE-2020-11008
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Philip Prindeville [Tue, 21 Apr 2020 04:24:16 +0000 (22:24 -0600)]
Merge pull request #11899 from pprindeville/xtables-addons-requires-unzip
xtables-addons: iptgeoip requires wget-ssl and zcat
Vieno Hakkerinen [Tue, 21 Apr 2020 03:57:56 +0000 (05:57 +0200)]
prosody: update to 0.11.5
Signed-off-by: Vieno Hakkerinen <vieno@hakkerinen.eu>
Hans Dedecker [Mon, 20 Apr 2020 20:11:01 +0000 (22:11 +0200)]
vsftpd: fix compilation with glibc
Fix compilation for glibc by removing -lnsl flag
Reported-by: Ian Cooper <iancooper@hotmail.com>
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Nikos Mavrogiannopoulos [Mon, 20 Apr 2020 17:52:19 +0000 (19:52 +0200)]
Merge pull request #11898 from neheb/p111111
p11-kit: update to 0.23.20
Hannu Nyman [Mon, 20 Apr 2020 17:40:34 +0000 (20:40 +0300)]
Merge pull request #11878 from jefferyto/libmraa-libupm-python-makefile-update
libmraa,libupm: Disable default Python package build recipe
Hannu Nyman [Mon, 20 Apr 2020 17:05:07 +0000 (20:05 +0300)]
Merge pull request #11872 from jefferyto/python3-makefile-cleanup
python3: Makefile cleanup
Hannu Nyman [Mon, 20 Apr 2020 13:12:22 +0000 (16:12 +0300)]
Merge pull request #11901 from ja-pa/redis-5.0.9
redis: update to version 5.0.9
Jan Pavlinec [Mon, 20 Apr 2020 12:22:52 +0000 (14:22 +0200)]
redis: update to version 5.0.9
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
Josef Schlehofer [Mon, 20 Apr 2020 10:04:03 +0000 (12:04 +0200)]
Revert "glib2: update to 2.64.2"
It is not ready and there are some issues described in
https://github.com/openwrt/packages/pull/11442
This reverts commit
b465ac30028c8b17228f455da057e49add3735b4.
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Josef Schlehofer [Mon, 20 Apr 2020 09:58:43 +0000 (11:58 +0200)]
Revert "glib2: fix host build"
There isn't prime time for it. Currently, it can not be built.
It fails with the following error: ERROR: Compiler gcc can not compile programs.
More details in https://github.com/openwrt/packages/pull/11887 and
https://github.com/openwrt/packages/issues/11900
This reverts commit
b62ed68007eb9429a3f5e40ce56b0094c57d6414.
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Josef Schlehofer [Mon, 20 Apr 2020 07:29:03 +0000 (09:29 +0200)]
Merge pull request #11833 from BKPepe/btrfs-progs
btrfs-progs: update to version 5.6
Philip Prindeville [Mon, 2 Sep 2019 23:34:04 +0000 (17:34 -0600)]
xtables-addons: iptgeoip requires wget-ssl and zcat
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Rosen Penev [Sun, 19 Apr 2020 03:33:26 +0000 (20:33 -0700)]
p11-kit: update to 0.23.20
Converted to meson for faster compilation speed.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Hannu Nyman [Sun, 19 Apr 2020 18:58:20 +0000 (21:58 +0300)]
Merge pull request #11895 from wvdakker/master
Shorewall: Bump to 5.2.4.1
W. van den Akker [Sun, 19 Apr 2020 17:14:05 +0000 (19:14 +0200)]
Shorewall6: Bump to 5.2.4.1
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
W. van den Akker [Sun, 19 Apr 2020 17:04:35 +0000 (19:04 +0200)]
Shorewall: Bump to 5.2.4.1
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
W. van den Akker [Sun, 19 Apr 2020 17:03:28 +0000 (19:03 +0200)]
Shorewall6-lite: Bump to 5.2.4.1
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>