aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | | nano: update to version 6.0Hannu Nyman2021-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update nano editor to version 6.0 Version 6.0 enable toggling the display of the line numbers with the shortcut key M-N (Alt-n). Also the cmdline option "-l" works. Remove earlier patch regarding that. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | | Merge pull request #17333 from ysc3839/ddns-ns1Florian Eckert2021-12-15
|\ \ \ \ \ | | | | | | | | | | | | ddns-scripts: add ns1.com provider
| * | | | | ddns-scripts: add ns1.com providerRichard Yu2021-12-15
| | |/ / / | |/| | | | | | | | | | | | | Signed-off-by: Richard Yu <yurichard3839@gmail.com>
* | | | | Merge pull request #17337 from TDT-AG/pr/20211214-libqmiFlorian Eckert2021-12-15
|\ \ \ \ \ | | | | | | | | | | | | libqmi: fix missing CONFIG_ prefix
| * | | | | libqmi: fix missing CONFIG_ prefixFlorian Eckert2021-12-15
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | | | | | mandoc: update to 1.14.6W. Michael Petullo2021-12-14
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | | | libgpg-error: update to 1.43W. Michael Petullo2021-12-14
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | | | dnsproxy: Update to 0.39.13Tianling Shen2021-12-14
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | | | | Merge pull request #17300 from TDT-AG/pr/20211210-dbusFlorian Eckert2021-12-14
|\ \ \ \ \ \ | |/ / / / / |/| | | | | dbus: add debug option and move service to procd and update/fix compile CMAKE_OPTIONS
| * | | | | dbus: remove dbus-update-activation-environment and add dbus-test-toolFlorian Eckert2021-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The tool dbus-update-activiation-environment does not make sense there, we only use --system service. So this is not needed. But for debugging we need the tool dbus-test-tool. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * | | | | dbus: refactoring init for using procdFlorian Eckert2021-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The dbus service has not yet been started via the procd. This commit changes this. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * | | | | dbus: add debug compile optionFlorian Eckert2021-12-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To simplify the debugging of dbus problems, the VERBOSE option for the dbus can now be switched on via make menuconfig. This is switched off by default. If this is switched on, the dbus package must be recompiled. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * | | | | dbus: add patch to fix cmake tmp session searchFlorian Eckert2021-12-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The tmp file location cannot be set explicitly. It is set incorrectly by cmake. This patch only searches for this location if it is not specified via the build system. Without this change, the cross compile value is not correct set on target in the file /usr/share/dbus-1/session.conf. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * | | | | dbus: use default pif file location form cmakeFlorian Eckert2021-12-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Wo do not have to specify that. Instead, take the default value from the cmake. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * | | | | dbus: do not build XML DOCSFlorian Eckert2021-12-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Setting the variable DBUS_ENABLE_XML_DOCS to OFF will not build this documentation. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| * | | | | dbus: fix cmake variable nameing for QTHELPFlorian Eckert2021-12-10
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | The cmake variable ENABLE_QT_HELP does no exist. Use instead the variable DBUS_ENABLE_QTHELP_DOCS. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | | | | nfs-kernel-server: fix build on macos arm64Sergey V. Lobanov2021-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. prctl() check is not required for host-compile on any OS due to prctl is not used in rpcgen which is only one is compiled during host-compile phase. prctl() check is disabled via HOST_CONFIGURE_VARS in OpenWrt makefile 2. __DARWIN_ONLY_64_BIT_INO_T is true on macos arm64 so struct stat64 and stat64() are not available. This patch defines stat64 as stat if __DARWIN_ONLY_64_BIT_INO_T is true Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | | | openldap: udpate to 2.6.0W. Michael Petullo2021-12-13
| | | | | | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | | vips: update to 8.12.1W. Michael Petullo2021-12-13
| |/ / / |/| | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | krb5: update to 1.19.2W. Michael Petullo2021-12-13
| | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | libsoup: update to 2.74.2W. Michael Petullo2021-12-12
| | | | | | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | | crowdsec-firewall-bouncer: update to 0.0.18Kerma Gérald2021-12-12
| | | | | | | | | | | | | | | | | | | | | | | | Update to upstream release 0.0.18 Signed-off-by: Kerma Gérald <gandalf@gk2.net>
* | | | Merge pull request #17309 from mhei/mmc-utils-updateMichael Heimpold2021-12-12
|\ \ \ \ | | | | | | | | | | mmc-utils: update to latest git head
| * | | | mmc-utils: update to latest git headMichael Heimpold2021-12-11
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | Merge pull request #17307 from mhei/open-plc-utils-updateMichael Heimpold2021-12-12
|\ \ \ \ \ | | | | | | | | | | | | open-plc-utils: update to latest upstream version
| * | | | | open-plc-utils: update to latest upstream versionMichael Heimpold2021-12-11
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | This improves the chipset reporting in some command line tools. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | Merge pull request #17296 from mhei/drop-php7Michael Heimpold2021-12-12
|\ \ \ \ \ | | | | | | | | | | | | php7/php7-pecl-*: drop PHP7 packages
| * | | | | php7: drop packageMichael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Active support for PHP 7.4 branch ended a few days ago. Since we have PHP 8.x in the repository for a while and we migrated all PECL extension packages already, let's focus on that newer version and drop support for 7.4. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | php7-pecl-propro: drop packageMichael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The functionality of this package - or at least similar one - was meanwhile included in PHP8. This package was mostly included as dependency for HTTP PECL package, so it is not needed anymore and thus can be dropped. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | php7-pecl-libevent: drop packageMichael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This package is not compatible with PHP8 and seems to be not maintained upstream anymore. Let's drop it. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | php7-pecl-sodium: migrate package to php8-pecl-sodiumMichael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | php7-pecl-redis: migrate package to php8-pecl-redisMichael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | php7-pecl-raphf: migrate package to php8-pecl-raphfMichael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | php7-pecl-mcrypt: migrate package to php8-pecl-mcryptMichael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | php7-pecl-krb5: migrate package to php8-pecl-krb5Michael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | php7-pecl-imagick: migrate package to php8-pecl-imagickMichael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | php7-pecl-http: migrate package to php8-pecl-httpMichael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only a newer version of upstream includes support for PHP8, so while migrating we need to update to latest upstream version. We also need to adjust dependencies since JSON is now always integrated not longer available as dedicated package. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
| * | | | | php7-pecl-dio: migrate package to php8-pecl-dioMichael Heimpold2021-12-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This package is compatible with php8, so let's migrate it. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | | | Merge pull request #17205 from cotequeiroz/pythonJosef Schlehofer2021-12-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | apparmor,domoticz: use $(PYTHON3_VERSION) instead of hardcoding it in the Makefile
| * | | | | | domoticz: remove python3.9 linking hackEneas U de Queiroz2021-11-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adding -lpython3.9 to TARGET_LDFLAGS is not needed now that domoticz has proper support for it. Fixes: edfb91f33 ("domoticz: update to 2021.1") Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
| * | | | | | apparmor: use $(PYTHON3_VERSION)Eneas U de Queiroz2021-11-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of hardcoding the current python version, use PYTHON3_VERSION from the python package. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | | | | | | v2rayA: Update to 1.5.5Tianling Shen2021-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Breaking changes: The database has been replaced with boltdb to try to solve the problem of database corruption. Note that the data will not be migrated, but the previous data will be retained. If you need the previous data, just downgrade v2rayA (v1.5.4). Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | | | | | bossa: fix fpic compilationNick Hainke2021-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: #17287 ("bossa: recompile with -fPIC") Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | | | | lighttpd: update to lighttpd 1.4.63 release hashGlenn Strauss2021-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Glenn Strauss <gstrauss@gluelogic.com>
* | | | | | | lighttpd: update to lighttpd 1.4.62 release hashGlenn Strauss2021-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | depend on libpcre2 instead of libpcre also remove patches incorporated upstream into lighttpd 1.4.62 Signed-off-by: Glenn Strauss <gstrauss@gluelogic.com>
* | | | | | | ldns: update to 1.8.1Eric Luehrsen2021-12-11
| |_|/ / / / |/| | | | | | | | | | | | | | | | | Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>
* | | | | | usteer: update to latest git headDavid Bauer2021-12-11
| |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8e7b1ff ubus: skip current node for transition candidate list e51ea7a node: move roam-events to dedicated struct edbe7d4 node: skip neighbors exceeding assoc-limit Signed-off-by: David Bauer <mail@david-bauer.net>
* | | | | Merge pull request #17297 from nxhack/node_14182Josef Schlehofer2021-12-10
|\ \ \ \ \ | | | | | | | | | | | | node: bump to 14.18.2
| * | | | | node: bump to 14.18.2Hirokazu MORIKAWA2021-12-10
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Update to v14.18.2 Remove unneeded c-ares patches Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* / | | | unbound: update to 1.14.0Eric Luehrsen2021-12-10
|/ / / / | | | | | | | | | | | | Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>