Commit Graph

9695 Commits

Author SHA1 Message Date
Pavel Kubelun 70a7f396ca minidlna: decrease minidlna log verbosity
Some clients do not close connections properly or do not keep
it alive, so each time the connection times out a corresponding
log entry is written into a log. These messages may spam the log
really hard.
This may be an issue if log is placed on internal flash - it may
prematurely wear a flash chip. This also prevents hdd from spinning
down if the log is located on hdd and the dlna capable tv is online.

Set the log level to "error" by default.

MAN:
Set this to change the verbosity of the information that is logged
each  section can use a different level: off, fatal, error, warn,
info, or debug
Example
log_level=general,artwork,database,inotify,scanner,metadata,http,ssdp,tivo=warn

Signed-off-by: Pavel Kubelun <be.dissent@gmail.com>
2018-02-17 11:29:45 -05:00
Hannu Nyman 255f4d2f99
Merge pull request #4928 from p-wassi/smstools
utils/smstools3: update to 3.1.21
2018-02-04 10:13:35 +02:00
Hannu Nyman f970e33b49
Merge pull request #5088 from hbl0307106015/libtalloc
libtalloc: bump to latest version
2018-02-04 10:11:36 +02:00
Hannu Nyman 69d27a09aa
Merge pull request #5558 from Andy2244/acl-update
acl: update to 2018-01-21
2018-02-04 10:04:31 +02:00
Andy Walsh 016094eba8 acl: update to 2018-01-21
Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2018-02-04 00:02:20 +01:00
Jiri Slachta a949b9f0af
Merge pull request #5565 from micmac1/libssh2-master
libssh2: Make crypto backends selectable
2018-02-03 17:44:23 +01:00
Hannu Nyman a0d14534d1 nano: update to 2.9.3
update nano to 2.9.3

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2018-02-03 15:56:31 +02:00
Sebastian Kemper 6b3f140c0c libssh2: Make crypto backends selectable
This adds a choice to menuselect so people can select if they would like
to compile libssh2 against mbedtls (default) or openssl.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-02-03 13:26:18 +01:00
Hannu Nyman f85ffb54f1
Merge pull request #5560 from neheb/port-trans
transmission: Fix port test + other fixes.
2018-02-02 23:42:53 +02:00
Stijn Tintel 8941bd7869
Merge pull request #5272 from dedeckeh/pr-strongswan-1
Fix ipsec reload and extend uci
2018-02-02 18:48:02 +01:00
Yousong Zhou 805c6b0ecf shadowsocks-libev: remove unnecessary curly braces
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2018-02-02 17:26:53 +08:00
Yousong Zhou 4d211674ce shadowsocks-libev: bump to version 3.1.3
Notable changes since 3.1.2

    afce1b3 eliminate timered delay between handshake and data stream #1572
    539bf6e sni in redir removed and no disable_sni option #1876
    1d94442..29ff5d3 udprelay fix (no idea what's the problem...) #1883

Now disable_sni=true is the default.  Existing uci configs setting it
will be a nop

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2018-02-02 17:24:45 +08:00
Hans Dedecker 25757a96fa sqlite: remove gratuitos empty line
Remove gratuitos empty line introduced by accident in commit aac84ff

Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
2018-02-02 08:52:12 +01:00
Rosen Penev e0a5ed9f76 transmission: Fix port test + other fixes.
Ran the transmission init script through shellcheck and fixed errors. Also cleaned up a bit.

Removed ionice support. Will reintroduce if procd adds support.

Removed config_overwrite debugging variable. No need for it.

Enabled TLS verify by default. Added a dependancy to ca-bundle as a result. This is a default in current trunk.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-02-01 20:27:07 -08:00
champtar 367a1c7b89
Merge pull request #5128 from champtar/prometheus
prometheus-node-exporter-lua: make it modular and faster
2018-02-01 07:58:55 -08:00
dibdot 5040f5721f
Merge pull request #5547 from dibdot/adblock
adblock: update 3.5.0
2018-01-31 20:28:29 +01:00
champtar 4b918475e5
Merge pull request #5543 from dedeckeh/pr-sqlite
sqlite3: add config options to disable FTS3 and RTREE
2018-01-31 10:56:33 -08:00
Hans Dedecker aac84ff03d sqlite3: add config options to disable FTS3 and RTREE
The full-text search engine version 3 (FTS3) and R*Tree (RTREE) modules are
enabled by default in sqlite3; add config options which allow to disable these
sqlite lib modules.
Disabling FTS3 reduces the so file with 475KB while disabling RTREE reduces
the so file with 121KB on x86 architecture.

Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
2018-01-31 17:19:42 +01:00
champtar 77dc2ad8e5
Merge pull request #4370 from val-kulkov/opendkim-package
opendkim: DKIM signing and verifying emails
2018-01-31 07:55:03 -08:00
Val Kulkov 928ae83f19 opendkim: DKIM signing and verifying emails
The OpenDKIM package provides a service for signing and verifying
DomainKeys Identified Mail (DKIM) signatures. OpenDKIM consists of
a library that implements the DKIM service and a milter-based
filter application that can plug in to any milter-aware MTA, such
as Postfix or Sendmail, to provide that service to sufficiently
recent sendmail MTAs and other MTAs that support the milter
protocol.

This submission provides three new packages:
- libopendkim, a library for signing and verifying DKIM signatures,
- opendkim, the server application and the genkey script,
- opendkim-tools, a set of tools for configuring and testing OpenDKIM.

While at it, add PKG_BUILD_DEPENDS statement to sendmail's Makefile.
Travis CI buildbot sometimes fails to compile libopenssl before
starting to build sendmail. Since sendmail depends on libopenssl, the
whole Travis CI build process fails. Setting PKG_BUILD_DEPENDS
to "openssl", the directory name of libopenssl's Makefile, fixes the
problem.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2018-01-31 10:07:07 -05:00
Dirk Brenken c44e40809e adblock: update 3.5.0
* major performance boost: add a flexible 'Download Queue' to handle
  downloads & list processing in parallel, default queue size is '4',
  you can raise this e.g. to '8' or '16' to get it really fast
* replace former 'whitelist mode': the new 'Jail' option
  builds an additional 'adb_list.jail' list in parallel
  which can be used manually for guest wifi or kidsafe configurations
* regex parser & query function now fully support IDN domains
  with non-ASCII characters
* add error handling in tld compression,
  to handle OOM conditions better
* adblock.notify sends now html emails,
  to get a better look & feel, even on mobile devices
* add czech regional blocklist maintained by turris omnia users
* LuCI: Support new 'Download Queue' & 'Jail' options
* LuCI: fix field width in "Runtime Information" section

Signed-off-by: Dirk Brenken <dev@brenken.org>
2018-01-31 13:13:32 +01:00
Hannu Nyman e98671d94c
Merge pull request #5546 from mstorchak/rsync
rsync: update to 3.1.3
2018-01-31 14:06:44 +02:00
Maxim Storchak c2743dee80 rsync: update to 3.1.3
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2018-01-31 12:45:08 +02:00
Nikos Mavrogiannopoulos 072277974c p11-kit: bumped release ver
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2018-01-30 20:36:20 +01:00
Nikos Mavrogiannopoulos 4c7a0c311b p11-kit: disable trust module
This allows prevents build error due to trust-paths not being
specified. The trust module was not being used in openwrt.

Resolves #5528

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2018-01-30 20:35:36 +01:00
Jiri Slachta 485eb32884
Merge pull request #5540 from micmac1/jiri-master
libssh2, libxslt, tiff: Version bumps
2018-01-30 20:01:47 +01:00
Hannu Nyman e81136758d
Merge pull request #5530 from philenotfound/mutt-bump
mutt: bump to version 1.9.3
2018-01-30 16:43:39 +02:00
Sebastian Kemper f48dade356 tiff: version bump
- bump version to 4.0.9
- add patches copied from Debian for CVE-2017-18013 and CVE-2017-9935

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-01-30 15:00:02 +01:00
Sebastian Kemper 0b1ee9ed44 libxslt: version bump
- version bump to 1.1.32
- add --disable-silent-rules for verbose build output

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-01-30 14:57:25 +01:00
Sebastian Kemper fd953af246 libssh2: version bump
- Bump version to 1.8.0
- Switch from openssl crypto backend to mbedtls (the package is a lot
  smaller size-wise compared to openssl and libgcrypt)
- mbedtls support was added in 1.8.0 release. Unfortunately the detection
  doesn't work out of the box, so a patch is needed that fixes an m4
  script. For that reason autoreconf must be run.
- Add --with-libz-prefix as without it zlib is not detected (currently
  there is the zlib dependency but libssh2 never actually links to it).
- Add --disable-silent-rules to get verbose build output.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-01-30 14:54:41 +01:00
Phil Eichinger 85445578f6 mutt: bump to version 1.9.3
Signed-off-by: Phil Eichinger <phil@zankapfel.net>
2018-01-29 17:03:11 +01:00
Hannu Nyman dfcb2ca77c
Merge pull request #5527 from neheb/tra-upnp
transmission: Use external libminiupnpc instead of internal.
2018-01-29 13:54:28 +02:00
Yousong Zhou f6b24878a0 pixiewps: bump to version 1.4.2
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2018-01-29 19:12:24 +08:00
David Mora bbab28385b stubby: Initial commit of openwrt package for stubby daemon
(This daemon utilizes the getdns library)

Signed-off-by: David Mora <iamperson347+public@gmail.com>
2018-01-29 10:45:16 +00:00
David Mora 3e56158e82 getdns: Initial commit of openwrt package for getdns library
Signed-off-by: David Mora <iamperson347+public@gmail.com>
2018-01-29 10:45:16 +00:00
Rosen Penev 1e8905176d transmission: Use external libminiupnpc instead of internal.
The original patch that forced internal usage hid an actual issue in the build system. Replace patch with upstream one.

Also reorganized the Makefile a bit and removed some cruft.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-01-28 13:13:40 -08:00
Hannu Nyman b3710f578a
Merge pull request #5526 from neheb/mbedtls
transmission: Update to 2.93 + fixes [v2]
2018-01-28 20:51:48 +02:00
Rosen Penev 1d36e57072 transmission: Update to 2.93 + fixes [v2]
DNS rebinding protection introduced a new option. Use it to disable it as OpenWrt does not need it.

Adjusted Makefile to use the release instead of a git version. Also cleaned up and added LICENSE entries.

Eliminated useless patches. The syslog one actually doesn't log much. No need to mask the os release anymore either.

Added group entry to init script. Otherwise files end up being owned by user:root which is bogus.

v2: Previous maintainer relied on git version of Transmission for mbedtls support. Backport it to the stable instead.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-01-28 10:04:19 -08:00
Peter Wagner 856c89082d git: update to 2.16.1
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2018-01-28 18:54:34 +01:00
Hannu Nyman 3b3fed7fb8 Revert "transmission: Update to 2.93 + fixes"
This reverts commit 606f615048.

The commit broke the patches:
> Applying ./patches/020-use-internal-miniupnp.patch using plaintext:
> patching file configure.ac
> Hunk #1 succeeded at 378 (offset -8 lines).
>
> Applying ./patches/040-fix-for-mbedtls.patch using plaintext:
> patching file configure.ac
> Hunk #1 FAILED at 154.
> 1 out of 1 hunk FAILED -- saving rejects to file configure.ac.rej
2018-01-28 19:09:38 +02:00
Hannu Nyman 5ea2e197e3
Merge pull request #5524 from Andy2244/krb5-update
krb5: update to 1.16 and samba4 fixes
2018-01-28 17:38:20 +02:00
Andy Walsh 2538992f31
krb5: add PKG_USE_MIPS16:=0
Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2018-01-28 16:01:39 +01:00
Andy Walsh 6ce614c637 krb5: update to 1.16 and samba4 fixes
Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2018-01-28 15:24:25 +01:00
Hannu Nyman 37e06af64a
Merge pull request #5519 from Andy2244/libtirpc-add
libtirpc: add package v1.0.2
2018-01-28 11:58:56 +02:00
Hannu Nyman 7d7adf498c
Merge pull request #5523 from wvdakker/master
Shorewall: Bump to version 5.1.11.1
2018-01-28 11:57:20 +02:00
Hannu Nyman 0f43d58d64
Merge pull request #5521 from kissg1988/django-statici18n
django-statici18n: update to 1.6.1
2018-01-28 11:50:27 +02:00
W. van den Akker 57ddfa8abc
Shorewall6: Bump to version 5.1.11.1
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
2018-01-28 10:34:21 +01:00
W. van den Akker 041eae8812
Shorewall6-lite: Bump to version 5.1.11.1
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
2018-01-28 10:27:07 +01:00
W. van den Akker 64b63a42ca
Shorewall: Bump to version 5.1.11.1
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
2018-01-28 10:25:29 +01:00
W. van den Akker 555aa23f9b
Shorewall-lite: Bump to version 5.1.11.1
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
2018-01-28 10:24:53 +01:00