summaryrefslogtreecommitdiffstats
path: root/chat-irc
diff options
context:
space:
mode:
authorIsmael Luceno2020-11-27 20:06:38 +0100
committerIsmael Luceno2020-11-27 20:08:02 +0100
commit63281a267522005c9ec25b5f7273ca4cafbfdcf5 (patch)
treeda81d08dcd6340164b76c4e11641af741719a367 /chat-irc
parent45eb89b1da1f2db1d6e529a4c747f396f708d338 (diff)
znc 1.8.2
Diffstat (limited to 'chat-irc')
-rwxr-xr-xchat-irc/znc/DETAILS4
-rw-r--r--chat-irc/znc/HISTORY5
-rwxr-xr-xchat-irc/znc/PRE_BUILD6
-rw-r--r--chat-irc/znc/libressl.patch19
4 files changed, 7 insertions, 27 deletions
diff --git a/chat-irc/znc/DETAILS b/chat-irc/znc/DETAILS
index 419a4a22cf..6bc4aa368c 100755
--- a/chat-irc/znc/DETAILS
+++ b/chat-irc/znc/DETAILS
@@ -1,5 +1,5 @@
SPELL=znc
- VERSION=1.4
+ VERSION=1.8.2
SECURITY_PATCH=5
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SOURCE.sig
@@ -8,7 +8,7 @@
SOURCE_GPG=znc.gpg:$SOURCE2:UPSTREAM_KEY
SOURCE2_IGNORE=signature
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
- WEB_SITE=http://en.znc.in/
+ WEB_SITE=https://wiki.znc.in
LICENSE[0]=GPL
ENTERED=20080723
SHORT="advanced IRC bouncer"
diff --git a/chat-irc/znc/HISTORY b/chat-irc/znc/HISTORY
index d498a823a8..ce85220758 100644
--- a/chat-irc/znc/HISTORY
+++ b/chat-irc/znc/HISTORY
@@ -1,3 +1,8 @@
+2020-11-27 Ismael Luceno <ismael@sourcemage.org>
+ * DETAILS: updated spell to 1.8.2
+ fixed WEB_SITE
+ * PRE_BUILD, libressl.patch: removed, no longer needed
+
2016-10-25 Vlad Glagolev <stealth@sourcemage.org>
* PRE_BUILD: added, to apply patch
* libressl.patch: added, fixed build with LibreSSL
diff --git a/chat-irc/znc/PRE_BUILD b/chat-irc/znc/PRE_BUILD
deleted file mode 100755
index e6ff3804b2..0000000000
--- a/chat-irc/znc/PRE_BUILD
+++ /dev/null
@@ -1,6 +0,0 @@
-default_pre_build &&
-cd "${SOURCE_DIRECTORY}" &&
-
-if is_depends_enabled $SPELL $(get_spell_provider $SPELL SSL) && [[ $(get_spell_provider $SPELL SSL) == "libressl" ]]; then
- patch -p0 < "${SPELL_DIRECTORY}/libressl.patch"
-fi
diff --git a/chat-irc/znc/libressl.patch b/chat-irc/znc/libressl.patch
deleted file mode 100644
index 8bbe9cfc07..0000000000
--- a/chat-irc/znc/libressl.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-$OpenBSD: patch-src_Csocket_cpp,v 1.1 2014/07/12 14:42:37 pascal Exp $
---- src/Csocket.cpp.orig Sat Jul 12 16:03:48 2014
-+++ src/Csocket.cpp Sat Jul 12 16:04:36 2014
-@@ -555,6 +555,7 @@ bool InitSSL( ECompType eCompressionType )
- }
- #endif /* _WIN32 */
-
-+#ifndef OPENSSL_NO_COMP
- COMP_METHOD *cm = NULL;
-
- if( CT_ZLIB & eCompressionType )
-@@ -570,6 +571,7 @@ bool InitSSL( ECompType eCompressionType )
- if( cm )
- SSL_COMP_add_compression_method( CT_RLE, cm );
- }
-+#endif
-
- // setting this up once in the begining
- g_iCsockSSLIdx = SSL_get_ex_new_index( 0, ( void * )"CsockGlobalIndex", NULL, NULL, NULL );