Commit Graph

25662 Commits

Author SHA1 Message Date
Paul Spooren 6527d65b9b auc: remove superfluous variables
Remove parsing of data which is not used within `auc`. Later iterations
may use these but they can be gradually added whenever needed.

Also remove HTTP code handling of error codes no longer used by the
backend. Early iterations of the server where infinitely complex to
figure out created images and announce them to clients but ever since
everything is stored in JSON, things got better (aka simpler).

If a package is missing on the upstream server, color it in red.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-10-08 22:52:02 +01:00
Moritz Warning 078bd4189c zerotier: add option to copy config
Signed-off-by: Moritz Warning <moritzwarning@web.de>
2021-10-08 09:51:03 -07:00
Eneas U de Queiroz 1f91016ac3 gcc: enable parallel building
Even though PKG_BUILD_PARALLEL is set for the package, the package calls
$(MAKE) without $(PKG_JOBS), so it was always built with only one job.

Fix this by adding $(PKG_JOBS) to the $(MAKE) call, and calling make
install only after make all is finished.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2021-10-08 09:50:29 -07:00
Matthew Hagan 19877a952d mutt: add smtp, sasl, gnutls, menuconfig options
Compile tested: bcm53xx, MX65, master

Add support for SMTP, SASL, GnuTLS and POP, IMAP, OpenSSL in the
menuconfig. The SMTP/SASL configurable was required to successfully
send email on GMail. Tested separately using OpenSSL and GnuTLS.

Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
2021-10-08 09:49:44 -07:00
Christian Lachner 7b422274fa haproxy: Update HAProxy to v2.4.7
- Update haproxy download URL and hash
- Make build-target and parameters dependant on configured c-library
- Removed duplicate build-parameters

Signed-off-by: Christian Lachner <gladiac@gmail.com>
2021-10-08 09:48:19 -07:00
Rosen Penev 0ce3a961d3 hiredis: fix compilation with macOS
uname is used to test the host OS. Override it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-08 09:46:38 -07:00
Florian Eckert a075c2bc43 acpica-unix: add additional acpi programms
This change adds the missing acpi programms for on target acpi development.

* acpibin
* acpiexamples
* acpiexec
* acpihelp
* acpisrc
* acpixtract
* iasl

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2021-10-08 09:46:07 -07:00
René van Dorst 077fed709a tang: Fix installation error, missing fi statement
root@OpenWrt:/# opkg install tang
Package tang (10-3) installed in root is up to date.
Configuring tang.
//usr/lib/opkg/info/tang.postinst: /usr/lib/opkg/info/tang.postinst-pkg: line 9: syntax error: unexpected end of file (expecting "fi")
Collected errors:
 * pkg_run_script: package "tang" postinst script returned status 2.
 * opkg_configure: tang.postinst returned 2.

Fix commit d49c79b76b tang: remove outdated
 key handling.

if statement is not closed.

Signed-off-by: René van Dorst <opensource@vdorst.com>
2021-10-08 09:45:12 -07:00
Damiano Renfer ae92cdda13 dnscrypt-proxy: update maintainer email address
Signed-off-by: Damiano Renfer <x9w2n7xnu@relay.firefox.com>
2021-10-08 09:44:27 -07:00
Stan Grishin 6c0f48ea21
Merge pull request #16828 from stangri/master-simple-adblock
simple-adblock: delete obsolete iptables-dependent function
2021-10-08 09:44:15 -07:00
Rosen Penev 215a4f96ec beanstald: fix compilation under macOS
Makefile tests the host system, not what it compiles to. Override.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-08 09:43:28 -07:00
Rosen Penev 7a7d1a5d2c ccid: fix compilation under macOS
Remove a bad uname check.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-08 09:43:07 -07:00
Rosen Penev 11fe454c8a openzwave: fix compilation with macOS
The Makefiles test for host uname. Override it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-08 09:42:41 -07:00
Alexandru Ardelean 589c6bb2de python-pytz: bump to version 2021.3
And switch to AUTORELEASE for PKG_RELEASE.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-10-08 09:41:02 -07:00
Alexandru Ardelean 0dd482ff5b
Merge pull request #16823 from cotequeiroz/openblas-mips
openblas: fix compilation with mips x4k series CPU
2021-10-07 10:20:14 +03:00
Michal Vasilek 5fa4177583 docker: update to 20.10.9
* switch to AUTORELEASE

Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
2021-10-06 22:43:23 -07:00
Michal Vasilek 70c34ac4f7 dockerd: update to 20.10.9
* switch to AUTORELEASE
* fixes CVE-2021-41089

Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
2021-10-06 22:43:23 -07:00
Daniel Golle 2e17cb9a1b
Mako: add python markup library
Mako is needed for some packages to build.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-10-07 00:20:37 +01:00
Daniel Golle 45951a9fc8
libdrm: update to version 2.4.107
Change to select features by default.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-10-07 00:20:31 +01:00
Stan Grishin 94e53c0b3b simple-adblock: delete obsolete iptables-dependent function
Signed-off-by: Stan Grishin <stangri@melmac.net>
2021-10-06 22:40:00 +00:00
Eneas U de Queiroz bf99bfbadb
openblas: avoid using make -j when building
Set MAKE_NB_JOBS=-1 so that no -j parameter is passed to make when
building the package, honoring the parent make's setting.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2021-10-06 17:09:10 -03:00
Leo Soares 9c4d79519c autossh: fix procd env issue
This commit fixes an issue where the `AUTOSSH_GATETIME` is not available in the `procd`  environment which gets overwritten by the second `procd_set_param env` call.
It now calls the `procd_set_param env` once with the two variables, instead of twice.

Signed-off-by: Leo Soares <leo@hyper.ag>
2021-10-06 12:30:45 -07:00
Hannu Nyman 38143e6f8b nano: update to 5.9
Update nano editor to version 5.9.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2021-10-06 21:47:27 +03:00
Eneas U de Queiroz 7ff29af4fd
openblas: fix compilation with mips x4k series CPU
Anything later than MIPS 24k can run MIPS 24k code.  Set OPENBLAS_TARGET
to MIPS24K in those cases.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2021-10-06 15:29:47 -03:00
Kevin Darbyshire-Bryant 9db12bbaff collectd: sqm_collect: optimise parent search
There can be only 1 parent process ID, so as soon as we find it, print
it and exit - there's no point searching any of the following lines

Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
2021-10-06 12:13:11 +01:00
Rosen Penev 6c73457c09 vim: fix compilation with macOS
Upstream backport.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-05 17:33:28 -07:00
Rosen Penev 6713d9e662 libdnet: fix compilation under macOS
configure checks the host system not the target one. Override these
variables.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-05 17:33:14 -07:00
Florian Eckert da42cf7071
Merge pull request #16792 from damianorenfer/master
ddns-scripts: add infomaniak.com provider
2021-10-05 08:50:01 +02:00
Rosen Penev 2661d615db net-snmp: remove uClibc reference in patch
uClibc is no longer used in OpenWrt. It's pointless anyway. uClibc
defines __GLIBC__.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-05 02:01:39 +03:00
Rosen Penev 9aa6d9b9ac net-snmp: update to 5.9.1
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
[remove irrelevant part from commit message after splitting changes]
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2021-10-05 02:00:56 +03:00
Glenn Strauss 07446a73ca lighttpd: update to lighttpd 1.4.60 release hash
also remove patches incorporated upstream into lighttpd 1.4.60

Signed-off-by: Glenn Strauss <gstrauss@gluelogic.com>
2021-10-04 09:27:16 -07:00
Alexandru Ardelean 1e22ca7ce1 openblas: bump to 0.3.18
Drops patch, which was upstreamed.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-10-04 08:46:11 -07:00
Damiano Renfer 93b694aaa3
ddns-scripts: add infomaniak.com provider
Signed-off-by: Damiano Renfer <x9w2n7xnu@relay.firefox.com>
2021-10-04 11:03:07 +02:00
Dirk Brenken 9024ce70d5
Merge pull request #16785 from ayufan-research/master
travelmate: support meta-refresh with single-quote
2021-10-04 10:10:28 +02:00
Kamil Trzciński 2cbd9a2eb1 travelmate: support meta-refresh with single-quote
Currently `travelmate` only support `<meta` tag
if it contains `"`. This updates `travelmate.sh` to support
`'` as well.

```html
<meta...content='1; url=
```

Signed-off-by: Kamil Trzciński <ayufan@ayufan.eu>
2021-10-04 10:37:51 +03:00
Vladimir Ulrich 00f1c78a64 zoneinfo: Updated to the latest release
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2021-10-04 09:30:01 +03:00
Etienne Champetier 253e3f558c htop: explicitly disable some build options
Since 3.1.0 delayacct option is enabled if the needed dependencies
are detected, it was previously disabled.
Sensors also check for dependency so we need to explicitly
disable it when not enabled.

Fixes 5f91672055

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2021-10-03 22:46:07 -04:00
Gerard Ryan baf556f0de cache-domains: Fixed remote script usage change
* Removed all unnecessary files after configuration
* Reduced code duplication
* Changed to symlinking config instead of copying

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2021-10-03 16:43:26 -07:00
Liangbin Lian 47d9e21104 zerotier: fix cross compile in macOS
zerotier's Makefile use `uname` to detect target when cross compile
uname should always be 'linux'

Signed-off-by: Liangbin Lian <jjm2473@gmail.com>
2021-10-03 16:36:45 -07:00
Michael Heimpold 1e6b05fd39
Merge pull request #16786 from mhei/mmc-utils-update
mmc-utils: update to latest upstream revision
2021-10-03 23:49:07 +02:00
Jan Hoffmann 73fff7a4ed vnstat2: update to version 2.8
Signed-off-by: Jan Hoffmann <jan@3e8.eu>
2021-10-03 23:40:41 +02:00
Hannu Nyman 5f91672055 htop: update to 3.1.0
Update htop to versio 3.1.0

* Adjust Makefile configuration options to update
* Avoid libcap dependency
* Backport post-release fix for old automake

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2021-10-03 14:11:57 -04:00
Hannu Nyman 006c6c70b5 haveged: update to 1.9.15
Update haveged to version 1.9.15.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2021-10-03 21:05:06 +03:00
Tianling Shen d48b22fb90 v2raya: Update to 1.5.4
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
2021-10-02 16:24:53 -07:00
Kevin Darbyshire-Bryant 8322059f01 collectd: sqm_collect: handle being orphaned
If the master collectd instance gets shut down in an uncontrolled
manner (crashes!) then sqm_collect scripts will be left orphaned and
will run forever.

Modify script to check if it still has a parent and if not, exit.

Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
2021-10-02 20:37:08 +01:00
Alexandru Ardelean 401291ba7e libwebp: fix webpmux lib name for cmake linking
When using CMake the `<prefix>/usr/share/WebP/cmake/WebPConfig.cmake` gets
used to get the names of the libraries to link against.

Since version 1.2.1 of libwebp, libwebpmux is on by default.
This causes a linker error because the linker arg should be `-lwebpmux`
instead of `-llibwebpmux`.

This is easily fixable by correcting the generation of the WebPConfig.cmake
file to append `webpmux` when this lib is enabled.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-10-02 19:55:07 +01:00
Tianling Shen 86e26a0c3b yq: Update to 4.13.3
Fixes: CVE-2021-33196

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
2021-10-02 18:14:47 +02:00
Michael Heimpold 7b61ab9fce mmc-utils: update to latest upstream revision
While at, switch to offical repo URL, adjust license tag to newer style
and remove obsolete/already mainlined patches.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-10-02 13:41:11 +02:00
Alexandru Ardelean 67be30e082
Merge pull request #16715 from neheb/FIO
libfido2: update to 1.8.0
2021-10-02 10:54:01 +03:00
Rosen Penev 3bddf93d3a libfido2: update to 1.8.0
Switch to AUTORELEASE for simplicity.

Remove no longer necessary warning fixes.

Add now needed zlib dependency.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-01 16:36:33 -07:00