Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (4fc8c9e49ac56d19faddabccba959f8245b69650)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (4fc8c9e49ac56d19faddabccba959f8245b69650)
  • Date: Sun, 25 Feb 2018 17:09:50 +0000

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 3 +++
chat-irc/irssi-otr/DEPENDS | 4 ++++
chat-irc/irssi-otr/DETAILS | 14 ++++++++++++++
chat-irc/irssi-otr/HISTORY | 2 ++
chat-irc/irssi-otr/PRE_BUILD | 4 ++++
chat-irc/irssi/CONFIGURE | 10 +++++++---
chat-irc/irssi/DEPENDS | 8 ++------
chat-irc/irssi/DETAILS | 4 ++--
chat-irc/irssi/HISTORY | 7 +++++++
9 files changed, 45 insertions(+), 11 deletions(-)

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" &&

-config_query_option IRSSI_OPTS "build with IPv6 support?" y \
- "--enable-ipv6" \
- "--disable-ipv6"
+config_query_option IRSSI_OPTS "build with true color support?" n \
+ "--enable-true-color" \
+ "--disable-true-color"
diff --git a/chat-irc/irssi/DEPENDS b/chat-irc/irssi/DEPENDS
index 2f58a47..ebcb0f8 100755
--- a/chat-irc/irssi/DEPENDS
+++ b/chat-irc/irssi/DEPENDS
@@ -1,11 +1,7 @@
depends glib2 &&
depends ncurses &&
-depends -sub CXX gcc &&
-
-optional_depends "SSL" \
- "" \
- "--disable-ssl" \
- "for SSL support" &&
+depends -sub CXX gcc &&
+depends SSL &&

optional_depends "perl" \
"--with-perl=module" \
diff --git a/chat-irc/irssi/DETAILS b/chat-irc/irssi/DETAILS
index 9b2f2f0..c419c07 100755
--- a/chat-irc/irssi/DETAILS
+++ b/chat-irc/irssi/DETAILS
@@ -8,8 +8,8 @@ if [[ $IRSSI_BRANCH == scm ]]; then
SOURCE_IGNORE=volatile
SOURCE=$SPELL-scm.tar.bz2
else
- VERSION=1.0.3
- SECURITY_PATCH=3
+ VERSION=1.0.7
+ SECURITY_PATCH=4
SOURCE=$SPELL-$VERSION.tar.xz

SOURCE_URL[0]=https://github.com/$SPELL/$SPELL/releases/download/$VERSION/$SOURCE
SOURCE2=$SOURCE.asc
diff --git a/chat-irc/irssi/HISTORY b/chat-irc/irssi/HISTORY
index 6e69bd1..b310554 100644
--- a/chat-irc/irssi/HISTORY
+++ b/chat-irc/irssi/HISTORY
@@ -1,3 +1,10 @@
+2018-02-25 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.0.7; SECURITY_PATCH++ (at least for
+ CWE-416, CWE-825, CWE-416, CWE-691, CWE-476, CWE-475,
+ CWE-690, CWE-126)
+ * DEPENDS: SSL becomes required
+ * CONFIGURE: added true color flags; removed obsolete IPv6 flags
+
2017-06-07 Thomas Orgis <sobukus AT sourcemage.org>
* DETAILS: version 1.0.3,
SECURITY_PATCH++ for CWE-690, CWE-129, CWE-127



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (4fc8c9e49ac56d19faddabccba959f8245b69650), Vlad Glagolev, 02/25/2018

Archive powered by MHonArc 2.6.24.

Top of Page