Commit Graph

25753 Commits

Author SHA1 Message Date
Florian Eckert 1edf781c1e
Merge pull request #16663 from zhujunsan/master
ddns-scripts: Add dnspod.cn
2021-09-30 10:39:37 +02:00
Jun Zhu 10bfa7e974 ddns-scripts: Add dnspod.cn
Signed-off-by: Jun Zhu <zhujunsan@gmail.com>
2021-09-30 14:18:55 +08:00
Alexandru Ardelean e2055b5433
Merge pull request #16745 from neheb/tinc2
tinc: update to 1.1pre18
2021-09-29 12:05:40 +03:00
Alexandru Ardelean d15304e7d3 sudo: bump to version 1.9.8p2
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-09-28 18:34:48 -07:00
Alexandru Ardelean 437b52d08c
Merge pull request #16746 from neheb/secc2
libseccomp: update to 2.5.2
2021-09-28 18:48:36 +03:00
Alexandru Ardelean 29b9eb599a
Merge pull request #16679 from paper42/mutt-2.1.3
mutt: update to 2.1.3
2021-09-28 10:56:47 +03:00
Alexandru Ardelean 05ce19315e
Merge pull request #16760 from mhei/ci-typo
github-ci: fix small typo
2021-09-28 10:34:07 +03:00
Michael Heimpold 05a3011b00 github-ci: fix small typo
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-09-28 07:42:38 +02:00
Michael Heimpold e24a969571
Merge pull request #16756 from mhei/php7-update
php7: update to 7.4.24
2021-09-28 07:39:12 +02:00
Michael Heimpold 80e27e571c
Merge pull request #16755 from mhei/php8-update
php8: update to 8.0.11
2021-09-28 07:38:55 +02:00
Hannu Nyman 7778661b08 fontconfig: avoid compilation problem (on Ubuntu)
Partially revert an upstream commit to avoid build breakage
on Ubuntu.

Refrerence to discussion starting at
https://github.com/openwrt/packages/pull/16726#issuecomment-927309052

Upstream commit:
  ae9ac2a1bf
  meson: fix cross-compilation issues with gperf header file preprocessing

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2021-09-27 22:20:12 -07:00
Niels Widger bf40d06f3d delve: Update to 1.7.2
See https://github.com/go-delve/delve/blob/master/CHANGELOG.md for
changes.

Signed-off-by: Niels Widger <niels@qacafe.com>
2021-09-28 07:17:08 +03:00
Alexandru Ardelean 2b4fe34e0f
Merge pull request #16515 from jow-/nlbwmon-bump
nlbwmon: update to latest Git HEAD
2021-09-27 23:34:27 +03:00
Michael Heimpold 6969fedfd9 php8: update to 8.0.11
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-09-27 20:46:19 +02:00
Michael Heimpold 96a04adbf3 php7: update to 7.4.24
This fixes:
    - CVE-2021-21706

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-09-27 20:44:30 +02:00
Rosen Penev 537f743c49 libarchive: update to 3.5.2
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-27 11:07:15 -07:00
Sibren Vasse 1a773dd20e openssh: update to 8.8p1
Signed-off-by: Sibren Vasse <github@sibrenvasse.nl>
2021-09-27 11:06:52 -07:00
Alexandru Ardelean a1d32499ca python3: enable bluetooth support by default
Bluetooth support requires bluez-libs present, but they are only required
for the build, and don't seem to be needed to be present on the target.

There isn't any linking required to libbluetooth. It's only the bluetooth.h
header that is required for building BT support into Python.

For testing, this snippet was used from `Lib/test/test_socket.py` (inside
cpython):
```
def _have_socket_bluetooth():
    """Check whether AF_BLUETOOTH sockets are supported on this host."""
    try:
        # RFCOMM is supported by all platforms with bluetooth support. Windows
        # does not support omitting the protocol.
        s = socket.socket(socket.AF_BLUETOOTH, socket.SOCK_STREAM, socket.BTPROTO_RFCOMM)
    except (AttributeError, OSError):
        return False
    else:
        s.close()
    return True
```

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

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-09-27 11:01:07 -07:00
Jianhui Zhao 12c5ed9a4c rtty: update to 8.0.0
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-09-27 11:00:27 -07:00
Michael Heimpold a94ef655ff
Merge pull request #16740 from mhei/php8-fix-16642
php8: fix module loading with glibc (refs #16642)
2021-09-27 18:08:20 +02:00
Michael Heimpold ba4b60ac2a
Merge pull request #16741 from mhei/php7-fix-16642
php7: fix module loading with glibc (refs #16642)
2021-09-27 18:08:08 +02:00
Wout Bertrums 74bea91e5a dnsdist/pdns/pdns-recursor: Remove 010-time_t-check.patch
This patch to remove PowerDNS' check for whether time_t is 64-bit is not needed anymore,
due to OpenWrt now having a more recent musl libc where time_t is 64-bit on all architectures.

Signed-off-by: Wout Bertrums <wout@wbnet.eu>
2021-09-27 07:16:05 -07:00
Wout Bertrums 7cab44e001 dnsdist: Update to v1.6.1
The patch for GCC 11 is not needed anymore because it is upstream now:
https://github.com/PowerDNS/pdns/pull/10400

Signed-off-by: Wout Bertrums <wout@wbnet.eu>
2021-09-27 07:16:05 -07:00
Rosen Penev 17d2f61c7b libseccomp: update to 2.5.2
Use AUTORELEASE for simplicity.

Add libtool patch to fix compilation under some platforms.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 22:35:50 -07:00
Rosen Penev 5f51bc789b tinc: update to 1.1pre18
Switch to AUTORELEASE for simplicity.

Switch to normal tarballs.

Add license information.

Reorganize Makefile for consistency between packages.

Add libtool patch fixing compilation under some conditions.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 20:11:26 -07:00
Max S Kash 31dbc888cc ttyd: fix ssl ca option init
Signed-off-by: Max S Kash <asukms@ya.ru>
2021-09-26 19:51:10 -07:00
Rosen Penev cc473dd810 hidapi: update to 0.10.1
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:34:13 -07:00
Chukun Pan 7f50af8949 zerotier: update to 1.6.6
This is a security release (see [1]).

[1] https://www.zerotier.com/2021/09/21/incident-response-to-september-20th-2021

Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
2021-09-26 19:33:46 -07:00
Rosen Penev feaf38de41 libconfig: update to 1.7.3
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:33:25 -07:00
Rosen Penev 6775faf905 libfstrm: update to 0.6.1
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:33:03 -07:00
Rosen Penev 801dd7bffb mpg123: update to 1.29.0
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:32:44 -07:00
Rosen Penev a6105d1c53 nlohmannjson: update to 3.10.2
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:31:24 -07:00
Rosen Penev 35fabec128 minizip: update to 3.0.3
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:31:07 -07:00
Rosen Penev 0c3ee90b07 protobuf: update to 3.17.3
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:30:52 -07:00
Rosen Penev bb4649f168 libcoap: update to 4.3.0
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:30:33 -07:00
Moritz Warning b9c28a2eef smcroute: update to version 2.5.3
Signed-off-by: Moritz Warning <moritzwarning@web.de>
2021-09-26 18:09:49 -07:00
Alexandru Ardelean d009987c64 libs: openblas: use GENERIC for MIPS{EL} and MIPS24K for CPU_TYPE == 24kc
Up until now, we were defaulting to MIPS24K for all MIPS archs.
But, we should use the GENERIC target for MIPS{EL} and the MIPS24K target
for the 24kc CPU_TYPE.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-09-26 18:08:20 -07:00
Alexandru Ardelean 4c5a05cd63 libs: openblas: patch openblas to handle mips{64}el arch names
Related to PR: https://github.com/xianyi/OpenBLAS/pull/3387

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-09-26 18:08:20 -07:00
Alexandru Ardelean 9b94996370 libs: openblas: use GENERIC target for MIPS64 archs and as default
The GENERIC target for OpenBLAS seems good enough for most configs, so try
to use it for MIPS64 and as default for other archs.
This was already being used for x86{_64} archs.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-09-26 18:08:20 -07:00
Michael Heimpold 1bff138517 php8: fix module loading with glibc (refs #16642)
Without -ldl linker flag .so extensions are not loaded
when glibc is used. Fix it by providing adjusted LDFLAGS
for this case.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-09-26 22:05:15 +02:00
Michael Heimpold d153c61650 php7: fix module loading with glibc (refs #16642)
Without -ldl linker flag .so extensions are not loaded
when glibc is used. Fix it by providing adjusted LDFLAGS
for this case.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-09-26 21:57:44 +02:00
Stan Grishin 863acbd4ac
Merge pull request #16738 from stangri/master-curl
curl: update to 7.79.1
2021-09-26 11:44:26 -07:00
Stan Grishin 6015bc32f5 curl: update to 7.79.1
* update to [7.79.1](https://curl.se/changes.html#7_79_1)

Signed-off-by: Stan Grishin <stangri@melmac.net>
2021-09-26 18:33:03 +00:00
Alexander Sulfrian 7e241da2b7 usbip: Add init script for usbip-server
Signed-off-by: Alexander Sulfrian <asulfrian@zedat.fu-berlin.de>
2021-09-26 14:58:33 +02:00
Rosen Penev 489e60de08 pigeonhole: update to 0.5.16
Update URL.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-25 20:14:14 -07:00
Rosen Penev fe8060a90c fontconfig: update to 2.13.94
Remove upstreamed patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-25 16:28:57 -07:00
John Audia 7984d2d74a lxc-auto: step by 1 sec up to $max_timeout
If the user defines a $max_timeout of 30, the service will wait 30 seconds
before it considers lxc-stop complete even though lxc-stop might actually
finish much sooner.  This introduces an unneeded delay.

This commit changes the behavior to check once per second to see when lxc-stop
actually stops doing so up to $max_timeout.  It also slightly simplifies the
code with logic to append the -t $max_timeout to the script.

Signed-off-by: John Audia <graysky@archlinux.us>
2021-09-25 12:37:06 -07:00
Vladimir Ulrich 7259eea63f zoneinfo: Updated to the latest release
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2021-09-25 12:36:20 -07:00
Zbyněk Kocur cefb5eba7a javascript-obfuscator: bump to 2.19.0 and switch to autorelease
New version of package node-javascript-obfuscator.

Signed-off-by: Zbyněk Kocur <zbynek.kocur@fel.cvut.cz>
2021-09-25 11:11:43 -07:00
Rosen Penev 2fdd8dbcb1 freetype: update to 2.11.0
Remove upstreamed patches.

Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-25 11:05:11 -07:00