Commit Graph

10270 Commits

Author SHA1 Message Date
Hannu Nyman d9c5440adc
Merge pull request #5863 from p-wassi/gpsd
utils/gpsd: update to 3.17
2018-04-23 16:42:40 +03:00
Ted Hess 47d18a0d08
Merge pull request #5955 from antonlacon/ffmpeg
ffmpeg: libffmpeg-full to lgpl; include fdk-aac support
2018-04-23 12:55:27 +00:00
Hans Dedecker caed4b5132
Merge pull request #5933 from alinnastac/rp-pppoe-improved-init-scripts
rp-pppoe: improve init scripts
2018-04-23 09:50:31 +02:00
Alin Nastac b8e6e7f0e8 rp-pppoe: add support for logical interface names and fix interface triggers
Signed-off-by: Alin Nastac <alin.nastac@gmail.com>
2018-04-23 09:19:27 +02:00
Jaehoon You 82b67e3363 coova-chilli: change PKG_MAINTAINER
Signed-off-by: Jaehoon You <teslamint@gmail.com>
2018-04-23 13:34:44 +08:00
Jaehoon You 258cbcdb89 coova-chilli: switch to procd
Signed-off-by: Jaehoon You <teslamint@gmail.com>
2018-04-23 13:34:44 +08:00
Ian Leonard a70227e578 ffmpeg: libffmpeg-full to lgpl; include fdk-aac support
Change libffmpeg-full to, by default, use the LGPL license. This
allows libffmpeg-full to gain support for libfdk-aac.

When libx264 is selected, this changes to GPL, and libfdk-aac
support is lost. Libx264 support is prioritized when both are
selected, which maintains the status quo of what happens now.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2018-04-22 13:48:58 -07:00
Hannu Nyman 69492e04f2
Merge pull request #5954 from lucize/clamup
clamav: update to 0.100.0
2018-04-22 23:08:46 +03:00
Lucian Cristian f915143edf clamav: update to 0.100.0
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2018-04-22 21:39:33 +03:00
Hannu Nyman 403df4fcfa
Merge pull request #5919 from diizzyy/patch-3
utils/ncdu: Update to 1.13
2018-04-22 12:35:02 +03:00
Hannu Nyman ed3486547b
Merge pull request #5950 from diizzyy/patch-4
utils/tio: Update to 1.30
2018-04-22 12:33:15 +03:00
Hannu Nyman 4487a633f6
Merge pull request #5941 from zhaojh329/wifidog-ng
wifidog-ng: Update to 1.5.6
2018-04-22 12:24:52 +03:00
Hannu Nyman 3c5829a5dc
Merge pull request #5944 from chris5560/master
ddns-scripts: fixes "sed: no previous regexp"
2018-04-22 12:24:32 +03:00
Nikos Mavrogiannopoulos 7b35b9838e ocserv: updated to 0.12.0
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2018-04-22 11:08:53 +02:00
Daniel Engberg 8449578d63
utils/tio: Update to 1.30
Update tio to 1.30

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2018-04-22 09:05:48 +02:00
Paul Spooren ad05349db6 bmx7-dnsupdate: wait 10 secs if bmx7 ins't running
If bmx7 isn't running just yet the folder
`/var/run/bmx7/json/originators` is missing and so the while loop runs
non stop. Now the loop sleeps for 10 seconds if inotifywait fails.

Signed-off-by: Paul Spooren <spooren@informatik.uni-leipzig.de>
2018-04-21 21:24:06 +09:00
Christian Schoenebeck 6d8f45f759 ddns-scripts: fixes "sed: no previous regexp"
Rewritten Pull for #5885

When ran from the command line, the script prints
error messages like below. They are caused by supplying
empty "$password" and "$URL_PASS" for some log messages
like "130822       : Detect local IP on 'interface'".
The fix is to check if the values are not empty before running
through sed.

/etc/init.d/ddns start
sed: no previous regexp

Reported by Marc Benoit <marcb62185@gmail.com>

Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2018-04-21 12:11:46 +02:00
Daniel Golle edd002dc3f gnurl: depend on libidn2 instead of libidn
Package configure script decided to use libidn2 already now that it
became available. This triggered a dependency error:
Package libgnurl is missing dependencies for the following libraries:
libidn2.so.0

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2018-04-20 22:55:37 +02:00
Michael Heimpold 8716b28f7f php7-pecl-libevent: update to latest commit
This includes several minor bugfixes.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2018-04-20 22:18:29 +02:00
Jianhui Zhao ed2b1d7b4f wifidog-ng: Update to 1.5.6
Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
2018-04-19 20:59:35 +08:00
Zhong Jianxin 6dbac97707 acme: Add acme-dnsapi package
Signed-off-by: Zhong Jianxin <azuwis@gmail.com>
2018-04-19 11:05:35 +02:00
Zhong Jianxin b528ec5e79 acme: Support DNS mode
Tested with dynu.com ddns.

Install acme-dnsapi:

    # opkg install acme-dnsapi

Example `/etc/config/acme`:

    config acme
        option state_dir '/etc/acme'
        option account_email email@example.org'
        option debug '0'

    config cert 'foo'
        option enabled '1'
        option use_staging '1'
        option keylength '2048'
        option update_uhttpd '0'
        option dns 'dns_dynu'
        list domains 'foo.dynu.com'
        list domains '*.foo.dynu.com'
        list credentials 'Dynu_ClientId="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"'
        list credentials 'Dynu_Secret="yyyyyyyyyyyyyyyyyyyyyyyyy"'

Run:

    # /etc/init.d/acme start

Signed-off-by: Zhong Jianxin <azuwis@gmail.com>
2018-04-19 11:05:35 +02:00
Jo-Philipp Wich a6ea246cb2 bcp38: add init script
This commit adds a simple procd init script for bcp38 with the sole purpose
to register a configuration change trigger for /etc/config/bcp38.

The change will allow for automatic firewall reloads triggered by invoking
/sbin/reload_config or through ubus config change events emitted by LuCI.

With the init script in place and started, calling

  ubus call service event '{"type":"config.change","data":{"package":"bcp38"}}'

or

  /sbin/reload_config

will issue an /etc/init.d/firewall reload if /etc/config/bcp38 has been
modified since the last reload_config call.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2018-04-19 11:02:10 +02:00
Alin Nastac 26f8225d0a rp-pppoe: support for enabled uci parameters
Signed-off-by: Alin Nastac <alin.nastac@gmail.com>
2018-04-19 08:30:07 +02:00
Alin Nastac 860187dcde rp-ppoe: fix init script indentation and add STOP level
Signed-off-by: Alin Nastac <alin.nastac@gmail.com>
2018-04-19 08:17:29 +02:00
Michael Heimpold 6a9d2386c4 php7-pecl-propro: update to 2.1.0
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2018-04-18 22:38:31 +02:00
Michael Heimpold 2da394c4f1 php7-pecl-http: fix build if libidn and libidn2 are both available
We now select libidn2 as dependency, but libidn -if available-
is also linked against.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2018-04-18 22:32:20 +02:00
Michael Heimpold f8ec3965eb libgpiod: update to 1.0.1
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2018-04-18 21:35:04 +02:00
Michael Heimpold 0fbed12528 mmc-utils: update to latest git version
Also drop obsolete patch.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2018-04-18 21:28:58 +02:00
Hans Dedecker 91c88342ff xtables-addons: rstp: use specific source in expected RTP connection
Instead of passing a wildcard source to the expected RTP data connection;
use the server IP address of the RTSP SETUP packet or the RTP media source
from the SETUP URI contained in the SETUP packet.
This guarantees RTP data is only accepted from the expected source.

Signed-off-by: Alin Nastac <alin.nastac@gmail.com>
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
2018-04-18 14:32:32 +02:00
Hannu Nyman ad86eaa71f
Merge pull request #5929 from iamperson347/getdns-libidn2-update
getdns: Package update to replace libidn support with libidn2
2018-04-18 12:51:37 +03:00
David Mora cefe7738b5 getdns: Package update to replace libidn support with libidn2
Package update to replace libidn support with libidn2

Signed-off-by: David Mora <iamperson347+public@gmail.com>
2018-04-17 18:10:59 -04:00
Daniel Golle b1bd165886
Merge pull request #5923 from aparcar/bmx7-dnsupdate
bmx7-dnsupdate: add package
2018-04-17 21:13:14 +02:00
Hannu Nyman 3e8ac27f3d
Merge pull request #5921 from ClaymorePT/boost_1.67.0
boost: Package Version Update -> 1.67.0
2018-04-17 19:57:42 +03:00
Hannu Nyman 6779bd73eb
Merge pull request #5928 from mstorchak/tmux
tmux: update to 2.7
2018-04-17 19:56:51 +03:00
Maxim Storchak 34b79e98e7 tmux: update to 2.7
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2018-04-17 19:17:34 +03:00
Ted Hess 01f93c7742
Merge pull request #5857 from diizzyy/sound-lame
sound/lame: Fix optimization
2018-04-17 11:24:50 -04:00
Hannu Nyman 82cd2ab735
Merge pull request #5922 from diizzyy/utils-pcsctools
utils/pcsc-tools: Update to 1.5.3
2018-04-17 17:03:29 +03:00
Paul Spooren dda234aff8 bmx7-dnsupdate: add package
Makes it easy to address bmx7 shorids and hostnames with ping, ssh, etc.
Both are stored in /tmp/hosts/ and so loaded by dnsmasq.
Instead of using a cron job which triggers the bmx7 deamon every so and
so, inotifywait is used to see creation or deletion of originators in
/var/run/bmx7/json/originators/

Signed-off-by: Paul Spooren <spooren@informatik.uni-leipzig.de>
2018-04-17 15:13:44 +09:00
W. Michael Petullo 3e10d8ffd1 snort: set W. Michael Petullo as maintainer
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2018-04-16 20:36:44 -04:00
Marko Ratkaj f448a5ad30
Merge pull request #5806 from sartura/mozilla_iot_gateway
node-mozilla-iot-gateway: add package
2018-04-16 13:07:56 +00:00
Dirk Brenken dd3ad7207e
Merge pull request #5918 from doscott/easydnsfix
<ddns-scripts>: Add OK to valid easydns response.
2018-04-16 15:03:59 +02:00
Danny Scott d5ae2850b8
ddns-scripts: Add OK to valid easydns resonse.
Signed-off-by: Danny Scott <doscott@gmail.com>'
2018-04-16 09:46:17 -03:00
Marko Ratkaj 9d200c0080 node-mozilla-iot-gateway: add new package
Signed-off-by: Arturo Rinaldi <arty.net2@gmail.com>
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2018-04-16 13:41:05 +02:00
Dirk Brenken 8f9f2a3044
Merge pull request #5908 from mwarning/zerotier
zerotier: fix segfault on ARM
2018-04-16 13:18:45 +02:00
Daniel Engberg 5262792ef7 utils/pcsc-tools: Update to 1.5.3
Update pcsc-tools to 1.5.3

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2018-04-16 09:30:56 +02:00
Carlos Miguel Ferreira 9c09ecf437
boost: Package Version Update -> 1.67.0
This package update provides two new libraries
- Contract (compiled library) [1]: Contract programming for C++.
  All contract programming features are supported: Subcontracting,
  class invariants, postconditions (with old and return values),
  preconditions, customizable actions on assertion failure (e.g.,
  terminate or throw), optional compilation and checking of
  assertions, etc, from Lorenzo Caminiti.

- HOF (header-only library) [2]:
  Higher-order functions for C++, from Paul Fultz II.

More info can be found at the usual place [3].

[1]: https://www.boost.org/libs/contract
[2]: https://www.boost.org/libs/hof
[3]: https://www.boost.org/users/history/version_1_67_0.html

Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
2018-04-16 01:53:38 +01:00
Daniel Golle 3c7d2ae182 inotify-tools: add packages
Add packages for inotifywait, inotifywatch and libinotifytools.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2018-04-15 22:53:27 +02:00
Rosen Penev e5d0ff5421 acme: Switch to normal releases + other fixes.
As acme.sh has releases, switch to using those. Update the version accordingly.

Also rearranged some stuff in the hope that uscan will start tracking releases instead of git commits. Makefile is more simple as a result.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-04-15 14:11:21 +02:00
Daniel Engberg cc76e273a4
utils/ncdu: Update to 1.13
Update ncdu to 1.13

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2018-04-14 18:47:55 +02:00