Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (a241f5762b7e999a6a81275e05103e43320f16c9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (a241f5762b7e999a6a81275e05103e43320f16c9)
  • Date: Thu, 9 Sep 2021 14:46:38 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

chat-irc/irssi/DETAILS | 2
chat-irc/irssi/HISTORY | 4 +
chat-irc/irssi/patches/0001-fix-build-with-LibreSSL-2.7.0.patch | 33
----------
3 files changed, 5 insertions(+), 34 deletions(-)

New commits:
commit a241f5762b7e999a6a81275e05103e43320f16c9
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

irssi 1.2.3

diff --git a/chat-irc/irssi/DETAILS b/chat-irc/irssi/DETAILS
index 38e1aa0..e88a66c 100755
--- a/chat-irc/irssi/DETAILS
+++ b/chat-irc/irssi/DETAILS
@@ -8,7 +8,7 @@ if [[ $IRSSI_BRANCH == scm ]]; then
SOURCE_IGNORE=volatile
SOURCE=$SPELL-scm.tar.bz2
else
- VERSION=1.1.2
+ VERSION=1.2.3
SECURITY_PATCH=4
SOURCE=$SPELL-$VERSION.tar.xz

SOURCE_URL[0]=https://github.com/$SPELL/$SPELL/releases/download/$VERSION/$SOURCE
diff --git a/chat-irc/irssi/HISTORY b/chat-irc/irssi/HISTORY
index 9fd78bb..fe23772 100644
--- a/chat-irc/irssi/HISTORY
+++ b/chat-irc/irssi/HISTORY
@@ -1,3 +1,7 @@
+2021-09-09 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 1.2.3
+ * patches/0001-fix-build-with-LibreSSL-2.7.0.patch: removed, no
longer needed
+
2019-01-30 Ismael Luceno <ismael AT iodev.co.uk>
* PRE_BUILD, patches/0001-fix-build-with-LibreSSL-2.7.0.patch:
fixed build against libressl
diff --git a/chat-irc/irssi/patches/0001-fix-build-with-LibreSSL-2.7.0.patch
b/chat-irc/irssi/patches/0001-fix-build-with-LibreSSL-2.7.0.patch
deleted file mode 100644
index 644c73b..0000000
--- a/chat-irc/irssi/patches/0001-fix-build-with-LibreSSL-2.7.0.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 25a44dacf4114f33f3a887f358c02f4fd9938427 Mon Sep 17 00:00:00 2001
-From: Dorian Harmans <dorian AT woohooyeah.nl>
-Date: Fri, 23 Mar 2018 21:35:35 +0100
-Subject: [PATCH] fix build with LibreSSL 2.7.0
-
----
- src/core/network-openssl.c | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/src/core/network-openssl.c b/src/core/network-openssl.c
-index 9fddf073e..692c7e716 100644
---- a/src/core/network-openssl.c
-+++ b/src/core/network-openssl.c
-@@ -35,7 +35,8 @@
- #include <openssl/err.h>
-
- /* OpenSSL 1.1.0 introduced some backward-incompatible changes to the api */
--#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) &&
!defined(LIBRESSL_VERSION_NUMBER)
-+#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && \
-+ (!defined(LIBRESSL_VERSION_NUMBER) || LIBRESSL_VERSION_NUMBER <
0x2070000fL)
- /* The two functions below could be already defined if OPENSSL_API_COMPAT is
- * below the 1.1.0 version so let's do a clean start */
- #undef X509_get_notBefore
-@@ -47,7 +48,8 @@
-
- /* OpenSSL 1.1.0 also introduced some useful additions to the api */
- #if (OPENSSL_VERSION_NUMBER >= 0x10002000L)
--#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined
(LIBRESSL_VERSION_NUMBER)
-+#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || \
-+ (defined (LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER <
0x2070000fL)
- static int X509_STORE_up_ref(X509_STORE *vfy)
- {
- int n;



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (a241f5762b7e999a6a81275e05103e43320f16c9), Ismael Luceno, 09/09/2021

Archive powered by MHonArc 2.6.24.

Top of Page