Commit graph

1257 commits

Author SHA1 Message Date
Daniel Golle
161b225acc gnunet: update source to r35963
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-21 15:25:43 +02:00
Nikos Mavrogiannopoulos
18be1b77cf transmission: bumped version
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-21 12:00:02 +02:00
Steven Barth
c2d2967e59 Merge pull request #1441 from commodo/ovs-musl
openvswitch: a bit of cleanup + fix musl compatibility
2015-06-20 16:27:25 +02:00
Nikos Mavrogiannopoulos
bc034ae30a ocserv: depend on radcli
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-20 13:56:49 +02:00
Nikos Mavrogiannopoulos
1b426f5bcf Merge pull request #1442 from nmav/oc
openconnect: added support for supplying a fixed second password.
2015-06-20 13:48:40 +03:00
Nikos Mavrogiannopoulos
2c6a3743c6 openconnect: updated documentation
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-20 12:36:55 +02:00
Nikos Mavrogiannopoulos
749abcacc8 openconnect: allow processing multiple passwords from stdin
Resolves #1419

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-20 12:36:39 +02:00
Alexandru Ardelean
3c78eb04b8 openvswitch: fix musl compatibility
Remove libatomic support from OVS: musl's libatomic seems incomplete.
Conditionally compile <net/if_packet.h>.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2015-06-20 11:16:22 +03:00
Alexandru Ardelean
b65d05a5ab openvswitch: cleanup makefile (remove explicit build rules)
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2015-06-20 09:49:09 +03:00
Steven Barth
2865b5aa09 strongswan: fix musl builds, reenable lost modules
Signed-off-by: Steven Barth <steven@midlink.org>
2015-06-19 18:38:44 +02:00
Jo-Philipp Wich
44d7aa7789 Merge pull request #1426 from jow-/tinc-musl-compat
tinc: fix musl compatibility
2015-06-19 16:03:08 +02:00
Jonas Gorski
e49e86e036 znc: update to 1.6.0
Fixes compilation with musl.

Requires GCC 4.7 or newer, so broken for octeon.

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2015-06-19 13:10:19 +02:00
Jo-Philipp Wich
a9277215a9 Merge pull request #1427 from jow-/tgt-musl-compat
tgt: fix musl compatibility
2015-06-19 12:21:26 +02:00
Matthias Schiffer
c38ba76698 fastd: fix musl compatibility
Prefer linux/if_ether.h over netinet/if_ether.h if available since the
musl libc if_ether.h header does not allow mixing with kernel headers,
it will result in a struct ethhdr redefinition error.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2015-06-19 04:16:09 +02:00
Jo-Philipp Wich
23bd12a89a Merge pull request #1416 from jow-/vpnc-musl-compat
vpnc: fix musl compatibility
2015-06-18 23:51:28 +02:00
Jo-Philipp Wich
e55822ec2b tgt: fix musl compatibility
- Include `sys/user.h` if `__WORDSIZE` is undefined
 - Add `fcntl.h` to `libscc.c` in order to declare `loff_t`

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-18 20:18:15 +02:00
Jo-Philipp Wich
4004ec2c75 tinc: fix musl compatibility
Let configure include `sys/if_tun.h` when testing for `netinet/if_ether.h`
to detect the Kernel/libc header conflict on musl.

After this patch, configure will correctly detect `netinet/if_ether.h` as
unusable and the subsequent compilation will not attempt to use it.

Fixes the following compatibility error:

	In file included from .../staging_dir/toolchain-mips_mips32_gcc-4.8-linaro_musl-1.1.9/include/linux/if_tun.h:20:0,
	                 from linux/device.c:24:
	.../staging_dir/toolchain-mips_mips32_gcc-4.8-linaro_musl-1.1.9/include/linux/if_ether.h:137:8: error: redefinition of 'struct ethhdr'
	 struct ethhdr {
	        ^
	In file included from .../staging_dir/toolchain-mips_mips32_gcc-4.8-linaro_musl-1.1.9/include/net/ethernet.h:10:0,
	                 from linux/../have.h:180,
	                 from linux/../system.h:26,
	                 from linux/device.c:21:
	.../staging_dir/toolchain-mips_mips32_gcc-4.8-linaro_musl-1.1.9/include/netinet/if_ether.h:96:8: note: originally defined here
	 struct ethhdr {
	        ^
	make[5]: *** [linux/device.o] Error 1

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-18 19:51:59 +02:00
Julen Landa Alustiza
5aae478e24 bwm-ng: fix building with gcc-security enabled
Signed-off-by: Julen Landa Alustiza <julen@zokormazo.info>
2015-06-18 18:45:04 +02:00
Jo-Philipp Wich
54e6887881 mtr: switch to upstream "newdns" branch
Switch the mtr package to the upstream `newdns` git branch.

This will fix compilation on Glibc, uClibc and musl without requiring
further patches.

Note that the base version of this branch is 0.85, not 0.86 so the
lower version number is intentional.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-18 18:35:22 +02:00
Jo-Philipp Wich
d5c31e1bf3 ulogd: fix musl compatibility
- Avoid non-pointer use of `FILE` type since its just a forward declaration
 - Build with -D_GNU_SOURCE to expose required `struct tcphdr` members

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-18 17:30:30 +02:00
Jo-Philipp Wich
b3c3ccc10a vpnc: fix musl compatibility
- Add missing `sys/ttydefaults.h` include to `config.c`
 - Restrict usage of `error.h` to glibc and uclibc only
 - Avoid including `linux/if_tun.h` on non-glibc/uclibc to prevent
   musl kernel/libc header conflicts

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-18 00:30:21 +02:00
Peter Ivanov
192884514f vnstat: fix musl compatibility
Signed-off-by: Peter Ivanov <pivanov@hotmail.com>
2015-06-18 01:26:46 +03:00
Nikos Mavrogiannopoulos
7a3493a9eb ocserv: don't use isolate workers as seccomp is not enabled
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-17 22:55:08 +02:00
Nikos Mavrogiannopoulos
0bfd280c2d ocserv: use procd for init file
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-17 22:55:08 +02:00
Nikos Mavrogiannopoulos
16ce68e228 ocserv: disabled MIPS16
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-17 22:07:42 +02:00
Nikos Mavrogiannopoulos
00671e854d openconnect: updated to 7.06 and disabled MIPS16
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-17 22:06:52 +02:00
Nikos Mavrogiannopoulos
49bfb73dfd transmission: increase the number of retries for respawn
The default 5 per hour is too small for transmission which may
crash quite some times.

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-17 22:03:40 +02:00
Jonathan McCrohan
81f9889bb0 Merge pull request #1406 from jow-/xinetd-musl-compat
xinetd: fix musl compatibility
2015-06-17 20:08:18 +01:00
Jo-Philipp Wich
2b5856ae72 wifidog: fix musl compatibility
- Fix missing `fcntl.h` in `protocol.c`
 - Replace nonstandard `sys/unistd.h` includes with `unistd.h` ones

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-17 19:41:42 +02:00
Jo-Philipp Wich
644ae71ebc xinetd: fix musl compatibility
Pass HAVE_RLIM_T via TARGET_CPPFLAGS since configure uses that define
but never actually declares it.

Without doing that, `config.h` tries to declare `rlim_t` itself which
leads to `config.h:126:16: error: 'long long long' is too long for GCC`
with musl on at least x86_64.

Also refresh patches while we're at it.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-17 19:31:03 +02:00
Daniel Golle
780cf06d28 gnunet: update source
get rid of another cross-compile patch now fixed upstream

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-17 19:24:57 +02:00
Ted Hess
0106a6931a Merge pull request #1393 from hnyman/vsftpd-musl
vsftpd: fix musl compatibility
2015-06-17 12:46:20 -04:00
Jo-Philipp Wich
508e19a190 keepalived: fix musl compatibility
- Add missing sys/types.h include to provide u_short type under musl

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-17 18:28:23 +02:00
Toke Høiland-Jørgensen
771ce26a71 [sqm-scripts/luci-app-sqm] Document how to disable shaping on a per direction basis
sqm-scripts for a long time interprets a "Down- or Upload speed" of zero as
an indication that the shaper should be disabled. Note that really shaping
an individual direction down  o zero will make the link effectively dead
for tcp (think reverse ACK traffic). Son instead of allowing the user to
configure something broken, 0 was "over-loaded" to denote no shaping
since several years, but that information has not been documented visibly
to the users. This commit aims at fixing that oversight.

Signed-off-by: Sebastian Moeller <moeller0@gmx.de>
2015-06-17 13:04:08 +02:00
Luka Perkov
f48315ba03 Merge pull request #1395 from jow-/pptpd-musl-compat
pptpd: fix musl compatibility
2015-06-17 09:49:21 +02:00
Nikos Mavrogiannopoulos
5dc38551aa Merge pull request #1363 from nmav/master
transmission: use procd
2015-06-17 08:50:45 +03:00
Jo-Philipp Wich
d94d9bd232 Merge pull request #1392 from jow-/bridge-must-compat
bridge-utils: fix musl compatibility
2015-06-17 02:31:50 +02:00
Jo-Philipp Wich
ba31ff7d5e pptpd: fix musl compatibility
- Ship a net/ppp_defs.h replacement header since musl does not provide one
   but pppd/pppd.h provided by pppd is needing it.
 - Replace deprecated MSG_TRYHARD flag with the proper MSG_DONTROUTE one
 - Unconditionally include string.h in bcrelay to avoid undeclared memset()
   and strcpy() warnings.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-17 00:12:42 +02:00
Hannu Nyman
bc7c3799d4 vsftpd: fix musl compatibility
Make vsftpd to compile with musl, while preserving uclibc compatibility.

When using musl:
* disable UTMPX functionality
* disable -lnsl option in upstream Makefile

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2015-06-16 21:50:04 +03:00
Jo-Philipp Wich
c10f93b913 bridge-utils: fix musl compatibility
Add missing includes to libbridge.h to define struct timeval and the
required u_int*_t types under musl.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-16 19:39:25 +02:00
Daniel Golle
b6e1de2bdc gnunet: update source
Most of the local patches have been integrated upstream.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-16 16:39:03 +02:00
Jo-Philipp Wich
e76f394fdc etherwake: fix musl compatibility
Always include net/ethernet.h instead linux specific headers,
fixes compilation with musl libc.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-16 15:08:27 +02:00
Jo-Philipp Wich
a0968faedb socat: fix musl compatibility
Do not include netinet/if_ether.h for musl to prevent struct ethhdr
redeclarations.

Also define NETDB_INTERNAL if needed to fix compilation of the network
backends.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-06-16 14:58:28 +02:00
Daniel Golle
4116e327af gnunet: update source and fix build with musl
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-16 13:12:11 +02:00
Nikos Mavrogiannopoulos
6161f40875 Optimized /proc/meminfo parsing
Suggested by @jow-

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-14 21:21:04 +02:00
Gergely Kiss
4b897fe764 seafile: build against libevhtp 1.1 instead of 1.2
This fixes multiple issues like upload/download problems on seahub
and also makes it possible to use the new HTTP syncing feature
which doesn't work with libevhtp 1.2.10 at all.
2015-06-14 18:04:23 +02:00
Nikos Mavrogiannopoulos
6091831a5b transmission: make the memory percentage allowed configurable
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-13 00:28:47 +02:00
Nikos Mavrogiannopoulos
e797b5ff78 transmission: use procd
That allows to restart transmission when it crashes, to limit
the memory used by it, as well as be jailed in the directories
it is supposed to access.

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-06-13 00:19:02 +02:00
Steven Barth
9cb63f38e8 Merge pull request #1362 from oneru/fwknopd
Fwknopd: Set capture interface to wan by default
2015-06-12 10:34:01 +02:00
heil
d5c18252d4 haproxy: add patches from upstream
- [PATCH 1/2] BUG/MEDIUM: stats: properly initialize the scope before
 - [PATCH 2/2] BUG/MEDIUM: http: don't forward client shutdown without
 - [PATCH 3/8] BUG/MINOR: check: fix tcpcheck error message
 - [PATCH 4/8] CLEANUP: checks: fix double usage of cur / current_step
 - [PATCH 5/8] BUG/MEDIUM: checks: do not dereference head of a
 - [PATCH 6/8] CLEANUP: checks: simplify the loop processing of
 - [PATCH 7/8] BUG/MAJOR: checks: always check for end of list before
 - [PATCH 8/8] BUG/MEDIUM: checks: do not dereference a list as a
 - [PATCH 09/10] BUG/MEDIUM: peers: apply a random reconnection timeout
 - [PATCH 10/10] DOC: Update doc about weight, act and bck fields in the
 - [PATCH 11/14] MINOR: ssl: add a destructor to free allocated SSL
 - [PATCH 12/14] BUG/MEDIUM: ssl: fix tune.ssl.default-dh-param value
 - [PATCH 13/14] BUG/MINOR: cfgparse: fix typo in 'option httplog' error
 - [PATCH 14/14] BUG/MEDIUM: cfgparse: segfault when userlist is misused

Signed-off-by: heil <heil@terminal-consulting.de>
2015-06-11 19:03:14 +02:00
Jonathan Bennett
a624a63150 Fwknopd: Set capture interface to wan by default
Signed-off-by: Jonathan Bennett <JBennett@incomsystems.biz>
2015-06-10 21:57:13 -05:00
Matthias Schiffer
ace1918bf5 ethtool: update to 4.0
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2015-06-10 21:19:41 +02:00
Marko Ratkaj
ca26e17048 netdiscover: add license info
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-06-09 12:20:33 +02:00
Marko Ratkaj
1fac9ac756 luci-app-squid: add package
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-06-09 12:18:04 +02:00
Marko Ratkaj
69116fb9e7 squid: minor changes in Makefile and init script
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-06-09 12:15:36 +02:00
Steven Barth
267174b747 strongswan: bump to 5.3.2
Signed-off-by: Steven Barth <steven@midlink.org>
2015-06-08 18:09:58 +02:00
Steven Barth
ee60975f76 Merge pull request #1354 from fededim/master
sstp-client: updated to version 1.0.10
2015-06-08 12:42:18 +02:00
Rupan
47486a9889 sstp-client: updated to version 1.0.10
Signed-off-by: Federico Di Marco <fededim@gmail.com>
2015-06-08 12:26:13 +02:00
Steven Barth
433a621c42 strongswan: update to 5.3.1, cleanup broken modules
Signed-off-by: Steven Barth <steven@midlink.org>
2015-06-08 07:48:41 +02:00
Daniel Golle
9b5a7966ff gnunet: package accidentally dropped peerstore_sqlite
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-05 17:42:34 +02:00
Daniel Golle
e0b2a226a3 xl2tpd: fix xl2tpd options
The previous commit left an unwanted string in the options passed
to xl2tpd-control. Remove that as well.
Also set procd respawn parameter now that I'm at it.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-05 17:42:06 +02:00
Daniel Golle
0f562aa7c3 xl2tpd: don't let xl2tpd handle redial
netifd is taking care of that already.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-05 14:53:36 +02:00
Daniel Golle
d6ac08f843 gnunet: improve packaging and set fix permissions on firstrun
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-05 14:53:22 +02:00
Daniel Golle
885a425824 gnurl: no longer force-enable TLS-SRP
It might not be available in GnuTLS and is not strictly required
by the gnurl manifest, see
http://www.git.taler.net/?p=gnurl.git;a=blob;f=README;h=f7521aa431a4e77a58dc558880ff54648d69e072;hb=HEAD#l22

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-05 14:53:22 +02:00
Daniel Golle
7582a91760 gnunet: don't override default to 'n'
Overriding DEFAULT to 'n' prevents packages being build unless
explicitely selected even if ALL is set.
Instead, set 'DEFAULT:=y if PACKAGE_gnunet' for the default
packages and otherweise don't touch DEFAULT.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-05 01:45:14 +02:00
Daniel Golle
93584e3cbe gnunet: use templates to package components
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-04 02:37:03 +02:00
Daniel Golle
67e34ce071 gnunet: improve packages
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-04 00:45:14 +02:00
Daniel Golle
ae90788b64 gnunet: split up into smaller packages, bump version
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-06-03 22:40:36 +02:00
Othmar Truniger
def24612af knxd: revert to older version
Signed-off-by: Othmar Truniger <github@truniger.ch>
2015-06-02 20:21:53 +02:00
Michael Heimpold
0d9d2a1046 Merge pull request #1330 from tru7/knxd
knxd: bump to new version
2015-05-31 23:27:28 +02:00
Daniel Golle
a85f38afea gnunet: improve procd init-script
Directly call /usr/lib/gnunet/libexec/gnunet-service-arm instead
of /usr/bin/gnunet-arm, so it remains attached to procd.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-31 18:54:52 +02:00
Daniel Golle
b9eb46387d gnurl: bump release
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-31 18:32:53 +02:00
Daniel Golle
6bbdfa55df gnurl: reduce feature-set to match specs in README
gnurl's README states quite excatly which CONFIGURE_ARGS to pass,
so disable lots of unneeded stuff.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-31 18:28:40 +02:00
Othmar Truniger
10d6da7d46 knxd: bump to new version
Signed-off-by: Othmar Truniger <github@truniger.ch>
2015-05-31 16:00:02 +02:00
Daniel Golle
70980bc50b gnunet: use upstream fix for libmicrohttpd detection
The autoconf issue when detecting libmicrohttpd was fixed upstream in
SVN revision 35845. Use that and remove the dirty work-around.

See also:
https://gnunet.org/bugs/view.php?id=3805#c9201

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-31 14:13:58 +02:00
Alexander Ryzhov
24efa9a6ca gnurl: Respect IPv6 settings
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
2015-05-31 11:21:58 +00:00
Daniel Golle
e3515017eb gnunet: fixup more dependencies
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-31 12:58:52 +02:00
Daniel Golle
e6deb6136a gnunet: work-around libmicrohttpd detection
Bug filed upstream:
https://gnunet.org/bugs/view.php?id=3805

Once fixed, this patch can be removed.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-31 07:40:44 +02:00
Daniel Golle
f560fb95c3 gnurl: add forgotten MD5SUM
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-31 07:20:51 +02:00
Daniel Golle
ce0b6a4554 gnunet: fix things and use newer source version
- use newer source version from SVN
 - made it detect gnurl
 - added init script
 - added gnunet user

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-31 07:14:25 +02:00
Daniel Golle
eba7afcfb7 gnurl: add net package
This is definitely one of the ugliest things I ever got my
hands on. If it even did the job properly, but no, it tries
to install it's headers in /usr/include/curl collidings with
actual curl's headers. Fixed that by installing them into
/usr/include/gnurl instead. Now gnunet can use gnurl.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-31 07:14:25 +02:00
Daniel Golle
98a821a93a gnunet: add new package
The single 'gnunet' package built should be further split up,
meta-packages for common use-cases should be added.
However, it's not too big to run on devices with 8MB of flash or more,
even in the current monolithic package.
Integration with procd and netifd is not yet implemented.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-30 23:28:42 +02:00
Jo-Philipp Wich
f5ca16f98d nfs-kernel-server: revert CONFIG_IPV6 handling
Building nfs-kernel-server with --enable-ipv6 requires not yet packaged
libtirpc, therfore unconditionally disable IPv6 support again for now.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-05-29 17:41:33 +02:00
Ted Hess
dece510558 Merge pull request #1317 from thess/bridge-update
bridge-utils: Add busybox fixup in postrm
2015-05-29 06:48:52 -04:00
Syrone Wong
c8a8bea8e3 ethtool: add missing quotation mark in Makefile
Signed-off-by: Shuoyao Wang <wong.syrone@gmail.com>
2015-05-29 11:15:10 +08:00
Nikos Mavrogiannopoulos
f9f4ba7d1e ocserv: use freeradius-client library if radius support is requested
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-05-28 20:02:05 +02:00
Ted Hess
7dc3a17d53 bridge-utils: Add busybox fixup in postrm
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-05-28 13:19:25 -04:00
Matthias Schiffer
17f428fca6 Merge pull request #1292 from ffainelli/ethtool
ethtool: Add option to enable/disable pretty-printing
2015-05-28 17:05:56 +02:00
Marko Ratkaj
fe3d554c6a ulogd: add json plugin
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-05-28 16:07:41 +02:00
Florian Fainelli
165fb918a6 ethtool: Add option to enable/disable pretty-printing
With upstream commit
https://git.kernel.org/cgit/network/ethtool/ethtool.git/commit/?id=875616dfcbe57ea0f639a20d85fcbad2172ad744

there is now an option to produce a smaller ethtool build which will
disable pretty printing (Ethernet drivers, SFP diagnostics...) for
platforms that do not need it.

Hook a menu configuration option to control that option. Build size
differences on ar71xx:

With:
-rw-r--r-- 1 florian florian 79K mai   23 10:43
bin/ar71xx/packages/packages/ethtool_3.18-1_ar71xx.ipk

Without:
-rw-r--r-- 1 florian florian 23K mai   23 10:43
bin/ar71xx/packages/packages/ethtool_3.18-1_ar71xx.ipk

Signed-off-by: Florian Fainelli <florian@openwrt.org>
2015-05-27 20:00:55 -07:00
Peter Wagner
1710be8605 git: update to 2.4.2
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-05-27 21:32:31 +02:00
Jo-Philipp Wich
9e2788c96b Merge pull request #1181 from ryzhovau/ipv6_opt
Optional IPv6 support
2015-05-27 18:49:06 +02:00
Ted Hess
9589efa5bc Merge pull request #1294 from mar-kolya/add-bridge-utils
Move bridge-utils from oldpackages
2015-05-26 10:49:40 -04:00
Mislav Novakovic
387b3f751b netdiscover: add package
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2015-05-26 12:51:04 +02:00
Marko Ratkaj
669b44a50c clamav: bump to 0.98.7
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-05-26 12:51:04 +02:00
Steven Barth
d2670b43f2 Merge pull request #1298 from chris5560/master
radicale: fixed hotplug and init script
2015-05-26 08:50:51 +02:00
Nikolay Martynov
4a343362da bridge-utils: copy from oldpackages
* update Makefile accoring to CONTRIBUTING.md, set maintainer
* fix file offset handling
* use https://git.kernel.org/pub/scm/linux/kernel/git/shemminger/bridge-utils.git for source code

Signed-off-by: Nikolay Martynov <mar.kolya@gmail.com>
2015-05-25 21:41:56 -04:00
Mislav Novakovic
ccd9752fb6 freeradius2: add mirror for older releases
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2015-05-26 00:37:51 +02:00
Nuno Goncalves
76f57ca7eb sshtunnel: fixes validation bug with dynamic port forwarding.
Thanks to Avi Alkalay <avi@unix.sh>

Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
2015-05-25 22:07:04 +01:00
Christian Pointner
80396166a8 ntpd: enable ATOM (PPS) support
Signed-off-by: Christian Pointner <equinox@spreadspace.org>
2015-05-25 18:45:23 +02:00
Christian Schoenebeck
65fb23d515 radicale: fixed hotplug and init script
* fixed hotplug script (not restarting on "ifup")
* fixed init script (not stopping in 1 second)
* fixed PKG_MAINTAINER string
* removing not needed comments in config file

Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2015-05-24 21:34:34 +02:00
Nicolas Thill
d8362b6d04 ipsec-tools: fix null dereference in racoon
* add a patch to fix a null pointer dereference in src/racoon/gssapi.c (CVE-2015-4047)
 * refresh patches
 * bumb release number

Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-05-24 20:38:44 +02:00
Ted Hess
0f8b49faaa Merge pull request #1289 from clehner/master
Fix emailrelay init script
2015-05-24 13:36:22 -04:00
Hauke Mehrtens
84c6815a9c openvswitch: fix build with kernel >= 3.18.13
This fixes a build problem with kernel >= 3.18.13.
This should close #1283.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2015-05-24 15:27:50 +02:00
Yousong Zhou
59f33d2aa7 xl2tpd: refactor for more resilience.
- Use netifd no_proto_task for notifying that xl2tpd does not have a
   protocol task running.
 - Use procd for xl2tpd service management.
 - Refreshed 2xx patches to

    - Prevent leftover regular type control result file.
    - Allow xl2tpd run as foreground process while logging via syslog.

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>

 - bumped version
 - removed dependency on `ip` package as routes are setup by netifd
   if iproute2 is actually required, please depend on
   `@(PACKAGE_ip||PACKAGE_ip-full)` instead of `ip`

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-05-24 12:18:38 +02:00
Nikos Mavrogiannopoulos
15f744bb53 ocserv: corrected checksum
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-05-24 11:16:28 +02:00
Nikos Mavrogiannopoulos
0622e99f91 ocserv: updated to 0.10.5
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-05-24 11:00:10 +02:00
Steven Barth
38f5f10948 Merge pull request #1284 from oneru/key-gen
Fwknopd: Backport patch to enable keygen in fwknopd
2015-05-24 10:13:18 +02:00
Charles Lehner
e30b50f0a1 Fix emailrelay init script
Signed-off-by: Charles Lehner <cel@celehner.com>
2015-05-23 13:18:17 -04:00
Ted Hess
0429e223d9 Merge pull request #1281 from fededim/master
lftp: added mirror directory old to avoid build disruption on new version releases
2015-05-22 17:57:55 -04:00
Nikos Mavrogiannopoulos
01851966b8 ocserv: silence warnings and set group default value
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-05-22 21:56:29 +02:00
Jonathan Bennett
b0a605c1c3 Fwknopd: Backport patch to enable keygen in fwknopd
Signed-off-by: Jonathan Bennett <jbennett@incomsystems.biz>
2015-05-22 13:21:55 -05:00
Rupan
5b045bd1f1 lftp: added mirror directory old to avoid build disruption on new version releases
Signed-off-by: Federico Di Marco fededim@gmail.com
2015-05-22 17:29:03 +02:00
Steven Barth
95949a8124 Merge pull request #1277 from fededim/master
lftp: updated to 4.6.2
2015-05-22 11:12:46 +02:00
Ted Hess
89a45fce95 Merge pull request #1270 from fatbob313/master
uMurmur: Update to 0.2.16.
2015-05-21 17:48:03 -04:00
Martin Johansson
6c004eb0a2 umurmur: Update to 0.2.16. Also fix build breakage since PolarSSL/MbedTLS's version module was disabled.
Signed-off-by: Martin Johansson <martin@fatbob.nu>
2015-05-21 22:33:46 +02:00
Rupan
0a8f277853 lftp: updated to 4.6.2
Signed-off-by: Federico Di Marco fededim@gmail.com
2015-05-21 11:00:11 +02:00
Alexander Ryzhov
7343322bd0 rtorrent: respect IPv6 settings
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
2015-05-21 06:13:35 +00:00
Alexander Ryzhov
b0f2853135 nfs-kernel-server: respect IPv6 settings
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
2015-05-21 06:13:35 +00:00
Alexander Ryzhov
3dd3316f67 mtr: respect IPv6 settings
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
2015-05-21 06:13:35 +00:00
Imre Kaloz
4b7237a8aa Merge pull request #1269 from teslamint/patch-2
coova-chilli: fix stat failed error when compile without kmod
2015-05-20 22:39:39 -07:00
Nuno Goncalves
c87334ff72 usbip: move to github (closes #1259)
Signed-off-by: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
[nunojpg@gmail.com: Added PKG License and changed commit message]
Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
2015-05-20 23:41:36 +01:00
Michael Heimpold
72f362fb09 Merge pull request #1274 from tru7/knxd
knxd: bump to new version
2015-05-20 20:32:42 +02:00
Othmar Truniger
8b58c7f207 knxd: bump to new version
Signed-off-by: Othmar Truniger <github@truniger.ch>
2015-05-20 19:31:48 +02:00
Luka Perkov
6d9064e230 snort: add SF mirror
Signed-off-by: Luka Perkov <luka@openwrt.org>
2015-05-20 19:05:27 +02:00
Marko Ratkaj
a39de9738a luci-app-clamav: add package
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-05-20 17:31:08 +02:00
Marko Ratkaj
f9507c02e0 clamav: add package
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-05-20 17:28:30 +02:00
Marko Ratkaj
8c13dbd2e1 luci-app-e2guardian: add package
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-05-20 17:22:17 +02:00
Marko Ratkaj
52e66a21d4 e2guardian: bump to 3.1.2
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-05-20 17:15:23 +02:00
Jaehoon You
c14e55e452 coova-chilli: fix stat failed error when compile without kmod
This patch fixes #1261.

Signed-off-by: Jaehoon You <teslamint@gmail.com>
2015-05-18 13:52:12 +09:00
Christian Pointner
7af256a6cd tcpproxy: update to version 1.2
Signed-off-by: Christian Pointner <equinox@spreadspace.org>
2015-05-17 18:53:22 +02:00
Cezary Jackiewicz
2925a16a83 usbip: import from old packages 2015-05-15 07:55:33 +02:00
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
Alexander Ryzhov
8e26160834 lighttpd: add liblua deps for lighttpd-mod-cml and lighttpd-mod-magnet
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
2015-04-23 07:58:33 +00:00
Daniel Salzman
122a780e7f knot: update to 1.6.3
Signed-off-by: Daniel Salzman <daniel.salzman@nic.cz>
2015-04-23 09:24:46 +02:00
Christian Schoenebeck
f98dbf5aab radicale: [NEW] Python-based CalDAV/CardDAV Server
Inspired by OpenWrt Ticket System Ticket 9119
Python3 package currently marked as @BROKEN because no time for testing.

Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2015-04-20 21:14:03 +02:00
Steven Barth
3828a7096d openvswitch: fixup kernels for older versions
Signed-off-by: Steven Barth <steven@midlink.org>
2015-04-20 18:15:55 +02:00
Steven Barth
8b1c88659a openvswitch: Fixup SUPPORTED_KERNELs
Signed-off-By: Steven Barth <steven@midlink.org>
2015-04-20 18:13:35 +02:00
Steven Barth
105910ea0f Merge pull request #1145 from emabo/master
openvswitch: upgrade to version 2.3.90
2015-04-20 18:11:23 +02:00
Steven Barth
23d0f81a4a Merge pull request #1154 from MikePetullo/master
dmapd: update to 0.0.72
2015-04-20 15:56:13 +02:00
W. Michael Petullo
00fe9a9704 dmapd: update to 0.0.72
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2015-04-20 09:41:20 -04:00
Vasilis Tsiligiannis
de80156bb9 nsd: Bump to version 4.1.2 2015-04-20 11:02:18 +03:00
Michael Hanselmann
af3b2635df Update net/unbound to version 1.5.3
unbound 1.5.3 was released on March 10, 2015.

Signed-off-by: Michael Hanselmann <public@hansmi.ch>
2015-04-19 22:32:14 +02:00
Sebastian Moeller
db2b613afe Remove dependeny on iptables-mod-filter from sqm-scripts
As Hnyman noted in https://github.com/dtaht/ceropackages-3.10/issues/13
we carry a few unnecessary dependecies in sqm-scripts, so remove one of
them (iptables-mod-filter) as we neither use it nor plan to use it.

Signed-off-by: Sebastian Moeller <moeller0@gmx.de>
2015-04-19 14:17:04 +02:00
Nicolas Thill
1c0f9ee522 lksctp-tools: import sctp from old packages feed
- update to latest version (v1.0.16)
 - add license info
 - add myself as maintainer
 - install dev files the proper way in Build/InstallDev
 - rename sctp package to libsctp
 - add an sctp-tools package and an sctp transitional meta package

Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-04-18 08:22:12 +02:00
Emanuele Bovisio
87b26e5db1 openvswitch: upgrade to version 2.3.90, review #1 2015-04-17 18:13:13 +02:00
Emanuele Bovisio
dfd640394c openvswitch: upgrade to version 2.3.90 2015-04-17 11:58:13 +02:00
Nicolas Thill
92d316ff6c pen: update to 0.27.5
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-04-16 16:05:55 +02:00
heil
a412694bbc haproxy: include patches from mainline
- [PATCH 3/9] BUG/MEDIUM: Do not consider an agent check as failed on
 - [PATCH 4/9] BUG/MEDIUM: peers: correctly configure the client timeout
 - [PATCH 5/9] BUG/MEDIUM: buffer: one byte miss in buffer free space
 - [PATCH 6/9] BUG/MAJOR: http: don't read past buffer's end in
 - [PATCH 7/9] BUG/MEDIUM: http: the function "(req|res)-replace-value"
 - [PATCH 8/9] BUG/MINOR: compression: consider the expansion factor in
 - [PATCH 9/9] BUG/MEDIUM: http: hdr_cnt would not count any header when

Signed-off-by: heil <heil@terminal-consulting.de>
2015-04-16 12:04:10 +02:00
Peter Wagner
0135d8e2bd ntpd: fix typo
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-04-13 18:53:17 +02:00
Peter Wagner
2c1c2de230 Currently the hotplug script never starts because it assumes the wrong
path to the binary. Fix the path.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-04-13 18:14:27 +02:00
Peter Wagner
f4ef2c8fd7 ntpd: update to 4.2.8p2
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-04-12 20:56:51 +02:00
Peter Wagner
20c2805549 git: update to 2.3.5
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-04-12 20:54:38 +02:00
Jonas Gorski
fe25f00fb6 znc: disable mips16
Using mips16 seems to make znc randomly crash.

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2015-04-12 14:06:35 +02:00
Christian Schoenebeck
f5334528a7 ddns-scripts: bugfixes/update to version 2.4.1-1
* fix problem with lucihelper script reported in OpenWrt Ticket 19419
* rewritten split_FQDN fixing detection errors and using zcat
* updated tld_names.dat and .gz compressed to save space
* add LoopiaDNS (loopia.se) to services_ipv6

Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2015-04-12 10:47:38 +02:00
Steven Barth
2ecebe6297 Merge pull request #1128 from samm-git/master
apinger: add apinger package
2015-04-11 14:32:42 +02:00
Karl Palsson
ee274e64f9 net/mosquitto: Patch QoS 2 in flight bug
Patched until new upstream release is available.
Patch sourced from upstream.

Signed-off-by: Karl Palsson <karlp@remake.is>
2015-04-10 14:37:48 +00:00
Karl Palsson
b3349c6e13 net/mosquitto: Bump to 1.4.1
Some useful fixes:
http://mosquitto.org/2015/04/version-1-4-1-released/

Drops a patch that has been rolled into upstream.

Signed-off-by: Karl Palsson <karlp@remake.is>
2015-04-10 14:36:52 +00:00
champtar
9e9f9551a2 Merge pull request #1045 from teslamint/patch-1
coova-chilli: fix typo prevents compile with cyassl

compile tested on ar71xx
2015-04-10 13:45:53 +02:00
Steven Barth
98926757c6 Merge pull request #1131 from fingon/mdnsresponder-fix
mdnsresponder: Fixed IPv6 deprecated address handling
2015-04-09 13:42:31 +02:00
Markus Stenberg
63234f185d mdnsresponder: Fixed deprecated address handling (the new getifaddr code in the patch was wrong; instead, fixed old mDNSResponder code to work with correct sized interface names, and to handle deprecated flag). 2015-04-09 14:28:24 +03:00
Nikos Mavrogiannopoulos
bdd3409115 ocserv: updated to 0.10.2
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-04-08 20:56:40 +02:00
Alex Samorukov
11e83c6928 apinger: add apinger package
Alarm Pinger (apinger) is a little tool which monitors various IP devices by
simple ICMP echo requests. There are various other tools, that can do this,
but most of them are shell or perl scripts, spawning many processes, thus much
CPU-expensive, especially when one wants continuous monitoring and fast
response on target failure.

Signed-off-by: Alex Samorukov <samm@os2.kiev.ua>
2015-04-08 17:07:52 +00:00
Steven Barth
b8ab944d23 strongswan: add missing dependency
Signed-off-by: Steven Barth <steven@midlink.org>
2015-04-07 12:07:27 +02:00
Jaehoon You
ca9d3f24cf coova-chilli: add netfilter kernel module package with patches
Signed-off-by: Jaehoon You <teslamint@gmail.com>
2015-04-07 15:31:35 +09:00
Jaehoon You
3e72234399 coova-chilli: fix compile error with cyassl
Signed-off-by: Jaehoon You <teslamint@gmail.com>
2015-04-07 15:30:39 +09:00
Nicolas Thill
49b42df0f2 keepalived: update to 1.2.16
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-04-06 13:17:44 +02:00
Nicolas Thill
edf8ea8b14 pen: update to 0.27.3
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-04-06 13:17:44 +02:00
Steven Barth
41222e6c1a strongswan: bump to 5.3.0
Signed-off-by: Steven Barth <steven@midlink.org>
2015-04-06 12:23:27 +02:00
Steven Barth
bc22d9a32c Merge pull request #1115 from mhaas/stunnel-5.14-2
stunnel: Bump from 5.10 to 5.14
2015-04-06 11:48:04 +02:00
Florian Fainelli
b1f228f4cf openconnect: allow specifying a custom CSD wrapper script
Some VPN servers might be configured in a way that a CSD wrapper script
is mandatory to complete the authentication process, allow that to be
specified for openconnect.

Signed-off-by: Florian Fainelli <florian@openwrt.org>
2015-04-04 12:32:59 -07:00
Florian Fainelli
70c10c0a5e openconnect: allow specifying "os"
Some servers might be implementing ACLs based on the value specified by
openconnect for "os", allow that to be configured.

Signed-off-by: Florian Fainelli <florian@openwrt.org>
2015-04-04 12:31:49 -07:00
Michael Haas
0c3713c767 stunnel: Bump from 5.10 to 5.14
Also refresh patches.

Signed-Off-By: Michael Haas <haas@computerlinguist.org>
2015-04-03 10:20:18 +02:00
Ted Hess
c05e66c65e wavemon: Fetch source from GitHub repository
Closes #1099
Closes #1103

Signed-off-by: Ted Hess <thess@kitschensync.net>
Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
2015-03-31 23:24:57 +01:00
Othmar Truniger
b80bba0d9f knxd: fix dependency in makefile
Signed-off-by: Othmar Truniger <github@truniger.ch>
2015-03-31 21:13:08 +02:00
John Crispin
211dc655ed spawn-fcgi: fix install step
the makefile trues to copy a file that does not exist

Signed-off-by: John Crispin <blogic@openwrt.org>
2015-03-29 14:49:53 +02:00
Noah Meyerhans
607f1e5830 Merge pull request #1082 from smoofra/bind
bind: build fix: remove autoconf AR cruft
2015-03-31 09:57:35 -07:00
Steven Barth
71c375ecd1 Revert "new package: noip" 2015-03-31 17:31:06 +02:00
Steven Barth
690dd4d1dd Merge pull request #1083 from smoofra/noip
new package: noip
2015-03-31 10:40:45 +02:00
Steven Barth
4eee291cca Merge pull request #1089 from obsy/master
transmission: fix build problem with fallocate64
2015-03-31 10:39:20 +02:00
Thomas Heil
53ffbc9dbd prosody: bump to 0.9.8
- Ensure only valid UTF-8 is passed to libidn. It was found
   (CVE-2015-2059) that libidn can read beyond the boundaries of the
   provided buffer when an input string contains invalid UTF-8 sequences.

Signed-off-by: Thomas Heil <heil@terminal-consulting.de>
2015-03-30 17:48:18 +02:00
Daniel Golle
2d227ea937 spawn-fcgi: import from oldpackages
also bump version, use new download URL and add myself as
maintainer.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-03-29 21:32:43 +02:00
Nikos Mavrogiannopoulos
e3a5ea625d openconnect: list the defaultroute option
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-03-29 21:02:58 +02:00
Daniel Golle
28e2ca2011 xl2tpd: fix build with musl
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-03-29 20:06:09 +02:00
Cezary Jackiewicz
bf47948dc3 transmission: fix build problem with fallocate64 2015-03-29 12:35:33 +02:00
Daniel Golle
70344eea14 transmission: fix build with musl
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2015-03-29 06:04:50 +02:00
Maxim Storchak
304f1a5527 wget: update to 1.16.3
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2015-03-28 14:34:17 +02:00
Lawrence D'Anna
ca8e7b831a new package: noip
This is the client program for noip.com, which is a dynamic dns provider.

Signed-off-by: Lawrence D'Anna <larry@elder-gods.org>
2015-03-27 20:00:55 -07:00
Lawrence D'Anna
4a02aa766f bind: build fix: remove autoconf AR cruft
This patch removes some autoconf goo which is causing bind to use the host's ar
instead the ar from the toolchain.  If they're both elf platforms this is fine,
but it's no good if host is darwin.

Signed-off-by: Lawrence D'Anna <larry@elder-gods.org>
2015-03-27 20:00:18 -07:00
aTanW
2564e407d2 ipsec-tools: racoon uci integration
Signed-Off-By: Vitaly Protsko <villy@sft.ru>
---
 b/net/ipsec-tools/Makefile            |   16 -
 b/net/ipsec-tools/files/functions.sh  |  137 +++++++++
 b/net/ipsec-tools/files/p1client-down |   41 ++
 b/net/ipsec-tools/files/p1client-up   |   41 ++
 b/net/ipsec-tools/files/racoon        |  109 +++++++
 b/net/ipsec-tools/files/racoon.init   |  478 +++++++++++++++++++++++++++++++++-
 b/net/ipsec-tools/files/vpnctl        |   19 +
 net/ipsec-tools/files/racoon.conf     |   36 --
 8 files changed, 824 insertions(+), 53 deletions(-)
2015-03-26 08:25:15 +03:00
Sebastian Moeller
d5a203f1eb sqm-scripts: clean up interface selection for hotplugging
The initial conversion to restart sqm on interfaces it is configured
for in case of (transient) dis- and reappearance was half finished.
These changes clean up the handling of exlicitly passed interfaces
in run.sh: no second argument defaults to all configured interfaces
the alternative is an individual interface name passed as 2nd
argument to run.sh. The first argument either is start or stop.
No argument at all will behave as if start was passed.
Survives light testing...

Signed-off-by: Sebastian Moeller <moeller0@gmx.de>
2015-03-25 10:35:58 +01:00
Sebastian Moeller
1561003a70 sqm-scripts: change default for qdisc target parameter
Alan Jenkins noted a bug in the smq luci GUI that effectively
erased several configuration paramters if two checkboxes were deselected.
This behaviour seems consistent in luci but certainly has the potential
to confuse users. While confusion can not really be avoided generally
it seems wise to change the default interpretation for empty or non-existent
itarget and etarget variables from the qdisc's default (5ms in the case of
one of the codels) to automatic determination of tghis variable dependent on
the configured bandwidth, as codels target variable should be large enough
to contain at least one full packet. With this change sqm-scripts will
do the right thing by default, but will yet allow the user to specify
over-ridding values (as long as the user does not un-check the
entry-field exposing check boxes). Survives light testing...
This change set also changes the sqm-scripts luci gui to note the user
of the change. For compatibility with existing setups sqm-scripts
will still honor "auto" as an alternative explicit way of requesting
automatic target selection. This might turn into a warning in the future
and might be phased out...

Signed-off-by: Sebastian Moeller <moeller0@gmx.de>
2015-03-25 10:34:18 +01:00
Steven Barth
9ca4f135e2 Merge pull request #1066 from ollie27/sftpdeps
openssh: strip openssh-sftp-server dependencies again
2015-03-24 11:29:20 +01:00
Steven Barth
c8c6157e7e mdnsresponder: bump to 567
Signed-off-by: Steven Barth <steven@midlink.org>
2015-03-23 17:29:13 +01:00
Oliver Middleton
8137ce26fd openssh: strip openssh-sftp-server dependencies again
Reapply 99c6c3d830

Signed-off-by: Oliver Middleton <olliemail27@gmail.com>
2015-03-23 16:20:37 +01:00
W. Michael Petullo
623a8a0d0c dmapd: update to 0.0.71
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2015-03-22 17:24:51 -04:00
Stijn Tintel
2eae664f5f tor: remove optional dependency on libssp
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2015-03-20 18:23:39 +01:00
Stijn Tintel
e996c1cc36 openssh: remove optional dependency on libssp
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2015-03-20 17:46:37 +01:00
Stijn Tintel
54b01d214f ethtool: remove optional dependency on libssp
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2015-03-20 17:46:00 +01:00
Othmar Truniger
27762817f1 linknx: fix dependency
Signed-off-by: Othmar Truniger <github@truniger.ch>
2015-03-19 22:48:56 +01:00
Matthias Schiffer
b3afecd7c0 Merge pull request #879 from ZeroChaos-/ethtool-ssp-support
ethtool: fix Makefile to support SSP
2015-03-19 21:47:28 +01:00
Zero_Chaos
99d0b5147d ethtool: add optional libssp dep
Package ethtool is missing dependencies for the following libraries:
libssp.so.0
Makefile:45: recipe for target '/home/zero/development/openwrt/bin/ar71xx/packages/packages/ethtool_3.18-1_ar71xx.ipk' failed

Signed-off-by: Rick Farina (Zero_Chaos) <zerochaos@gentoo.org>
2015-03-19 16:21:44 -04:00
Peter Wagner
9322b6e80b openssh: update to 6.8p1
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-03-19 10:35:59 +01:00
Jo-Philipp Wich
999caf676a Merge pull request #920 from stintel/snmpd_procd
net-snmp: cleanup and use procd
2015-03-19 01:33:47 +01:00
champtar
512e1e74d1 Merge pull request #1017 from mhaas/stunnel-5.10
stunnel: bring back stunnel

compile tested for ar71xx
2015-03-18 20:04:42 +01:00
Mario Halambek
7829fb225a snort: bump to 2.9.7.2
Signed-off-by: Mario Halambek <mario.halambek@sartura.hr>
2015-03-18 15:25:33 +01:00
Steven Barth
42b319b8e0 Merge pull request #1046 from arfett/master
mwan3-luci: update to 1.4-2
2015-03-18 15:25:14 +01:00
Steven Barth
a341c46ddf Merge pull request #1047 from Adze1502/master
mwan3: update to version 1.6-1
2015-03-18 15:24:55 +01:00
Michael Heimpold
3756129d9c Merge remote-tracking branch 'tru7/linknx'
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2015-03-17 21:20:45 +01:00
Othmar Truniger
98622bb83e knxd: tune Makefile, new upstream version
Signed-off-by: Othmar Truniger <github@truniger.ch>
2015-03-17 21:11:31 +01:00
Othmar Truniger
6f78dcc31d linknx: streamline makefile
Signed-off-by: Othmar Truniger <github@truniger.ch>
2015-03-17 20:41:51 +01:00
Adze1502
74c9585abc mwan3: update to version 1.6-1
Add ipset support (ipset version >6.22 with ipmark required)
Add stickiness feature

Signed-off-by: Jeroen Louwes <jeroen.louwes@gmail.com>
2015-03-17 19:57:49 +01:00
Michael Haas
f6927350e4 stunnel: Bring it back at v5.10
From: Michael Haas <haas@computerlinguist.org>

* init script no longer creates certificates (consider client mode as use
  case)
* patches/010_fix_getnameinfo.patch: Fix getnameinfo signature
* patches/011_disable_ssp_linking.patch: Disable -fstack-protector as it
  is not always available in OpenWRT
* old patches (in oldpackages) no longer necessary
* remove libwrap dependency
* remove libpthread dependency
* respect CONFIG_IPV6
* init script uses procd
* sample stunnel.conf runs in client mode - prevents start failure,
  does not require cert

Possible enhancement: automatically generate certificate as done in
uhttpd. However, as client mode is a possible use case, I'd rather not.
Additionally, stunnel may use several certs with user-defined locations
and we can't easily set a cert location via command-line args.

The package is based on
https://sites.google.com/site/twisteroidambassador/openwrt/stunnel

Signed-off-by: Michael Haas <haas@computerlinguist.org>
2015-03-17 13:47:55 +01:00
Jaehoon You
a001565a10 coova-chilli: fix typo prevents compile with cyassl
Signed-off-by: Jaehoon You <teslamint@gmail.com>
2015-03-17 10:30:50 +09:00
Peter Wagner
f3527d974e git: update to 2.3.3
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2015-03-16 02:34:13 +01:00
Jonathan McCrohan
387f31560f sslh: update to 1.17
Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
2015-03-15 18:15:18 +00:00
Luiz Angelo Daros de Luca
dccc2268bb git: add subpackage for http(s)/ftp(s) commands
This patch add a new package, git-http, that contains all
http related commands (and ftp as extra). All http/ftp
depends on libcurl. Even without SSL suport in libcurl,
git compiles and it returns an informative error only
at runtime.

The use of symlinks now are trigged using NO_INSTALL_HARDLINKS env
and not based only on Makefile patch.

imap-send was kept builtin and idependent of curl (just as it was
before)

Template files, which are not necessary, where removed.

Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
2015-03-14 14:47:43 -03:00
Luiz Angelo Daros de Luca
e9eea78910 git: configure as cross compiling
Previously, ./configure was running checking local system and not
OpenWRT target. This would avoid any configure test about OpenWRT
libraries.

With a patch in configure, non cross-compiling-friend test are
ignored and Makefile can use default configure.

As side effect, git commands are now at /usr/lib/git-core and not
/usr/libexec/git-core.

Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
2015-03-14 14:47:43 -03:00
Nikos Mavrogiannopoulos
678e0e46f0 openconnect: upgraded to 7.05
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2015-03-14 14:12:03 +01:00
Luka Perkov
4ecbe05663 cshark: update to latest git HEAD
Signed-off-by: Luka Perkov <luka@openwrt.org>
2015-03-13 09:15:54 +01:00
ionum
32a8c76d29 Enable pass_persist support for slapd 2015-03-12 16:49:39 +01:00
Stanislav German-Evtushenko
b64c2dc399 wshaper: start wshaper on ifup 2015-03-12 01:48:05 +03:00
Steven Barth
158612912f Merge pull request #998 from mhei/knxd
knxd: streamline makefile
2015-03-10 22:21:45 +01:00
Aedan Renner
2eaff113bd version updated to 1.4-2 (mwan3 1.6 compatible)
new mwan3 1.6 rule options added:
-sticky
-timeout
-ipset
2015-03-09 15:53:57 -07:00
Steven Barth
7e68031372 strongswan: fix IKEv1 support
Signed-off-by: Steven Barth <steven@midlink.org>
2015-03-09 13:40:29 +01:00
Steven Barth
bfb8077f1c Merge pull request #994 from kissg1988/seafile
seafile: fix download issue with python dependencies
2015-03-09 06:57:47 +01:00
Steven Barth
d16808ae95 Merge pull request #1007 from commodo/ovs-fix2
openvswitch: limit kernel package to supported kernel versions
2015-03-09 06:52:38 +01:00
Nicolas Thill
d18e118ba5 pen: update to 0.27.2
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-03-08 17:40:48 +01:00
Alexandru Ardelean
fff95cd4f4 openvswitch: limit kernel package to supported kernel versions
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2015-03-08 18:10:11 +02:00
Álvaro Fernández Rojas
b58d21c5ab udpxy: bump PKG_VERSION in order to fix build issues and refresh patches
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2015-03-08 15:09:21 +01:00
probonopd
10ed69026f announce: Update Makefile to 1.0.1
Signed-off-by: Simon Peter <probono@puredarwin.org>
2015-03-08 10:12:52 +00:00
Nikos Mavrogiannopoulos
a6ee37ebfa Merge pull request #989 from plntyk/fix_libcrypt_prefix
ocserv: fix libcrypt location
2015-03-08 10:05:21 +01:00
Michael Heimpold
a3f364b32b knxd: streamline makefile
- use https URL for fetching sources from GitHub, otherwise cloning
  sources could stall buildbots by asking to accept a/the SSH host key
- do not _depend_ on DEPENDS but _select_ them, so the package(s) always
  appear in menuconfig, not only when all dependencies are already
  selected --> dependencies are automatically pulled in when package
  is selected by user
- use PKG_INSTALL
- factor out the libeibclient library as own package
- use CONFIGURE_ARGS instead of dedicated Build/Configure
- same for TARGET_CFLAGS and Build/Compile
- do not include /etc/functions, already included by /etc/rc.common

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2015-03-07 22:50:56 +01:00
Michael Heimpold
30e90215b8 Merge remote-tracking branch 'tru7/knxd'
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2015-03-07 21:47:29 +01:00
Othmar Truniger
95dce8fd6b knxd: follow new respository
Signed-off-by: Othmar Truniger <github@truniger.ch>
2015-03-07 12:32:27 +01:00
Gergely Kiss
68530b4475 seafile: fix download issue with python dependencies
Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
2015-03-07 01:17:18 +01:00
Marko Ratkaj
c05980909c squid: update to 3.5.2
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2015-03-06 23:29:26 +01:00
Sebastian Moeller
1b5afe8f46 sqm-scripts: make run.sh ignore spurious incomplete hotplug ifups
During system start up pppoe devices seem to receice ifup events before
the interface actually exists. This commit makes sqm's run.sh script
test whether the sys files for an interface exist before actually trying
to start an SQM instance on an interface. This seems to nicely avoid
starting on an not fully established pppoe interface and avoids a number
of error messages during startup.

In addition, debug logging is disabled.

Signed-off-by: Sebastian Moeller <moeller0@gmx.de>
2015-03-05 16:23:42 +01:00
Álvaro Fernández Rojas
fd62435cd4 udpxy: fix build on OS X and clean up Makefile
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2015-03-05 13:52:38 +01:00
Dirk Neukirchen
2e723d4019 ocserv: fix libcrypt location
fix build errors on Arch Linux/Fedora 20

config.log trying to link with /usr/lib/libcrypt.so
/usr/lib/libcrypt.so: undefined reference to `memset@GLIBC_2.2.5'

linkage is AC_LIB_HAVE_LINKFLAGS macro behaviour
see http://marc.info/?l=gnulib-bug&m=129660262901148

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
2015-03-04 21:32:53 +01:00
Dirk Neukirchen
12e57878fe nfs-kernel-server: fix build with libblkid, libuuid
config.log reports
WARNING: uuid support disabled as libblkid is too old
because the test macro AC_BLKID_VERS is not cross compile friendly
resulting in libblkid_cv_is_recent=unknown

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
2015-03-04 19:31:57 +01:00
Sebastian Moeller
5b61cfba07 Teach SQM hotplug tricks
Some interfaces like wan-pppoe go away, when the ppp connection is lost
and get recreated once the link is established again. SQM now
has its own hotplug script to re-enable itself on the interfae just hotplugged.
SQM will not touch other instances of itself running on other interfaces
if called by hotplug.d. The implementation now allows this functionality by
calling run.sh like:
/usr/lib/sqm/run.sh interface YOUR_INTERFACE_NAME_HERE
e.g.: /usr/lib/sqm/run.sh interface ge00-pppoe
If called with a specific interface SQM will only try to disable itself
on that interface to clean up all left over state and the re-enable
itself on just that interface. Hopefully that allows for better service
with instable interfaces like pppoe. The current code passes a simple manual
stop start test of the ge00-pppoe interface from the GUI and does seem
to do the right thing, at least on cerowrt 3.10.50-1...
2015-03-03 17:49:50 +01:00
John Szakmeister
2720fe57e5 Upgrade socat to 1.7.3.0.
The cross-compiling patch is no longer necessary.  Also added librt as a
dependency, since it is required.  This also fixes an issue where
support for linux/errqueue.h was not being detected correctly and
causing a build failure with 3.18.

Signed-off-by: John Szakmeister <john@szakmeister.net>
2015-03-03 06:39:43 -05:00
Maxim Storchak
1e4684c236 wget: update to 1.16.2
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2015-03-02 10:22:05 +02:00
Steven Barth
04f065b3ea Merge pull request #938 from kissg1988/seafile
seafile: deleted outdated patch
2015-03-02 08:00:03 +01:00
Steven Barth
762fafebb9 Merge pull request #873 from jow-/umurmur-autoconf-fix
umurmur: use generic autoreconf fixup
2015-03-02 07:58:20 +01:00
Ted Hess
5d4867ab2f Merge pull request #965 from chris5560/master
ddns-scripts: implements usage of nsupdate to direct update DNS servers
2015-02-28 20:50:55 -05:00
Ted Hess
5fa6635e9b Merge pull request #941 from commodo/ovs-fix
openvswitch: limit package to supported kernel versions
2015-02-28 20:44:48 -05:00
Christian Schoenebeck
fad616a4cc ddns-scripts: implements usage of nsupdate to direct update DNS servers
* new service "bind-nsupdate" using nsupdate to directly updates a PowerDNS or Bind server via nsupdate.
  suggested by Jan Riechers (Pull #957) many thanks!
* updated tld-names.dat

Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2015-02-28 16:43:02 +01:00
Othmar Truniger
1ab82e2f30 apcupsd: add driver modbus-usb
Signed-off-by: Othmar Truniger <github@truniger.ch>
2015-02-24 22:41:53 +01:00
Johannes Morgenroth
1b5ba1b255 ibrdtn-tools: Updated to 1.0.1
Signed-off-by: Johannes Morgenroth <jm@m-network.de>
2015-02-24 17:43:36 +01:00