New commits:
commit 4fc8c9e49ac56d19faddabccba959f8245b69650
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>
irssi-otr: new spell, off the record plugin for Irssi
commit 08bb60c5be5a1a295f43a9c71ddfe86bf0dbd95b
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>
irssi: => 1.0.7 [security]
diff --git a/ChangeLog b/ChangeLog
index e9b7ef1..8a0199f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2018-02-25 Vlad Glagolev <stealth AT sourcemage.org>
+ * chat-irc/irssi-otr: new spell, off the record plugin for Irssi
+
2018-02-19 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* lua-forge/luabit: new spell, bit operations implemented in lua
diff --git a/chat-irc/irssi-otr/DEPENDS b/chat-irc/irssi-otr/DEPENDS
new file mode 100755
index 0000000..10a68c3
--- /dev/null
+++ b/chat-irc/irssi-otr/DEPENDS
@@ -0,0 +1,4 @@
+depends glib2 &&
+depends libgcrypt &&
+depends libotr &&
+depends irssi
diff --git a/chat-irc/irssi-otr/DETAILS b/chat-irc/irssi-otr/DETAILS
new file mode 100755
index 0000000..2bb8578
--- /dev/null
+++ b/chat-irc/irssi-otr/DETAILS
@@ -0,0 +1,14 @@
+ SPELL=irssi-otr
+ VERSION=1.0.2
+ SOURCE=${SPELL}-${VERSION}.tar.gz
+
SOURCE_URL[0]=https://github.com/cryptodotis/${SPELL}/archive/v${VERSION}.tar.gz
+
SOURCE_HASH=sha512:983bc861e5d38774305425b412368689f17a1e11298bcef49b9f0ea7a2275b1443ba2ce0a9ef9866e537097f1c6c00e9264085f5cd711f0d78faf252fba18d2f
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE=https://github.com/cryptodotis/irssi-otr
+ LICENSE[0]=GPL
+ ENTERED=20180225
+ KEYWORDS="irc otr"
+ SHORT="off the record plugin for Irssi"
+cat << EOF
+irssi-otr is libotr (https://otr.cypherpunks.ca) support for Irssi.
+EOF
diff --git a/chat-irc/irssi-otr/HISTORY b/chat-irc/irssi-otr/HISTORY
new file mode 100644
index 0000000..b13b897
--- /dev/null
+++ b/chat-irc/irssi-otr/HISTORY
@@ -0,0 +1,2 @@
+2018-02-25 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS, DETAILS, PRE_BUILD: created spell, version 1.0.2
diff --git a/chat-irc/irssi-otr/PRE_BUILD b/chat-irc/irssi-otr/PRE_BUILD
new file mode 100755
index 0000000..97cd230
--- /dev/null
+++ b/chat-irc/irssi-otr/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "${SOURCE_DIRECTORY}" &&
+
+./bootstrap
diff --git a/chat-irc/irssi/CONFIGURE b/chat-irc/irssi/CONFIGURE
index 93de53b..1f3d36d 100755
--- a/chat-irc/irssi/CONFIGURE
+++ b/chat-irc/irssi/CONFIGURE
@@ -1,3 +1,7 @@
+# remove obsolete options from IRSSI_OPTS
+list_remove IRSSI_OPTS '--enable-ipv6' &&
+list_remove IRSSI_OPTS '--disable-ipv6' &&
+
config_query_option IRSSI_OPTS "build with irssi-bot" n \
"--with-bot" \
"--without-bot" &&
@@ -6,6 +10,6 @@ config_query_option IRSSI_OPTS "build with irssi-proxy (to
use irssi as a bounce
"--with-proxy" \
"--without-proxy" &&