aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | python3: enable bluetooth support by defaultAlexandru Ardelean2021-09-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | rtty: update to 8.0.0Jianhui Zhao2021-09-27
| | | | | | | | | | | | | | | | Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
* | | | Merge pull request #16740 from mhei/php8-fix-16642Michael Heimpold2021-09-27
|\ \ \ \ | | | | | | | | | | php8: fix module loading with glibc (refs #16642)
| * | | | php8: fix module loading with glibc (refs #16642)Michael Heimpold2021-09-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | | Merge pull request #16741 from mhei/php7-fix-16642Michael Heimpold2021-09-27
|\ \ \ \ \ | | | | | | | | | | | | php7: fix module loading with glibc (refs #16642)
| * | | | | php7: fix module loading with glibc (refs #16642)Michael Heimpold2021-09-26
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | | dnsdist/pdns/pdns-recursor: Remove 010-time_t-check.patchWout Bertrums2021-09-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | | dnsdist: Update to v1.6.1Wout Bertrums2021-09-27
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | ttyd: fix ssl ca option initMax S Kash2021-09-26
| | | | | | | | | | | | | | | | Signed-off-by: Max S Kash <asukms@ya.ru>
* | | | hidapi: update to 0.10.1Rosen Penev2021-09-26
| | | | | | | | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | zerotier: update to 1.6.6Chukun Pan2021-09-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | libconfig: update to 1.7.3Rosen Penev2021-09-26
| | | | | | | | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | libfstrm: update to 0.6.1Rosen Penev2021-09-26
| | | | | | | | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | mpg123: update to 1.29.0Rosen Penev2021-09-26
| | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | nlohmannjson: update to 3.10.2Rosen Penev2021-09-26
| | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | minizip: update to 3.0.3Rosen Penev2021-09-26
| | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | protobuf: update to 3.17.3Rosen Penev2021-09-26
| | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | libcoap: update to 4.3.0Rosen Penev2021-09-26
| | | | | | | | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | smcroute: update to version 2.5.3Moritz Warning2021-09-26
| | | | | | | | | | | | | | | | Signed-off-by: Moritz Warning <moritzwarning@web.de>
* | | | libs: openblas: use GENERIC for MIPS{EL} and MIPS24K for CPU_TYPE == 24kcAlexandru Ardelean2021-09-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | | libs: openblas: patch openblas to handle mips{64}el arch namesAlexandru Ardelean2021-09-26
| | | | | | | | | | | | | | | | | | | | | | | | Related to PR: https://github.com/xianyi/OpenBLAS/pull/3387 Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | libs: openblas: use GENERIC target for MIPS64 archs and as defaultAlexandru Ardelean2021-09-26
|/ / / | | | | | | | | | | | | | | | | | | | | | 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>
* | | Merge pull request #16738 from stangri/master-curlStan Grishin2021-09-26
|\ \ \ | | | | | | | | curl: update to 7.79.1
| * | | curl: update to 7.79.1Stan Grishin2021-09-26
|/ / / | | | | | | | | | | | | | | | * update to [7.79.1](https://curl.se/changes.html#7_79_1) Signed-off-by: Stan Grishin <stangri@melmac.net>
* | | usbip: Add init script for usbip-serverAlexander Sulfrian2021-09-26
| | | | | | | | | | | | Signed-off-by: Alexander Sulfrian <asulfrian@zedat.fu-berlin.de>
* | | pigeonhole: update to 0.5.16Rosen Penev2021-09-25
| | | | | | | | | | | | | | | | | | Update URL. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | fontconfig: update to 2.13.94Rosen Penev2021-09-25
| | | | | | | | | | | | | | | | | | Remove upstreamed patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | lxc-auto: step by 1 sec up to $max_timeoutJohn Audia2021-09-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | zoneinfo: Updated to the latest releaseVladimir Ulrich2021-09-25
| | | | | | | | | | | | Signed-off-by: Vladimir Ulrich <admin@evl.su>
* | | javascript-obfuscator: bump to 2.19.0 and switch to autoreleaseZbyněk Kocur2021-09-25
| | | | | | | | | | | | | | | | | | New version of package node-javascript-obfuscator. Signed-off-by: Zbyněk Kocur <zbynek.kocur@fel.cvut.cz>
* | | freetype: update to 2.11.0Rosen Penev2021-09-25
| | | | | | | | | | | | | | | | | | | | | | | | Remove upstreamed patches. Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | libgcrypt: update to 1.9.4Rosen Penev2021-09-25
| | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | libexif: update to 0.6.23Rosen Penev2021-09-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Fix license information. Add PKG_BUILD_PARALLEL for faster compilation. Fixes CVE-2020-0198 and CVE-2020-0452. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | libdrm: update to 2.4.107Rosen Penev2021-09-25
| | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | m4: update to 1.4.19Rosen Penev2021-09-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove upstream backport. Add patch fixing compilation with powerpc and musl. Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | gerbera: update to 1.9.1Rosen Penev2021-09-25
| | | | | | | | | | | | | | | | | | Remove upstream backport. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | gzip: update to 1.11Rosen Penev2021-09-25
| | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | mpd: update to 0.22.11Rosen Penev2021-09-25
| | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | gdbm: update to 1.21Rosen Penev2021-09-25
| | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | fuse3: update to 3.10.5Rosen Penev2021-09-25
| | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | pkgconf: update to 1.8.0Rosen Penev2021-09-25
| | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | transmission: add two more syscalls to seccomp filterDaniel Golle2021-09-25
| | | | | | | | | | | | | | | | | | | | | | | | Testing showed that additional syscalls are needed on ARMv7. Add "clock_gettime64" and "statx" which seem to be used now instead of "clock_gettime" and "stat" syscalls which are already listed. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | libuwsc: fix compilation with GCC11Rosen Penev2021-09-24
| | | | | | | | | | | | | | | | | | Bad if identation is now an error. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | dnsproxy: Update to 0.39.7Tianling Shen2021-09-24
| | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | xray-core: Update to 1.4.5Tianling Shen2021-09-24
| | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | prometheus-node-exporter-lua: fix broken control flowMartin Weinelt2021-09-24
| | | | | | | | | | | | Signed-off-by: Martin Weinelt <hexa@darmstadt.ccc.de>
* | | attendedsysupgrade-common: use sysupgrade.openwrt.orgPaul Spooren2021-09-24
| | | | | | | | | | | | | | | | | | | | | | | | A new server was added which runs within the OpenWrt cloud, it's much faster and should be used instead. For development the server at https://asu.aparcar.org stays available. Signed-off-by: Paul Spooren <mail@aparcar.org>
* | | auc: use /json/v1/Paul Spooren2021-09-24
| | | | | | | | | | | | | | | | | | | | | Currently `auc` uses the outdated /json/ path, this commit uses /json/v1/ to be more future proof. Signed-off-by: Paul Spooren <mail@aparcar.org>
* | | nut: Add the option to compile Nut NetXML drivers with the Nut package.Seb Belcher2021-09-23
| | | | | | | | | | | | | | | | | | Also modifies the nut-server init script to include options specific to the netxml driver. Signed-off-by: Seb Belcher <sdjbelcher@gmail.com>
* | | hcxtools: update to 6.2.4Rosen Penev2021-09-23
| | | | | | | | | | | | | | | | | | Refresh patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>