Commit graph

872 commits

Author SHA1 Message Date
Luka Perkov
264b65a41b pptpd: import from old packages
Signed-off-by: Luka Perkov <luka@openwrt.org>
2015-05-15 02:31:19 +02:00
Daniel Golle
d4381c289f xl2tpd: fix a minor compiler warning
gcc complains about atexit() being implicitely defined in
xl2tpd-control.c
Fix that by including stdlib.h in xl2tpd-control.c

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-13 16:12:04 +02:00
Daniel Golle
964edd830b xl2tpd: update source, import some useful patches
Yousong Zhou <yszhou4tech@gmail.com> made a couple of useful fixes
mostly for the xl2tpd-control tool which was broken.
imported them (patches/2*) here.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-13 13:23:21 +02:00
Daniel Golle
324383e5b1 opentracker: update source
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-13 13:23:21 +02:00
Steven Barth
2fbc52aad9 Merge pull request #1241 from chris5560/master
ddns-scripts: update to version 2.4.2-1
2015-05-11 17:13:54 +02:00
Luka Perkov
5bcbff46f9 squid: fix parallel builds
Signed-off-by: Luka Perkov <luka@openwrt.org>
2015-05-11 11:24:55 +02:00
Jonathan McCrohan
3e9ffaa4f8 Merge pull request #1247 from oneru/master
Fwknopd: Fix a typo in the init file
2015-05-11 00:10:37 +01:00
Jonathan Bennett
c8122975d3 Fwknopd: Fix a typo in the init file
Signed-off-by: Jonathan Bennett <jbennett@incomsystems.biz>
2015-05-10 16:05:24 -05:00
Jonathan Bennett
1947795df8 Fwknop: add flexibility to uci support
Styling cleanups
signed-off-by: Jonathan Bennett <jbennett@incomsystems.biz>
2015-05-10 01:04:46 -05:00
Jonathan Bennett
f2d8fc3bc2 Fwknop: Update to newest release
add basic uci support
add optional gpg support

signed-off-by: Jonathan Bennett <jbennett@incomsystems.biz>
2015-05-09 01:30:32 -05:00
Christian Schoenebeck
8161cba303 ddns-scripts: update to version 2.4.2-1
* fix Makefile to force compression of tld_names.dat reported in OpenWrt Ticket 19597
* change default of retry_count to "0" (retry endless) suggested by Henning Schild
* updated tld_names.dat include changes until 07.05.2015

Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2015-05-08 20:39:10 +02:00
Markus Stenberg
c886fe965c mdnsresponder: No longer require IPv4 address to start.
It used to require 1+ IPv4 addresses to start on Linux. Now it starts
up with 0 addresses (of any type), as netlink can provide us more
later. This way, no stupid restart loop with procd if it is racing
with netifd at startup.

Signed-off-by: Steven Barth <steven@midlink.org>
2015-05-08 13:29:13 +02:00
Karl Palsson
453152b874 net/mosquitto: Upgrade 1.4.1 to 1.4.2
Bugfix release.  Full changelog available at:
http://mosquitto.org/2015/05/version-1-4-2-released/

Drops a patch now included upstream.

Signed-off-by: Karl Palsson <karlp@remake.is>
2015-05-08 11:00:50 +00:00
Marty R
d5c824e8bf nut: remove patch for old automake version
tools/automake was updated to 1.15 which removed this bug; patch no longer needed.

Signed-off-by: Martin Rowe <martin.p.rowe@gmail.com>
2015-05-06 20:58:02 -07:00
Steven Barth
a7baec6257 Merge pull request #1226 from kissg1988/seafile
seafile: update to 4.1.2, create config file
2015-05-05 13:41:33 +02:00
heil
cb0349ced8 memcached: upgrade to 1.4.24
Signed-off-by: heil <heil@terminal-consulting.de>
2015-05-04 17:55:00 +02:00
heil
26d577ac26 haproxy: update to 1.5.12
[RELEASE] Released version 1.5.12

    Released version 1.5.12 with the following main changes :
        - BUG/MINOR: ssl: Display correct filename in error message
        - DOC: Fix L4TOUT typo in documentation
        - BUG/MEDIUM: Do not consider an agent check as failed on L7 error
        - BUG/MINOR: pattern: error message missing
        - BUG/MEDIUM: pattern: some entries are not deleted with case insensitive match
        - BUG/MEDIUM: buffer: one byte miss in buffer free space check
        - BUG/MAJOR: http: don't read past buffer's end in http_replace_value
        - BUG/MEDIUM: http: the function "(req|res)-replace-value" doesn't respect the HTTP syntax
        - BUG/MEDIUM: peers: correctly configure the client timeout
        - BUG/MINOR: compression: consider the expansion factor in init
        - BUG/MEDIUM: http: hdr_cnt would not count any header when called without name
        - BUG/MEDIUM: listener: don't report an error when resuming unbound listeners
        - BUG/MEDIUM: init: don't limit cpu-map to the first 32 processes only
        - BUG/MEDIUM: stream-int: always reset si->ops when si->end is nullified
        - BUG/MEDIUM: http: remove content-length from chunked messages
        - DOC: http: update the comments about the rules for determining transfer-length
        - BUG/MEDIUM: http: do not restrict parsing of transfer-encoding to HTTP/1.1
        - BUG/MEDIUM: http: incorrect transfer-coding in the request is a bad request
        - BUG/MEDIUM: http: remove content-length form responses with bad transfer-encoding
        - MEDIUM: http: restrict the HTTP version token to 1 digit as per RFC7230
        - MEDIUM: http: add option-ignore-probes to get rid of the floods of 408
        - BUG/MINOR: config: clear proxy->table.peers.p for disabled proxies
        - MINOR: stick-table: don't attach to peers in stopped state
        - MEDIUM: config: initialize stick-tables after peers, not before
        - MEDIUM: peers: add the ability to disable a peers section
        - DOC: document option http-ignore-probes
        - DOC: fix the comments about the meaning of msg->sol in HTTP
        - BUG/MEDIUM: http: wait for the exact amount of body bytes in wait_for_request_body
        - BUG/MAJOR: http: prevent risk of reading past end with balance url_param
        - DOC: update the doc on the proxy protocol

Signed-off-by: heil <heil@terminal-consulting.de>
2015-05-04 17:49:47 +02:00
Gergely Kiss
d1270720dc seafile: missing config file added 2015-05-03 21:05:35 +02:00
Gergely Kiss
c5743c7b0b seafile: create config file in a more elegant way 2015-05-03 21:01:21 +02:00
Gergely Kiss
b7396c9334 seafile: added configuration file to turn fastcgi mode on/off
Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
2015-05-02 13:55:16 +02:00
Gergely Kiss
69c18b28cd seafile: update to version 4.1.2
Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
2015-05-02 13:54:17 +02:00
Nicolas Thill
884c1c9b42 e2guardian: don't use github conflicting tag archives (#1051)
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-05-01 04:43:13 +02:00
Nicolas Thill
c5a5bf7145 wavemon: don't use github conflicting tag archives (#1051)
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-05-01 04:37:41 +02:00
Nicolas Thill
efe7e4d198 redsocks: don't use github conflicting tag archives (#1051)
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-05-01 04:29:39 +02:00
Nicolas Thill
2bdc41e37d Merge branch 'coova-chilli-patch' of https://github.com/teslamint/packages 2015-05-01 03:59:25 +02:00
Nicolas Thill
f746041323 krb5: fix build failure on rebuild (closes: #1143)
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-05-01 03:52:22 +02:00
Nicolas Thill
316b7a25f6 Merge branch 'ser2net-led-support' of https://github.com/mhei/packages 2015-05-01 03:27:34 +02:00
Nikos Mavrogiannopoulos
e5f8c378c1 ocserv: updated to 0.10.4
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-04-30 22:21:21 +02:00
Toke Høiland-Jørgensen
7d10659c66 sqm-scripts: Only run on hotplug if the init script is enabled.
Fixes #1202.

Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
2015-04-30 14:22:09 +02:00
Hauke Mehrtens
95aef0298b tor: disable seccomp support
seccomp is only supported on x86, amd64 and arm in tor.
This deactivated it currently completely which should close #935,
 #1097, #1147 and #1161.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2015-04-29 23:16:09 +02:00
Hauke Mehrtens
39a4601aac tor: update to stable version 0.2.5.12
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2015-04-29 22:29:23 +02:00
Michael Heimpold
c380283137 ser2net: add patch for LED activity support
This adds a patch for ser2net, so that ser2net can be configured
to flash leds on serial traffic. This could -for example- be used
to have an activity indicator, like netdev trigger.
Internally, the linux kernel's 'transient' led trigger is used.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2015-04-29 20:37:31 +02:00
Thomas Heil
8827409a17 Merge pull request #1216 from ryzhovau/halog_linkage
haproxy: fix halog linkage
2015-04-29 12:05:39 +02:00
Alexander Ryzhov
95faa1a0ba haproxy: fix halog linkage
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
2015-04-29 08:42:02 +00:00
Marty R
b195c1c367 nut: Update to 2.7.3
Updated the package to the latest upstream version.
Removed a patch that was merged upstream.
Bumped copyright notice to 2015.

Signed-off-by: Martin Rowe <martin.p.rowe@gmail.com>
2015-04-28 14:19:38 -07:00
Thomas Heil
b4cb981d3f Merge pull request #1209 from ryzhovau/haproxy_pcredir
haproxy: fix PCREDIR
2015-04-28 17:36:21 +02:00
Jaehoon You
3346bfd27b coova-chilli: fix compile error that cannot copy netfilter extension library
Signed-off-by: Jaehoon You <teslamint@gmail.com>
2015-04-29 00:24:38 +09:00
Alexander Ryzhov
ba80d015ed fix PCREDIR
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
2015-04-28 13:42:15 +00:00
Imre Kaloz
45e0e2a0b9 coova-chilli: add uci configuration file, init.d and firewall script 2015-04-28 15:08:15 +02:00
Imre Kaloz
8e2807532c Merge pull request #1123 from teslamint/patch-2
coova-chilli: add netfilter kernel module package with patches
2015-04-28 14:59:21 +02:00
Imre Kaloz
927a7164fa Merge pull request #1124 from teslamint/patch-3
coova-chilli: fix compile error with cyassl
2015-04-28 14:59:13 +02:00
Vladimir Ulrich
99fe4286c7 [net/snort] Replaced build variants with compile options.
Also added optional lzma support.
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2015-04-28 00:50:18 +03:00
Steven Barth
fa4365dd9b ocserv: explicitly pass --without-gssapi to work-around SDK issue
Signed-off-by: Steven Barth <steven@midlink.org>
2015-04-27 15:42:11 +02:00
Steven Barth
8da9355228 Merge pull request #1173 from Wedmer/master
[net/siit] Moved from oldpackages and updated for kernels 3.17+
2015-04-27 11:39:44 +02:00
Nikos Mavrogiannopoulos
03a638e002 ocserv: corrected session expiration in sec-mod
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-04-26 23:05:24 +02:00
Daniel Golle
4c399f28fd freeradius2: update to version 2.2.7 and refresh patches
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-04-26 19:44:20 +02:00
Nikos Mavrogiannopoulos
899724bd35 ocserv: updated to 0.10.3
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-04-26 02:19:50 +02:00
Michael Haas
17a51b7b86 wifidog: Bring back Wifidog at 1.2.1
This commit brings back Wifidog from the oldpackages
repository.

Changes:

* Wifidog version 1.2.1
* Add wifidog-tls package
* Init script uses procd

Signed-off-by: Michael Haas <haas@computerlinguist.org>
2015-04-24 13:50:38 +02:00
Vladimir Ulrich
2ef99b98ca [net/siit] Moved from oldpackages and updated for kernels 3.17+
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2015-04-23 12:10:34 +03:00
Steven Barth
e6a7272dee Merge pull request #1168 from salzmdan/master
knot: update to 1.6.3
2015-04-23 10:38:56 +02:00