aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* python3-django-cors-headers: update version to 3.3.0Peter Stadler2020-05-25
| | | | Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
* miniupnpd: improve hotplug & interface handlingKevin Darbyshire-Bryant2020-05-25
| | | | | | | | | | | | | | | | | | The existing interface selection/detection code was incomprehensible at worst and convoluted at best. The uci config file suggested it understood an external ipv6 interface but in reality the init script took no notice. Re-work it so it is at least comprehendible and takes notice of ipv6 interface details if specified. Update the hotplug script to use the same interface selection/detection code as the init script and take note of ipv6 interface selection, only restarting miniupnpd on interface up events and only if that interface isn't already known (for that ip class) by miniupnpd. For me this has solved numerous 'flaky' startup problems, especially with regard to ipv6. Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
* collectd: sqm_collect: tidy interval string handlingKevin Darbyshire-Bryant2020-05-25
| | | | Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
* Merge pull request #12289 from neheb/GIFRosen Penev2020-05-25
|\ | | | | giflib: remove host build
| * giflib: remove host buildRosen Penev2020-05-24
| | | | | | | | | | | | It's completely unused and breaks under CentOS7. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | Merge pull request #12302 from aleksander0m/aleksander/mm-mtuRosen Penev2020-05-25
|\ \ | | | | | | modemmanager: set interface MTU based on bearer settings
| * | modemmanager: set interface MTU based on bearer settingsAleksander Morgado2020-05-25
| | | | | | | | | | | | | | | | | | | | | | | | Using the same method used by other protocol handlers like uqmi. Fixes https://github.com/openwrt/packages/issues/11383 Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
* | | Merge pull request #12301 from ja-pa/clamav-security-updateHannu Nyman2020-05-25
|\ \ \ | | | | | | | | clamav: update to version 0.102.3 (security fix)
| * | | clamav: update to version 0.102.3 (security fix)Jan Pavlinec2020-05-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: CVE-2020-3341 CVE-2020-3327 Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | Merge pull request #12272 from neheb/psqlDaniel Golle2020-05-25
|\ \ \ \ | |_|/ / |/| | | postgresql: fix compilation with GCC4
| * | | postgresql: fix compilation with GCC4Rosen Penev2020-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The minimum version of GCC according to prereq-build.mk is 4.8 which defaults to gnu89. This breaks the host build when the host GCC is less than 5, which defaults to gnu99. Add a simple CFLAG to fix. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | collectd: sqm_collectd: improve error handlingKevin Darbyshire-Bryant2020-05-25
| |/ / |/| | | | | | | | Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
* | | Merge pull request #12288 from neheb/tasnNikos Mavrogiannopoulos2020-05-25
|\ \ \ | | | | | | | | libtasn1: fix host build under old GCC
| * | | libtasn1: fix host build under old GCCRosen Penev2020-05-24
| | |/ | |/| | | | | | | | | | | | | | | | prereq-build.mk says that GCC 4.8 and above is supported. GCC 4.8 defaults to std=gnu89, breaking the build. GCC5 defaults to gnu99. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | Merge pull request #12285 from wt/update_sdk_urlRosen Penev2020-05-24
|\ \ \ | | | | | | | | Update the SDK URL in the README.
| * | | Update the SDK URL in the README.Wren Turkal2020-05-24
| | | | | | | | | | | | | | | | Signed-off-by: Wren Turkal <wt@penguintechs.org>
* | | | Merge pull request #12287 from neheb/protoRosen Penev2020-05-24
|\ \ \ \ | | | | | | | | | | protobuf-c: fix host build on GCC4
| * | | | protobuf-c: fix host build on GCC4Rosen Penev2020-05-24
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | prereq-build.mk says that GCC 4.8 and above is supported. GCC 4.8 does not default to gnu++11. This fixes compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #12261 from sartura/sqlite/security-bumpRosen Penev2020-05-24
|\ \ \ \ | |/ / / |/| | | sqlite3: update to version 3.32.0
| * | | sqlite3: update to version 3.32.0Robert Marko2020-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update SQLite to version 3.32.0 to mitigate a security vulnerability. This mitigates CVE-2020-11656 https://nvd.nist.gov/vuln/detail/CVE-2020-11656 Signed-off-by: Robert Marko <robert.marko@sartura.hr>
* | | | Merge pull request #12077 from peter-stadler/uwsgiRosen Penev2020-05-24
|\ \ \ \ | | | | | | | | | | uwsgi: make luci-webui single threaded and log more
| * | | | uwsgi: make luci-webui single threaded and log morePeter Stadler2020-05-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | More threads can lead to a problem if a luci-app makes a fork (e.g. for executing a command). Parallelism is still achieved by using `processes = 3`. Make the log more verbose by filtering only standard messages for start/stop/reload out (leaving one line each). Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
* | | | | Merge pull request #12284 from BKPepe/msmtp-updateRosen Penev2020-05-24
|\ \ \ \ \ | | | | | | | | | | | | msmtp: update to version 1.8.10
| * | | | | msmtp: update to version 1.8.10Josef Schlehofer2020-05-24
| | |_|/ / | |/| | | | | | | | | | | | | Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | | Merge pull request #12184 from peter-stadler/nginx-luciRosen Penev2020-05-24
|\ \ \ \ \ | |/ / / / |/| | | | nginx: set log level to crit for luci-static
| * | | | nginx: set log level to crit for luci-staticPeter Stadler2020-05-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do not write errors for inexistent files to the system log. Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
* | | | | adblock: limit domain name lengthDirk Brenken2020-05-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * limit domain name length to max. 63 chars to fix issues with energized sources Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | nano: update to 4.9.3Hannu Nyman2020-05-24
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | Update nano version to 4.9.3 Minor bugfix release. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | Merge pull request #12159 from peter-stadler/nginx-smpRosen Penev2020-05-23
|\ \ \ \ | |_|_|/ |/| | | nginx: do not reduce max processes
| * | | nginx: do not reduce max processesPeter Stadler2020-05-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the upstream value for NGX_MAX_PROCESSES (=1024) again. So it is safe to use `worker_processes auto;` (which sets it to the number of CPUs). Also use this directive in the conf instead of calculating the number in the init and passing it as argument. Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
* | | | Merge pull request #12271 from neheb/taglib2Rosen Penev2020-05-23
|\ \ \ \ | | | | | | | | | | taglib: update to 1.12-beta-1
| * | | | taglib: update to 1.12-beta-1Rosen Penev2020-05-23
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems 1.11.1 is old and has CVEs. Removed boost hack since upstream removed boost support. Removed outdated InstallDev hacks. Added PKG_CPE_ID. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #12270 from neheb/taglibRosen Penev2020-05-23
|\ \ \ \ | | | | | | | | | | taglib: fix taglib-config paths
| * | | | taglib: fix taglib-config pathsRosen Penev2020-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems gerbera uses this instead of pkgconfig. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #12258 from neheb/taglibRosen Penev2020-05-23
|\| | | | | | | | | | | | | | gerbera: add taglib support
| * | | | gerbera: add taglib supportRosen Penev2020-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Gives audio info support. Signed-off-by: Rosen Penev <rosenp@gmail.com>
| * | | | taglib: addRosen Penev2020-05-23
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #12265 from cotequeiroz/lxc_mips16Rosen Penev2020-05-23
|\ \ \ \ \ | | | | | | | | | | | | lxc: use -minterlink-mips16 only with USE_MIPS16
| * | | | | lxc: use -minterlink-mips16 only with USE_MIPS16Eneas U de Queiroz2020-05-23
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | The flag is either not supported or not needed unless there's mixed mips/mips16 code. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | | | | Merge pull request #12257 from lucize/nssfixRosen Penev2020-05-23
|\ \ \ \ \ | | | | | | | | | | | | nss: fix build for mips64
| * | | | | nss: fix build for mips64Lucian Cristian2020-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | disable arm32_neon on unsupported target Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | | | | adblock: release 4.0.5Dirk Brenken2020-05-23
| |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * update energized source urls, add ultimate variant * switch shalla source to http (invalid server certificate) * add another stevenblack source variant (normal / porn) * small cornercase fixes * update readme Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | Merge pull request #12243 from PolynomialDivision/feature/update_dawn_latestRosen Penev2020-05-23
|\ \ \ \ \ | |_|/ / / |/| | | | dawn: update to latest version
| * | | | dawn: update to latest versionNick Hainke2020-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Includes: - dawn_iwinfo: fix whitespace - dawn_iwinfo: indentation - dawn_iwinfo: iwinfo_finish(); - dawn_iwinfo: filter out global interface - dawn_iwinfo: release iwinfo after usage - tcpsocket: fix port print - github: set CONFIG_SRC_TREE_OVERRIDE in actions CI - github: fix link to dawn source - github: use v2 for checkout action - github: add GitHub Actions CI - ubus: only update TCP socket list when using TCP connections - add notice that full wpad is requirement - fix link to luci-app-dawn - update readme and install instructions Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | | | Merge pull request #12241 from neheb/lxcRosen Penev2020-05-22
|\ \ \ \ \ | |_|/ / / |/| | | | lxc fixes
| * | | | lxc: group everything under lxc menuEneas U de Queiroz2020-05-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes every lxc-* package depend on lxc so that they are grouped under the lxc menu. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
| * | | | lxc: don't build for ARCRosen Penev2020-05-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Similar to libseccomp, ARC is completely unsupported. Signed-off-by: Rosen Penev <rosenp@gmail.com>
| * | | | lxc: cleanup Makefile and outdated configure optionsRosen Penev2020-05-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added PKG_NO_MIPS16 as MIPS16 is no longer supported. Signed-off-by: Rosen Penev <rosenp@gmail.com>
| * | | | lxc: remove luaRosen Penev2020-05-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Lua support seems to be gone from LXC 4. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #12252 from BKPepe/knot-disable-libcap-ngRosen Penev2020-05-22
|\ \ \ \ \ | |/ / / / |/| | | | knot: disable libcap-ng