Skip to Content.
Sympa Menu

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

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 (1941951831b28f2546dbc79679e302d90cfe20fe)
  • Date: Tue, 12 Jul 2016 14:17:10 +0000

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

chat-irc/ircd-ratbox/DETAILS | 2 +-
chat-irc/ircd-ratbox/HISTORY | 5 +++++
chat-irc/ircd-ratbox/PRE_BUILD | 1 +
chat-irc/ircd-ratbox/openssl-0.9.patch | 15 +++++++++++++++
4 files changed, 22 insertions(+), 1 deletion(-)

New commits:
commit 1941951831b28f2546dbc79679e302d90cfe20fe
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

ratbox: => 3.0.10

diff --git a/chat-irc/ircd-ratbox/DETAILS b/chat-irc/ircd-ratbox/DETAILS
index ab85eb9..a445847 100755
--- a/chat-irc/ircd-ratbox/DETAILS
+++ b/chat-irc/ircd-ratbox/DETAILS
@@ -5,7 +5,7 @@ if [[ $IRCD_RATBOX_RELEASE == testing ]]; then
SOURCE_URL[0]=http://www.ratbox.org/download/testing/$SOURCE
SOURCE_URL[1]=http://mirrors.gigenet.com/ratbox/testing/$SOURCE
else
- VERSION=3.0.9
+ VERSION=3.0.10
SECURITY_PATCH=2
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_URL[0]=http://www.ratbox.org/download/$SOURCE
diff --git a/chat-irc/ircd-ratbox/HISTORY b/chat-irc/ircd-ratbox/HISTORY
index 399704d..54da27a 100644
--- a/chat-irc/ircd-ratbox/HISTORY
+++ b/chat-irc/ircd-ratbox/HISTORY
@@ -1,3 +1,8 @@
+2016-09-12 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 3.0.10 (stable)
+ * PRE_BUILD: apply patch
+ * openssl-0.9.patch: added, to fix build with olded openssl
+
2015-12-16 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 3.0.9 (stable); SECURITY_PATCH++
(CVE-2015-5290)
diff --git a/chat-irc/ircd-ratbox/PRE_BUILD b/chat-irc/ircd-ratbox/PRE_BUILD
index 023b346..4e26e5a 100755
--- a/chat-irc/ircd-ratbox/PRE_BUILD
+++ b/chat-irc/ircd-ratbox/PRE_BUILD
@@ -3,5 +3,6 @@ cd "$SOURCE_DIRECTORY" &&

patch -p0 < "$SPELL_DIRECTORY/rundir.patch" &&
patch -p0 < "$SPELL_DIRECTORY/setuid-3.patch" &&
+patch -p0 < "$SPELL_DIRECTORY/openssl-0.9.patch" &&

autoreconf -fi
diff --git a/chat-irc/ircd-ratbox/openssl-0.9.patch
b/chat-irc/ircd-ratbox/openssl-0.9.patch
new file mode 100644
index 0000000..cffe5fe
--- /dev/null
+++ b/chat-irc/ircd-ratbox/openssl-0.9.patch
@@ -0,0 +1,15 @@
+--- libratbox/src/openssl.c.orig 2016-01-13 21:10:17.000000000 +0300
++++ libratbox/src/openssl.c 2016-07-12 17:09:15.750938732 +0300
+@@ -329,7 +329,11 @@
+ }
+ tls_opts = SSL_CTX_get_options(ssl_server_ctx);
+ /* Disable SSLv2, make the client use our settings */
+- tls_opts |= SSL_OP_NO_SSLv2 | SSL_OP_NO_COMPRESSION |
SSL_OP_CIPHER_SERVER_PREFERENCE | SSL_OP_NO_SSLv3;
++ tls_opts |= SSL_OP_NO_SSLv2 | SSL_OP_CIPHER_SERVER_PREFERENCE |
SSL_OP_NO_SSLv3;
++
++#ifdef SSL_OP_NO_COMPRESSION
++ tls_opts |= SSL_OP_NO_COMPRESSION;
++#endif
+
+ #ifdef SSL_OP_NO_TICKET
+ tls_opts |= SSL_OP_NO_TICKET;



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (1941951831b28f2546dbc79679e302d90cfe20fe), Vlad Glagolev, 07/12/2016

Archive powered by MHonArc 2.6.24.

Top of Page