Commit graph

17484 commits

Author SHA1 Message Date
Aleksander Morgado
d439333770 modemmanager: depend on ppp explicitly
The ModemManager protocol handler checks for the pppd daemon during
the initialization, and if it doesn't exist, the protocol handler is
not even loaded by netifd.

This is because the IP method to use on the connection of a given
modem is not known until ModemManager reports via its interfaces how
the modem should be connected (either using PPP, with DHCP, or with
explicit IP settings).

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

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
2019-12-19 09:41:45 +01:00
Luiz Angelo Daros de Luca
5c5f7fa76f ruby: openssl requires digest
Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
2019-12-19 02:09:39 -03:00
Rosen Penev
5117ed17f4
Merge pull request #10061 from ynezz/upstream/service-status-fix
treewide: fix service status
2019-12-18 16:18:45 -08:00
Rosen Penev
e9a3a4c354
Merge pull request #10781 from Andy2244/samba-4.11-python3-new
samba4: update to 4.11.4 (python3 version), add rpcsvc-proto, add libasn1 host build
2019-12-18 16:10:33 -08:00
Rosen Penev
b535844e5d
Merge pull request #10813 from EricLuehrsen/unbound_196
unbound: update to 1.9.6
2019-12-18 16:09:35 -08:00
Rosen Penev
e6e3de1d0f
Merge pull request #10785 from neheb/apple
[WIP]Add idevicerestore
2019-12-18 15:59:27 -08:00
Rosen Penev
097c34a0dc
Merge pull request #10826 from BKPepe/urllib
python-urllib3: Update to version 1.25.7
2019-12-18 15:58:14 -08:00
Rosen Penev
2b81ecdb66
Merge pull request #10827 from BKPepe/syslog
syslog-ng: Update to version 3.25.1
2019-12-18 15:58:01 -08:00
Rosen Penev
486c023494
Merge pull request #10821 from cshoredaniel/pr-remove-msmtp-scripts
msmtp-scripts: Remove as abandoning upstream; msmtp-queue works
2019-12-18 15:56:17 -08:00
Daniel Golle
b0131c446e gnunet: revert accidentally committed version bump
0.12.0 tarballs aren't out yet, I accidentally committed the changed
version in commit b6a9bd3bf3
("gnurl: update to version 7.67.0").
Revert gnunet back to 0.11.8.

Reported-by: Sebastian Kemper <sebastian_ml@gmx.net>
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2019-12-18 23:34:40 +02:00
Josef Schlehofer
dbf7b965b7
netdata: Update to version 1.19.0
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2019-12-18 22:05:33 +01:00
Josef Schlehofer
338486f433
python-urllib3: Update to version 1.25.7
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2019-12-18 21:46:08 +01:00
Josef Schlehofer
ac4870f205
syslog-ng: Update to version 3.25.1
Bump version in config

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2019-12-18 21:44:37 +01:00
Nikos Mavrogiannopoulos
7275525c56 vpnc-script: bumped release version
Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
2019-12-18 21:24:45 +01:00
Nikos Mavrogiannopoulos
80ab3fdc49 vpnc-script: enable reconnect
Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
2019-12-18 21:21:49 +01:00
Rosen Penev
a135cbb9f1
fish: Fix compilation with libcxx
cxxabi.h is a useless header that libcxx does not include.

Remove indent on postint script. It should be on the same as the above
section.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-12-18 12:01:21 -08:00
Michael Heimpold
d5c18b1d5e php7: update to 7.2.26
This fixes:
  - CVE-2019-11046
  - CVE-2019-11044
  - CVE-2019-11045
  - CVE-2019-11050
  - CVE-2019-11047

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2019-12-18 20:57:34 +01:00
Rosen Penev
c996e6b470
Merge pull request #10819 from ja-pa/lmdb-fix-ar
lmdb: use toolchain AR for compilation
2019-12-18 07:12:35 -08:00
Daniel F. Dickinson
1d12cc2a22 msmtp-scripts: Remove as abandoning upstream; msmtp-queue works
I am upstream for msmtp-scripts and have decided to abandon the project.  Therefore
remove msmtp-scripts from OpenWrt -- there is already msmtp-queue which is 'good enough'
for the use cases where msmtp-scripts had any relevance.

Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
2019-12-18 07:33:53 -05:00
Jan Pavlinec
7c82793719
lmdb: use toolchain AR for compilation
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2019-12-18 11:58:34 +01:00
Karel Kočí
f27ce05a58
shadow: change default encryption method from DES to SHA512
Busybox in default uses SHA512 as well.

On big ditribution this default is sourced from PAM. That means that
shadow reads pam settings and uses that. OpenWrt in most cases does not
have PAM installed and in such case shadow fallbacks to its own default
which is DES. This just changes that default to SHA512 which is
consistent with rest of the system.

Signed-off-by: Karel Kočí <karel.koci@nic.cz>
2019-12-18 11:37:39 +01:00
Jo-Philipp Wich
dde503da13 cgi-io: close pipe descriptors early
In the command read side, close the superfluous write end of the pipe
early to ensure that EOF is reliably detected. Without that change, splice
calls to read from the pipe will occasionally hang until the CGI process
is eventually killed due to timeout.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2019-12-18 11:00:15 +01:00
Karel Kočí
d2d193d818
zsh: fix invalid postrm script and little refactor of scripts
The postrm script was missing shebang. Postrm scripts are packaged and
executed directly and not sourced by default script (as in case of prerm
and postinst).

Also move some indents around to not confuse reader. The section in
postinst was indented to same level as grep "condition" but is on same
level as initial grep (not part of that "condition").

Signed-off-by: Karel Kočí <karel.koci@nic.cz>
2019-12-18 10:04:41 +01:00
Eric Luehrsen
173f2d6c9f unbound: update to 1.9.6
Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>
2019-12-18 01:32:30 -05:00
Hannu Nyman
b1634c1737
Merge pull request #10754 from stangri/master-https-dns-proxy
https-dns-proxy: switch to https-dns-proxy package name
2019-12-18 07:41:42 +02:00
Stan Grishin
da30fe7e90 https-dns-proxy: switch to https-dns-proxy package name
Signed-off-by: Stan Grishin <stangri@melmac.net>
2019-12-17 14:48:51 -07:00
Rosen Penev
7b54bf9b40
Merge pull request #10810 from tru7/knxd
knxd: adjust startup files to better comply with procd
2019-12-17 12:59:46 -08:00
Michael Heimpold
7fdbf40278
Merge pull request #10806 from micmac1/libzip-fts
libzip: fix musl-fts failure
2019-12-17 20:28:57 +01:00
Rosen Penev
f9da2a0400
Merge pull request #10804 from br101/pingcheck-update
pingcheck: Update to latest version
2019-12-17 08:50:19 -08:00
Othmar Truniger
615a4ae9d7 knxd: adjust startup files to better comply with procd
Signed-off-by: Othmar Truniger <github@truniger.ch>
2019-12-17 15:49:15 +01:00
Bruno Randolf
163596d622 pingcheck: Update to latest version
Signed-off-by: Bruno Randolf <br1@einfach.org>
2019-12-17 14:15:48 +00:00
Andy Walsh
c50c5836ea samba4: update to 4.11.4
* update to 4.11.4 (python3 version)
* re-enable AD-DC option
* add 'samba_nice' UCI option via "config procd 'extra'"
* restructure buildsteps (don't rely on waf --targets logic)
* move quota option into VFS
* move ACL option into AC-DC
* add more admin-tools
* use rpath_install for libs
* fix rpath + rstrip

Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2019-12-17 11:54:50 +01:00
Rosen Penev
fb356f90f1
Merge pull request #10778 from bobafetthotmail/minidlna-fix
minidlna: add static uuid in config
2019-12-16 22:00:18 -08:00
Rosen Penev
3671405460
Merge pull request #10795 from neheb/l
lua-rs232: Update to latest master
2019-12-16 21:58:05 -08:00
Sebastian Kemper
0c381f7c7a libzip: fix musl-fts failure
musl doesn't support fts. But with the extra package musl-fts installed,
libzip picks up the fts header and fails at the linking stage:

zipcmp.c:(.text.startup+0x130): undefined reference to `fts_open'
/home/sk/tmp/openwrt/staging_dir/toolchain-mips_24kc_gcc-8.3.0_musl/lib/gcc/mips-openwrt-linux-musl/8.3.0/../../../../mips-openwrt-linux-musl/bin/ld: zipcmp.c:(.text.startup+0x172): undefined reference to `fts_read'

So with musl-fts we need to link in libfts. To address that this commits
patches the cmake setup to check if fts is available in libc itself or
in any external libfts.

So when musl-fts is installed on the system the setup will be the
following:

musl: use libfts
uclibc: use fts from libc
glibc: like uclibc

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2019-12-16 23:33:32 +01:00
Rosen Penev
e87573a5a7
lua-rs232: Update to latest master
Should fix the no previous prototype errors.

Also fixed the install paths. Now running this should be correct.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-12-16 12:55:39 -08:00
Rosen Penev
130b770a8b
libplist: Several fixes
Add myself as maintainer.

Add PKG_CPE_ID.

Switch to submenu for easier readability.

Change libplist-utils name to the utility.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-12-16 12:54:06 -08:00
Rosen Penev
09799e54c6
libusbmuxd: Several fixes
Add myself as maintainer.

Add PKG_CPE_ID.

Add submenu for easier readability.

Install extra tool.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-12-16 12:53:31 -08:00
Rosen Penev
fb7ed3d996
usbmuxd: Update to latest master
usbmuxd must be ran for many of the idevice tools. Added an init
script to make this easier.

Added myself as maintainer.

Fix PKG_CVE_ID.

Added config directory.

Placed in a submenu for easier readability.

Add extra tool

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-12-16 12:36:23 -08:00
Rosen Penev
9fbe1c247e
idevicerestore: Add package
Allows to flash an iOS device without using iTunes.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-12-16 12:24:01 -08:00
Rosen Penev
0b51b4c469
libirecovery: Add package
Needed for idevicerestore

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-12-16 12:21:20 -08:00
Rosen Penev
517005ca51
libimobiledevice: Update to latest master
Added patch to fix Wformat warning.

Fixed license information.

Removed outdated iconv dependency

Placed in a submenu for readability.

Added myself as maintainer.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-12-16 12:21:07 -08:00
Rosen Penev
755144e7b7
Merge pull request #10805 from mmtj/pyroute2-0.5.7
python3-pyroute2: Update to version 0.5.7
2019-12-16 08:19:17 -08:00
Rosen Penev
bf7fb3efe2
Merge pull request #10800 from gladiac1337/haproxy-2.0.11
haproxy: Update HAProxy to v2.0.11
2019-12-16 07:53:05 -08:00
Rosen Penev
1206149dcd
Merge pull request #10803 from Payne-X6/master
knot: update to version 2.9.2
2019-12-16 07:52:31 -08:00
Martin Matějek
b450ceb4d7
python3-pyroute2: Update to version 0.5.7
Signed-off-by: Martin Matějek <martin.matejek@gmx.com>
2019-12-16 16:42:59 +01:00
Josef Schlehofer
ce027362c4
meson: Update to version 0.52.1
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2019-12-16 16:40:34 +01:00
Jan Hak
ca729cd43c knot: update to version 2.9.2
Signed-off-by: Jan Hak <jan.hak@nic.cz>
2019-12-16 13:56:39 +01:00
Daniel Golle
23460f34e5 gnurl: update homepage URL and use @GNU mirrors
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2019-12-16 09:54:58 +02:00
Rosen Penev
ce89774942
Merge pull request #10793 from micmac1/dnsdist-no-bomb
dnsdist: fix various build failures
2019-12-15 21:37:46 -08:00