1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-15 03:43:53 +02:00
Commit Graph

23 Commits

Author SHA1 Message Date
Jonas Gorski
6fccd8801e znc: allow running without modules
Now that we don't ship any modules by default, znc might be started
without any modules. Unfortunately znc refuses to start without any
modules, so patch out the appropriate check.

Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
2016-12-03 17:52:28 +01:00
Jonas Gorski
c5d465a53c Merge pull request #3508 from kdarbyshirebryant/zncplayback
znc: add advanced playback module
2016-12-03 17:47:07 +01:00
Kevin Darbyshire-Bryant
a6715c17ff znc: run as user znc & use procd
Create & run znc as a specific user rather than nobody.  Converted to
use procd, removing dependencies on znc's 'droproot' module & 'su'

Signed-off-by: Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>
2016-11-17 10:28:43 +00:00
Kevin Darbyshire-Bryant
8de1538419 znc: add advanced playback module
The advanced playback module makes it possible for IRC clients to avoid
undesired repetitive buffer playback. IRC clients may request the module
to send a partial buffer playback starting from and ending to a certain
point of time.

Particularly useful with (supporting) mobile clients such as Mutter,
Colloquy & others.

Signed-off-by: Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>

---

Unfortunately playback.cpp is not included as part of the standard ZNC
modules and so has been added as a patch.
2016-11-13 09:11:43 +00:00
Jonas Gorski
69be3d82ef znc: fix compilation without ssl compression
Update Csocket to a newer version with compile fixes for OpenSSL with
disabled compression support. Since we don't get zlib as an transitive
dependency anymore, also add zlib as an explicit dependency.

Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
2016-08-14 23:03:20 +02:00
Xotic750
234a211a74 znc: Added support for ICU through menu configuration
Signed-off-by: Graham Fairweather <xotic750@gmail.com>
2016-06-07 01:16:26 +02:00
Jonas Gorski
601d06dca4 Merge pull request #2787 from Xotic750/znc-runas-shell
znc: Added RUNAS_SHELL variable to assist when using external configuration
2016-06-05 13:27:48 +02:00
Xotic750
00c5191e3c znc: Added RUNAS_SHELL variable to assist when using external configuration
Signed-off-by: Graham Fairweather <xotic750@gmail.com>
2016-06-03 14:56:02 +02:00
Xotic750
0b52f7d4ec znc: Bump to v1.6.3
Signed-off-by: Graham Fairweather <xotic750@gmail.com>
2016-06-03 14:13:07 +02:00
Hannu Nyman
f9f3a364b9 Merge pull request #2587 from stweil/master
net: Fix typos (found by codespell)
2016-04-13 15:15:36 +03:00
Stefan Weil
6d2c0fd06f net: Fix typos (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
2016-04-10 12:51:10 +02:00
Yousong Zhou
92b0575e28 Drop the redundant -r option to $(CP)
$(CP) was defined as `cp -fpR' since the very begining of OpenWrt build
system (2006-06-22).  The -R option should be enough and base packages
use only $(CP) for the same purposes just fine and BSD manual of cp also
discourages the use of `-r' option.  So let's just tidy up the usage now.

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2016-03-12 01:23:28 +08:00
Jonas Gorski
2f4ed5c3a2 znc: update to 1.6.2
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2016-01-08 11:49:05 +01:00
Jonas Gorski
b1a2b9d1ea znc: enable features/support explicitly
Don't let znc autodetect library presence to avoid random missing
dependencies popping up.

Closes #2193.

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2016-01-08 11:48:47 +01:00
Jonas Gorski
2e91dc6bb7 znc: drop GCC dependencies
OpenWrt trunk's lowest supported GCC version is 4.8, so we don't need
to depend on specific versions anymore. Fixes visibility with GCC 5,
the current default.

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2015-11-26 13:00:31 +01:00
Jonas Gorski
a94f520bcd znc: update to 1.6.1
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2015-08-20 12:17:23 +02:00
Jonas Gorski
d77bf6f1f4 znc: allow setting ssl fingerprints
ZNC 1.6.0 now verifies SSL certificates on connect, and some Servers
do not use a valid one (e.g. freenode).

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2015-07-01 12:31:48 +02:00
Jonas Gorski
d665caa851 znc: close Network tags
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2015-07-01 12:27:49 +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
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
Jonas Gorski
1197194832 znc: link to libstdc++ to fix performance issues on channel join
ZNC uses a map to cache channel memebers on join. Unfortunately uclibc++
uses a naive linked-list implementation with horrible performance, which
can cause joins to take a few minutes on popular channels.

Therefore Switch to libstdc++ which uses a much more performant hashmap.
ZNC by itself is already rather large, so the added footprint of
libstd++ vs uclibc++ does not matter that much anyway.

Should fix #11778.

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2014-11-21 13:30:07 +01:00
Jonas Gorski
272014632f znc: update to 1.4
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2014-07-19 17:20:36 +02:00
Jonas Gorski
6a9cdf5d93 znc: copy from old packages and add PKG_LICENSE
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
2014-07-19 17:20:24 +02:00