feed/packages.git
3 years agonano: update to 5.0
Hannu Nyman [Thu, 30 Jul 2020 15:34:02 +0000 (18:34 +0300)]
nano: update to 5.0

Update nano editor to version 5.0.
http://git.savannah.gnu.org/cgit/nano.git/tree/NEWS

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
3 years agoMerge pull request #12897 from TDT-AG/pr/20200721-docker-ce
Florian Eckert [Thu, 30 Jul 2020 10:34:31 +0000 (12:34 +0200)]
Merge pull request #12897 from TDT-AG/pr/20200721-docker-ce

docker-ce: add default bridge to openwrt uci backend

3 years agoMerge pull request #12960 from aleksander0m/aleksander/mm-no-autoreconf
Rosen Penev [Thu, 30 Jul 2020 08:06:29 +0000 (01:06 -0700)]
Merge pull request #12960 from aleksander0m/aleksander/mm-no-autoreconf

modemmanager: avoid requiring autoreconf to build package

3 years agomodemmanager: avoid requiring autoreconf to build package 12960/head
Aleksander Morgado [Tue, 28 Jul 2020 13:51:42 +0000 (15:51 +0200)]
modemmanager: avoid requiring autoreconf to build package

Do not manually overwrite the paths of gdbus-codegen or glib-mkenums
in the ModemManager package build, as modifying the configure.ac ends
up requiring a full autoreconf.

Since MM 1.14, git builds or autoreconf-ed source package builds
require autoconf-archive installed in the build system, and so the
build would fail if this happens.

The update to overwrite the paths was to force using the gdbus-codegen
and glib-mkenums provided by the "host" glib2 package instead of the
"target" glib2 package (see fa8ad6e69c41d694b1220e04ec4f45bb8e8c1edf),
but these tools are really the same in both as they're python
programs, arch independent.

Tested in a local build where the setup detects and uses the correct
glib tool paths from the target:
  /home/user/openwrt/staging_dir/target-mips_24kc_musl/usr/bin/gdbus-codegen
  /home/user/openwrt/staging_dir/target-mips_24kc_musl/usr/bin/glib-mkenums

Fixes https://github.com/openwrt/packages/issues/12958

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
3 years agoglib2: install codegen module in staging dir
Aleksander Morgado [Thu, 30 Jul 2020 07:29:24 +0000 (09:29 +0200)]
glib2: install codegen module in staging dir

Install not only the gdbus-codegen program in the target staging dir,
but also the actual codegen module, so that the program is fully
usable by other packages that require it during build.

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
3 years agoMerge pull request #12970 from EricLuehrsen/unbound_11100
Rosen Penev [Thu, 30 Jul 2020 07:23:14 +0000 (00:23 -0700)]
Merge pull request #12970 from EricLuehrsen/unbound_11100

unbound: update to 1.11.0

3 years agoopenvswitch: remove explicit dependency on librt
Yousong Zhou [Thu, 30 Jul 2020 02:20:52 +0000 (10:20 +0800)]
openvswitch: remove explicit dependency on librt

Selection of librt will be handled by the build system

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
3 years agounbound: update to 1.11.0 12970/head
Eric Luehrsen [Thu, 30 Jul 2020 02:55:21 +0000 (22:55 -0400)]
unbound: update to 1.11.0

Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>
3 years agoopenvswitch: only libopenvswitch depends on libunbound, libunwind
Yousong Zhou [Wed, 29 Jul 2020 09:30:38 +0000 (17:30 +0800)]
openvswitch: only libopenvswitch depends on libunbound, libunwind

This is to make explicit the conditional select of libunwind is only
needed for libopenvswitch.  If we spill it over other packages, the
generated kconfig will have recursive dependency issue.  2 new patches
were made for this goal

The other thing is that "+libunwind" will cause it to be built if any of the
packages defined in this Makefile is enabled (y or m).  This is at the moment
by-design of the build system.

Libunwind does not support architectures like arc.  Use conditional select To
avoid (libunwind) build failures like the following,

  checking for ELF helper width... configure: error: Unknown ELF target: arc
  make[3]: *** [Makefile:65: /data/openwrt/build_dir/target-arc_arc700_uClibc/
  libunwind-1.3.1/.configured_68b329da9893e34099c7d8ad5cb9c940] Error 1

Things like "+PACKAGE_openvswitch-libopenvswitch:libunwind" will also result in
recursive deps error for chains of 3 nodes.  Kconfig construct like the
following will be made

config A
tristate
select B
depends on !(C) || (x)

config B
tristate
select C

config C
tristate

config x
bool

Other changes include

 - Shared use of variable ovs__common_depends was removed
 - Ovn doc build was patched out

Link: https://github.com/openwrt/packages/pull/12959#issuecomment-665021413
Reported-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
3 years agoopenvswitch: rename shared var name ovs{,_}_common_depends
Yousong Zhou [Wed, 29 Jul 2020 02:17:14 +0000 (10:17 +0800)]
openvswitch: rename shared var name ovs{,_}_common_depends

To avoid conflict with package ovs_common_depends of package
openvswitch-common

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
3 years agoopenvswitch: backport patch fixing build for 4.14.187
Yousong Zhou [Wed, 29 Jul 2020 03:55:04 +0000 (11:55 +0800)]
openvswitch: backport patch fixing build for 4.14.187

Supersedes openwrt/packages#12932

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
3 years agozmq: fix the installed files
Rosen Penev [Thu, 30 Jul 2020 01:10:09 +0000 (18:10 -0700)]
zmq: fix the installed files

the versioned so files are needed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #12962 from neheb/sshfs
Rosen Penev [Thu, 30 Jul 2020 01:07:50 +0000 (18:07 -0700)]
Merge pull request #12962 from neheb/sshfs

 fuse3: update to 3.9.2 /  sshfs: update to 3.7.0

3 years agosshfs: update to 3.7.0 12962/head
Rosen Penev [Wed, 20 May 2020 19:46:39 +0000 (12:46 -0700)]
sshfs: update to 3.7.0

Simplified Makefile as a result of meson transition.

Fixed license information.

Updated URL.

Added patch to fix linking issue.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agofuse3: update to 3.9.2
Rosen Penev [Tue, 28 Jul 2020 22:01:42 +0000 (15:01 -0700)]
fuse3: update to 3.9.2

Added the mount utilities. It turns out that udev is not a requirement.

Renamed package to fuse3 and moved to utils, as with fuse2.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #12964 from neheb/bim
Rosen Penev [Wed, 29 Jul 2020 23:34:29 +0000 (16:34 -0700)]
Merge pull request #12964 from neheb/bim

vim: update to 8.2

3 years agoMerge pull request #12954 from neheb/upnp2
Rosen Penev [Wed, 29 Jul 2020 23:30:25 +0000 (16:30 -0700)]
Merge pull request #12954 from neheb/upnp2

libupnp: update to 1.14.0

3 years agoMerge pull request #12965 from neheb/fping
Rosen Penev [Wed, 29 Jul 2020 23:29:48 +0000 (16:29 -0700)]
Merge pull request #12965 from neheb/fping

fping: update to 4.4

3 years agoMerge pull request #12969 from nickberry17/update_libqmi_1.26.2
Rosen Penev [Wed, 29 Jul 2020 23:28:14 +0000 (16:28 -0700)]
Merge pull request #12969 from nickberry17/update_libqmi_1.26.2

libqmi: bump libqmi to 1.26.2

3 years agolibqmi: bump libqmi to 1.26.2 12969/head
Nicholas Smith [Wed, 29 Jul 2020 22:32:27 +0000 (08:32 +1000)]
libqmi: bump libqmi to 1.26.2

Signed-off-by: Nicholas Smith <nicholas.smith@telcoantennas.com.au>
3 years agodocker-ce: add uci config on boot 12897/head
Florian Eckert [Wed, 29 Jul 2020 11:03:38 +0000 (13:03 +0200)]
docker-ce: add uci config on boot

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
3 years agodocker-ce: fix typo for registry_mirrors uci option
Florian Eckert [Wed, 29 Jul 2020 04:51:01 +0000 (06:51 +0200)]
docker-ce: fix typo for registry_mirrors uci option

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
3 years agodocker-ce: add bip uci to default config
Florian Eckert [Wed, 29 Jul 2020 04:50:13 +0000 (06:50 +0200)]
docker-ce: add bip uci to default config

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
3 years agodocker-ce: add hosts option
Florian Eckert [Wed, 29 Jul 2020 04:49:12 +0000 (06:49 +0200)]
docker-ce: add hosts option

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
3 years agodocker-ce: add default bridge to openwrt uci backend
Florian Eckert [Tue, 21 Jul 2020 13:26:04 +0000 (15:26 +0200)]
docker-ce: add default bridge to openwrt uci backend

This commit adds two additional init.d targets:
* uciadd:
This command adds the default docker0 bridge to the network
configuration. Additional, a new firewall zone docker is created

* ucidel
This command removes default docker0 bridge from the network
configuration. The new docker firewall zone gets also deleted.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
3 years agozmq: fix pkgconfig file
Rosen Penev [Wed, 29 Jul 2020 03:47:22 +0000 (20:47 -0700)]
zmq: fix pkgconfig file

It seems upstream broke it. This in turn broke depending packages.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #12963 from neheb/ttyd
Rosen Penev [Wed, 29 Jul 2020 01:10:34 +0000 (18:10 -0700)]
Merge pull request #12963 from neheb/ttyd

ttyd: update to 1.6.1

3 years agofping: update to 4.4 12965/head
Rosen Penev [Tue, 28 Jul 2020 23:09:39 +0000 (16:09 -0700)]
fping: update to 4.4

Remove upstreamed patch.

Whitespace Makefile cleanups.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agovim: update to 8.2 12964/head
Rosen Penev [Tue, 28 Jul 2020 21:22:08 +0000 (14:22 -0700)]
vim: update to 8.2

Removed multibyte options. They must now be enabled.

Refreshed patches.

Commented out autowrite as requested in
https://github.com/openwrt/packages/pull/12177

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agottyd: update to 1.6.1 12963/head
Rosen Penev [Tue, 28 Jul 2020 21:33:50 +0000 (14:33 -0700)]
ttyd: update to 1.6.1

Refresh patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #12957 from neheb/zmq
Rosen Penev [Tue, 28 Jul 2020 20:54:44 +0000 (13:54 -0700)]
Merge pull request #12957 from neheb/zmq

zmq: update to 4.3.2

3 years agoMerge pull request #12961 from BKPepe/ytdl
Rosen Penev [Tue, 28 Jul 2020 19:54:41 +0000 (12:54 -0700)]
Merge pull request #12961 from BKPepe/ytdl

youtube-dl: update to version 2020.7.28

3 years agoyoutube-dl: update to version 2020.7.28 12961/head
Josef Schlehofer [Tue, 28 Jul 2020 16:16:53 +0000 (18:16 +0200)]
youtube-dl: update to version 2020.7.28

Become the only maintainer of this package

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
3 years agoMerge pull request #12955 from neheb/unra
Rosen Penev [Tue, 28 Jul 2020 10:29:14 +0000 (03:29 -0700)]
Merge pull request #12955 from neheb/unra

unrar: update to 5.9.4

3 years agoMerge pull request #12956 from neheb/yara
Rosen Penev [Tue, 28 Jul 2020 10:28:47 +0000 (03:28 -0700)]
Merge pull request #12956 from neheb/yara

yara: update to 4.0.2

3 years agozmq: update to 4.3.2 12957/head
Rosen Penev [Tue, 28 Jul 2020 05:00:42 +0000 (22:00 -0700)]
zmq: update to 4.3.2

Remove upstreamed patches.

Add uClibc++ patch for those that need it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoyara: update to 4.0.2 12956/head
Rosen Penev [Tue, 28 Jul 2020 05:04:57 +0000 (22:04 -0700)]
yara: update to 4.0.2

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agounrar: update to 5.9.4 12955/head
Rosen Penev [Tue, 28 Jul 2020 05:07:43 +0000 (22:07 -0700)]
unrar: update to 5.9.4

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibupnp: update to 1.14.0 12954/head
Rosen Penev [Tue, 28 Jul 2020 08:10:47 +0000 (01:10 -0700)]
libupnp: update to 1.14.0

Remove flto as it breaks under GCC10 for some reason.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #12948 from TDT-AG/pr/20200724-mwan3
Florian Eckert [Tue, 28 Jul 2020 05:07:14 +0000 (07:07 +0200)]
Merge pull request #12948 from TDT-AG/pr/20200724-mwan3

mwan3: update to version 2.8.12

3 years agomwan3: update version to 2.8.12 12948/head
Florian Eckert [Fri, 24 Jul 2020 06:09:05 +0000 (08:09 +0200)]
mwan3: update version to 2.8.12

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
3 years agomwan3: unify variable check
Florian Eckert [Mon, 27 Jul 2020 08:24:59 +0000 (10:24 +0200)]
mwan3: unify variable check

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
3 years agomwan3: remove lock file entirely
Florian Eckert [Mon, 27 Jul 2020 07:02:40 +0000 (09:02 +0200)]
mwan3: remove lock file entirely

Removing the lock file ist not necessary

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
3 years agomwan3: revert: also cleanup lock on mwan3 stop
Florian Eckert [Fri, 24 Jul 2020 06:02:49 +0000 (08:02 +0200)]
mwan3: revert: also cleanup lock on mwan3 stop

This reverts commit cde2a77ed3b3b0df9e693e121dccdc97ef163156.

Applying this change has shown that it is even quicker to provoke the
race condtition on simultan mwan3 commands execution.
By reversing the change we have the same behaviour as before.

But the race condition on mwan3 execute at the same time still exists.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
3 years agomwan3: fix race condition on mwan3 restart
Florian Eckert [Wed, 22 Jul 2020 07:19:55 +0000 (09:19 +0200)]
mwan3: fix race condition on mwan3 restart

This adjustment of the locks fixes the race condition when a mwan3
hotplug script and a mwan3 command are running at the same time.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
3 years agoopenvswitch: adds new UCI section ovs_bridge
Simon Kinane [Sun, 26 Jul 2020 19:58:53 +0000 (20:58 +0100)]
openvswitch: adds new UCI section ovs_bridge

This new config section in package openvswitch
supports creating a named bridge, and setting
its' OpenFlow controller end-point.

An example config is included in /rom/etc/config/openvswitch

Signed-off-by: Simon Kinane <skinane@fb.com>
3 years agoMerge pull request #12953 from peter-stadler/patch-1
Rosen Penev [Mon, 27 Jul 2020 21:37:52 +0000 (14:37 -0700)]
Merge pull request #12953 from peter-stadler/patch-1

nginx: remove PROVIDES on depending package

3 years agonginx: remove PROVIDES on depending package 12953/head
peter-stadler [Mon, 27 Jul 2020 20:56:12 +0000 (22:56 +0200)]
nginx: remove PROVIDES on depending package

Fix recursive dependency for `make menuconfig`.

Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
3 years agoMerge pull request #12952 from gladiac1337/haproxy-2.2.1
Hannu Nyman [Mon, 27 Jul 2020 20:18:59 +0000 (23:18 +0300)]
Merge pull request #12952 from gladiac1337/haproxy-2.2.1

haproxy: Update HAProxy to v2.2.1

3 years agohaproxy: Update HAProxy to v2.2.1 12952/head
Christian Lachner [Mon, 27 Jul 2020 19:24:38 +0000 (21:24 +0200)]
haproxy: Update HAProxy to v2.2.1

- New major version (LTS release)
- Update haproxy download URL and hash
- Remove obsolete dladdr1-dependency-patch as it has been upstreamed
- USE_REGPARM is obsolete and therefore removed from our Makefile

Signed-off-by: Christian Lachner <gladiac@gmail.com>
3 years agoMerge pull request #12926 from neheb/gst12
Rosen Penev [Mon, 27 Jul 2020 18:43:27 +0000 (11:43 -0700)]
Merge pull request #12926 from neheb/gst12

gstreamer suite: update to 1.17.2

3 years agoMerge pull request #12922 from neheb/psl
Rosen Penev [Mon, 27 Jul 2020 18:43:09 +0000 (11:43 -0700)]
Merge pull request #12922 from neheb/psl

libpsl: update to 0.21.1

3 years agoMerge pull request #12946 from neheb/gerbbb
Rosen Penev [Mon, 27 Jul 2020 06:34:11 +0000 (23:34 -0700)]
Merge pull request #12946 from neheb/gerbbb

gerbera: add support for ffmpeg

3 years agoMerge pull request #12939 from jefferyto/python-3.8.5
Rosen Penev [Mon, 27 Jul 2020 06:33:52 +0000 (23:33 -0700)]
Merge pull request #12939 from jefferyto/python-3.8.5

python3: Update to 3.8.5

3 years agoMerge pull request #12941 from jefferyto/python-cryptography-3.0
Rosen Penev [Mon, 27 Jul 2020 06:33:32 +0000 (23:33 -0700)]
Merge pull request #12941 from jefferyto/python-cryptography-3.0

python-cryptography: Update to 3.0

3 years agogerbera: add support for ffmpeg 12946/head
Rosen Penev [Mon, 27 Jul 2020 03:53:18 +0000 (20:53 -0700)]
gerbera: add support for ffmpeg

Requires BUILD_PATENTED.

Added patch to fix compilation with it.

Removed include file hack. It's incorrect and it's also npupnp that
needs fixing.

Refreshed npupnp patch to the newest version sent upstream.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #12944 from neheb/v4l2
Rosen Penev [Mon, 27 Jul 2020 00:10:51 +0000 (17:10 -0700)]
Merge pull request #12944 from neheb/v4l2

v4l-utils: bring back getsubopt patch

3 years agov4l-utils: bring back getsubopt patch 12944/head
Rosen Penev [Sun, 26 Jul 2020 23:14:20 +0000 (16:14 -0700)]
v4l-utils: bring back getsubopt patch

During the update to 1.20.0, this patch was mistakenly removed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agopython-cryptography: Update to 3.0 12941/head
Jeffery To [Sun, 26 Jul 2020 21:40:30 +0000 (05:40 +0800)]
python-cryptography: Update to 3.0

Also:
* Remove patches that are included in the update
* Replace the python3 dependency with a smaller list (python3-urllib is
  needed because it is a dependency of python3-email)

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
3 years agopython3: Update to 3.8.5 12939/head
Jeffery To [Sun, 26 Jul 2020 20:00:15 +0000 (04:00 +0800)]
python3: Update to 3.8.5

This version includes fixes for:
* CVE-2020-15801 - Fixes python3x._pth being ignored on Windows
* CVE-2019-20907 - Avoid infinite loop when reading specially crafted
  TAR files using the tarfile module

This also:
* Remove patches that are included in the update
* Add a dependency in python3-distutils for python3-email[1]

[1]: https://github.com/python/cpython/blob/v3.8.5/Lib/distutils/dist.py#L10

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
3 years agoMerge pull request #12936 from rs/nextdns-1.7.1-master
Hannu Nyman [Sun, 26 Jul 2020 14:54:12 +0000 (17:54 +0300)]
Merge pull request #12936 from rs/nextdns-1.7.1-master

nextdns: Update to version 1.7.1

3 years agonextdns: Update to version 1.7.1 12936/head
Olivier Poitrey [Sun, 26 Jul 2020 14:42:46 +0000 (14:42 +0000)]
nextdns: Update to version 1.7.1

Signed-off-by: Olivier Poitrey <rs@nextdns.io>
3 years agoMerge pull request #12935 from mstorchak/luaposix
Rosen Penev [Sun, 26 Jul 2020 09:33:59 +0000 (02:33 -0700)]
Merge pull request #12935 from mstorchak/luaposix

luaposix: update to v35.0

3 years agoluaposix: update to v35.0 12935/head
Maxim Storchak [Sun, 26 Jul 2020 09:04:47 +0000 (12:04 +0300)]
luaposix: update to v35.0

Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
3 years agoMerge pull request #11958 from neheb/glib33
Rosen Penev [Sun, 26 Jul 2020 09:26:35 +0000 (02:26 -0700)]
Merge pull request #11958 from neheb/glib33

glib2: update to 2.65

3 years agoMerge pull request #12929 from peter-stadler/nginx-always-ssl
Rosen Penev [Sun, 26 Jul 2020 09:23:40 +0000 (02:23 -0700)]
Merge pull request #12929 from peter-stadler/nginx-always-ssl

nginx: enable ssl for all variants and remove nginx-util w/o ssl

3 years agoMerge pull request #12915 from lucize/frrup
Rosen Penev [Sun, 26 Jul 2020 09:18:42 +0000 (02:18 -0700)]
Merge pull request #12915 from lucize/frrup

frr: update to 7.4 and latest backports

3 years agoMerge pull request #12925 from neheb/log4
Rosen Penev [Sun, 26 Jul 2020 09:12:39 +0000 (02:12 -0700)]
Merge pull request #12925 from neheb/log4

log4cplus: apply cmake options to the host

3 years agoMerge pull request #12919 from neheb/ulf
Rosen Penev [Sun, 26 Jul 2020 09:11:58 +0000 (02:11 -0700)]
Merge pull request #12919 from neheb/ulf

libulfius: fix compilation with newer libmicrohttpd

3 years agoMerge pull request #12923 from neheb/gerber
Rosen Penev [Sun, 26 Jul 2020 09:11:22 +0000 (02:11 -0700)]
Merge pull request #12923 from neheb/gerber

gerbera: update to 1.6.0

3 years agoMerge pull request #12927 from dibdot/mc
Dirk Brenken [Sat, 25 Jul 2020 20:05:25 +0000 (22:05 +0200)]
Merge pull request #12927 from dibdot/mc

mc: update to 4.8.25

3 years agonginx: enable ssl for all variants and remove nginx-util w/o ssl 12929/head
Peter Stadler [Thu, 21 May 2020 18:21:59 +0000 (20:21 +0200)]
nginx: enable ssl for all variants and remove nginx-util w/o ssl

Make the plain nginx version the same as nginx-ssl.
In a further change we will replace nginx by a dummy package,
depending on +nginx-ssl instead. This allows a smooth upgrade.

For nginx-util leave the ssl and the ssl-nopcre versions only.
For nginx-mod-luci remove the duplicate ssl version.
Replace the removed packages by dummies for a smooth upgrade.
The dummy packages will be removed after a transition period.

Additionally, enable the http2 module for nginx-ssl by default
and cleanup the nginx.init file.

Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
3 years agomc: update to 4.8.25 12927/head
Dirk Brenken [Sat, 25 Jul 2020 08:47:01 +0000 (10:47 +0200)]
mc: update to 4.8.25

* refreshed patches
* release news: http://midnight-commander.org/wiki/NEWS-4.8.25

Signed-off-by: Dirk Brenken <dev@brenken.org>
3 years agogst1-libav: update to 1.17.2 12926/head
Rosen Penev [Sat, 25 Jul 2020 08:23:11 +0000 (01:23 -0700)]
gst1-libav: update to 1.17.2

Added patch to fix compilation without distutils.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agogst1-plugins-ugly: update to 1.17.2
Rosen Penev [Sat, 25 Jul 2020 08:15:46 +0000 (01:15 -0700)]
gst1-plugins-ugly: update to 1.17.2

Added patch to fix compilation without distutils.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agogst1-plugins-bad: update to 1.17.2
Rosen Penev [Sat, 25 Jul 2020 08:13:21 +0000 (01:13 -0700)]
gst1-plugins-bad: update to 1.17.2

Added patch to fix compilation without distutils.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agogst1-plugins-good: update to 1.17.2
Rosen Penev [Sat, 25 Jul 2020 08:09:38 +0000 (01:09 -0700)]
gst1-plugins-good: update to 1.17.2

Added patch to fix compilation without distutils.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agogst1-plugins-base: update to 1.17.2
Rosen Penev [Sat, 25 Jul 2020 08:04:33 +0000 (01:04 -0700)]
gst1-plugins-base: update to 1.17.2

Fixed some typos.

Added patch to fix compilation without distutils.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agogstreamer1: update to 1.17.2
Rosen Penev [Sat, 25 Jul 2020 07:58:40 +0000 (00:58 -0700)]
gstreamer1: update to 1.17.2

Added gettext-full host dependency. Normally it comes wth glib2, but in
the update to 2.65, it goes away. Add it here.

Refresh patch.

Add one for systems lacking distutils.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolog4cplus: apply cmake options to the host 12925/head
Rosen Penev [Sat, 25 Jul 2020 08:28:16 +0000 (01:28 -0700)]
log4cplus: apply cmake options to the host

loggingserver was getting built with a bad link path. Instead of fixing
it, just disable it as is done on the target.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #12917 from neheb/netwhe
Rosen Penev [Sat, 25 Jul 2020 07:35:56 +0000 (00:35 -0700)]
Merge pull request #12917 from neheb/netwhe

netwhere: fix compilation with newer libmicrohttpd

3 years agolibpsl: update to 0.21.1 12922/head
Rosen Penev [Sat, 25 Jul 2020 03:37:11 +0000 (20:37 -0700)]
libpsl: update to 0.21.1

Switched to building with meson. Faster.

Cleaned up Makefile for consistency with other packages.

Made the files in Install(Dev) explicit.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agonetwhere: fix compilation with newer libmicrohttpd 12917/head
Rosen Penev [Fri, 24 Jul 2020 21:37:04 +0000 (14:37 -0700)]
netwhere: fix compilation with newer libmicrohttpd

API change.

Cleaned up Makefile.

Fixed license information.

Remove pointless CMAKE_INSTALL. This is not needed in InstallDev.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #12920 from neheb/mes-setup
Rosen Penev [Sat, 25 Jul 2020 07:26:34 +0000 (00:26 -0700)]
Merge pull request #12920 from neheb/mes-setup

meson: backport no setuptools patch

3 years agomeson: backport no setuptools patch 12920/head
Rosen Penev [Fri, 24 Jul 2020 23:50:27 +0000 (16:50 -0700)]
meson: backport no setuptools patch

It seems this was cut after the release. Fixes CircleCI compilation.

Remove distutils patch. It looks like it does nothing.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #12914 from BKPepe/netdata
Daniel Engberg [Sat, 25 Jul 2020 05:31:32 +0000 (07:31 +0200)]
Merge pull request #12914 from BKPepe/netdata

netdata: update to version 1.23.2

3 years agogerbera: update to 1.6.0 12923/head
Rosen Penev [Sat, 25 Jul 2020 02:40:26 +0000 (19:40 -0700)]
gerbera: update to 1.6.0

Removed upstreamed patches.

Refreshed npupnp patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #12916 from kenkeys/spoofer-v146
Rosen Penev [Sat, 25 Jul 2020 00:54:43 +0000 (17:54 -0700)]
Merge pull request #12916 from kenkeys/spoofer-v146

spoofer: Update to 1.4.6

3 years agoMerge pull request #12918 from neheb/devo
Rosen Penev [Fri, 24 Jul 2020 23:44:18 +0000 (16:44 -0700)]
Merge pull request #12918 from neheb/devo

device-observatory: fix compilation with newer libmicrohttpd

3 years agoupmpdcli: fix compilation with newer libmicrohttpd
Rosen Penev [Fri, 24 Jul 2020 21:47:58 +0000 (14:47 -0700)]
upmpdcli: fix compilation with newer libmicrohttpd

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibulfius: fix compilation with newer libmicrohttpd 12919/head
Rosen Penev [Fri, 24 Jul 2020 21:26:36 +0000 (14:26 -0700)]
libulfius: fix compilation with newer libmicrohttpd

API change.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agodevice-observatory: fix compilation with newer libmicrohttpd 12918/head
Rosen Penev [Fri, 24 Jul 2020 21:17:58 +0000 (14:17 -0700)]
device-observatory: fix compilation with newer libmicrohttpd

API change.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agospoofer: Update to 1.4.6 12916/head
Ken Keys [Fri, 24 Jul 2020 18:28:03 +0000 (11:28 -0700)]
spoofer: Update to 1.4.6

Includes a new CA file for compatibility with upcoming change to spoofer
server SSL cert

Signed-off-by: Ken Keys <kkeys@caida.org>
3 years agoMerge pull request #12576 from neheb/squ
Rosen Penev [Fri, 24 Jul 2020 19:44:43 +0000 (12:44 -0700)]
Merge pull request #12576 from neheb/squ

squeezelite: remove WMA support

3 years agoMerge pull request #12909 from neheb/meson4
Rosen Penev [Fri, 24 Jul 2020 19:43:28 +0000 (12:43 -0700)]
Merge pull request #12909 from neheb/meson4

meson: update to 0.55.0

3 years agofrr: update to 7.4 and latest backports 12915/head
Lucian Cristian [Fri, 24 Jul 2020 15:50:07 +0000 (18:50 +0300)]
frr: update to 7.4 and latest backports

changelogs: https://github.com/FRRouting/frr/releases/tag/frr-7.4

Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
3 years agonetdata: update to version 1.23.2 12914/head
Josef Schlehofer [Fri, 24 Jul 2020 13:40:07 +0000 (15:40 +0200)]
netdata: update to version 1.23.2

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
3 years agoMerge pull request #12911 from datafl4sh/datafl4sh/update_gnuplot
Rosen Penev [Fri, 24 Jul 2020 10:31:24 +0000 (03:31 -0700)]
Merge pull request #12911 from datafl4sh/datafl4sh/update_gnuplot

Updated gnuplot to 5.4.0

3 years agognuplot: Updated gnuplot to 5.4.0 12911/head
Matteo Cicuttin [Thu, 23 Jul 2020 23:19:00 +0000 (01:19 +0200)]
gnuplot: Updated gnuplot to 5.4.0

Signed-off-by: Matteo Cicuttin <datafl4sh@toxicnet.eu>
3 years agoMerge pull request #12910 from wfleurant/ygg-dbl-peer-fix
Rosen Penev [Fri, 24 Jul 2020 07:20:14 +0000 (00:20 -0700)]
Merge pull request #12910 from wfleurant/ygg-dbl-peer-fix

yggdrasil: Ygg-over-ygg bugfix