Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (c6516585077b00452f80cb9041419ba1a76dd975)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (c6516585077b00452f80cb9041419ba1a76dd975)
  • Date: Sat, 5 Dec 2015 16:25:15 +0000

GIT changes to master grimoire by Florian Franzmann
<siflfran AT hawo.stw.uni-erlangen.de>:

crypto/openssl/DETAILS | 18 ++----------------
crypto/openssl/HISTORY | 5 +++++
crypto/openssl/PREPARE | 1 -
crypto/openssl/PRE_SUB_DEPENDS | 4 ----
crypto/openssl/SUB_DEPENDS | 5 -----
devel/nodejs/DEPENDS | 8 ++++----
devel/nodejs/HISTORY | 3 +++
libs/ldns/CONFIGURE | 1 -
libs/ldns/DEPENDS | 2 +-
libs/ldns/HISTORY | 3 +++
net/unbound/CONFIGURE | 1 -
net/unbound/DEPENDS | 2 +-
net/unbound/HISTORY | 3 +++
13 files changed, 22 insertions(+), 34 deletions(-)

New commits:
commit c6516585077b00452f80cb9041419ba1a76dd975
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

libs/ldns: remove support for openssl 0.9

commit a21bf485df2b71fcb0878ab402568a5a38a8df06
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

net/unbound: remove option for openssl 0.9

commit 79b3347a39ce34189b29becd90a250b25049085b
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

devel/nodejs: remove sub-dependency on openssl 1.0

commit 6f80c4e4dbfddfde62d802e9c0ee99bd08401754
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

crypto/openssl: version 1.0.2e, remove option for 0.9 branch, security
update

diff --git a/crypto/openssl/DETAILS b/crypto/openssl/DETAILS
index cb390e2..00b7077 100755
--- a/crypto/openssl/DETAILS
+++ b/crypto/openssl/DETAILS
@@ -1,20 +1,6 @@
SPELL=openssl
-
-if [[ -z "$OPENSSL_BRANCH" ]] || [[ $OPENSSL_BRANCH == DEFAULT ]]; then
- OPENSSL_BRANCH="0.9"
-fi
-
-case $OPENSSL_BRANCH in
- 0.9)
- VERSION=0.9.8zg
- SECURITY_PATCH=26
- ;;
- 1.0)
- VERSION=1.0.2d
- SECURITY_PATCH=29
- ;;
-esac
-
+ VERSION=1.0.2e
+ SECURITY_PATCH=30
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://www.openssl.org/source/$SOURCE
SOURCE_URL[1]=ftp://sunsite.cnlab-switch.ch/mirror/openssl/source/$SOURCE
diff --git a/crypto/openssl/HISTORY b/crypto/openssl/HISTORY
index 14e067a..f367439 100644
--- a/crypto/openssl/HISTORY
+++ b/crypto/openssl/HISTORY
@@ -1,3 +1,8 @@
+2015-12-05 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: version 1.0.2e, SECURITY_PATCH++
+ * SUB_DEPENDS, PRE_SUB_DEPENDS, PREPARE, DETAILS: remove option for
openssl
+ 0.9, this version is end of life
+
2015-08-16 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.0.2d

diff --git a/crypto/openssl/PREPARE b/crypto/openssl/PREPARE
deleted file mode 100755
index 60fb53b..0000000
--- a/crypto/openssl/PREPARE
+++ /dev/null
@@ -1 +0,0 @@
-config_query_list OPENSSL_BRANCH "Which branch of OpenSSL do you want to
build?" DEFAULT 0.9 1.0
diff --git a/crypto/openssl/PRE_SUB_DEPENDS b/crypto/openssl/PRE_SUB_DEPENDS
deleted file mode 100755
index 81dce0a..0000000
--- a/crypto/openssl/PRE_SUB_DEPENDS
+++ /dev/null
@@ -1,4 +0,0 @@
-case $THIS_SUB_DEPENDS in
- 1.0) [[ $OPENSSL_BRANCH == "1.0" ]];;
- *) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}"; return 1;;
-esac
diff --git a/crypto/openssl/SUB_DEPENDS b/crypto/openssl/SUB_DEPENDS
deleted file mode 100755
index 8a11566..0000000
--- a/crypto/openssl/SUB_DEPENDS
+++ /dev/null
@@ -1,5 +0,0 @@
-case $THIS_SUB_DEPENDS in
- 1.0) message "OpenSSL 1.0 branch needed, forcing it." &&
- OPENSSL_BRANCH="1.0";;
- *) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}"; return 1;;
-esac
diff --git a/devel/nodejs/DEPENDS b/devel/nodejs/DEPENDS
index 77397da..9f0df12 100755
--- a/devel/nodejs/DEPENDS
+++ b/devel/nodejs/DEPENDS
@@ -2,7 +2,7 @@ depends -sub CXX gcc &&
depends python &&
depends zlib '--shared-zlib' &&

-optional_depends -sub "1.0" openssl \
- "--shared-openssl" \
- "" \
- "to use system OpenSSL library instead of
bundled"
+optional_depends openssl \
+ "--shared-openssl" \
+ "" \
+ "to use system OpenSSL library instead of bundled"
diff --git a/devel/nodejs/HISTORY b/devel/nodejs/HISTORY
index 680d455..222b24f 100644
--- a/devel/nodejs/HISTORY
+++ b/devel/nodejs/HISTORY
@@ -1,3 +1,6 @@
+2015-12-05 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DEPENDS: remove sub-dependency on openssl 1.0
+
2014-09-29 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 0.10.32; quoting paths
* BUILD: use INSTALL_ROOT, OPTS
diff --git a/libs/ldns/CONFIGURE b/libs/ldns/CONFIGURE
index dd586c4..018bac7 100755
--- a/libs/ldns/CONFIGURE
+++ b/libs/ldns/CONFIGURE
@@ -18,7 +18,6 @@ if spell_ok openssl && is_version_less $(installed_version
openssl) 1.0 || spell
fi &&

config_query_list LDNS_OPENSSL "Which OpenSSL branch?" \
- 0.9 \
1.0 \
libressl &&

diff --git a/libs/ldns/DEPENDS b/libs/ldns/DEPENDS
index 4fd2a14..cde58bf 100755
--- a/libs/ldns/DEPENDS
+++ b/libs/ldns/DEPENDS
@@ -2,7 +2,7 @@ depends make &&
depends libtool &&

if [[ $LDNS_OPENSSL == "1.0" ]]; then
- depends -sub "1.0" openssl &&
+ depends openssl &&

config_query_option LDNS_OPTS "Enable GOST support?" y \
"--enable-gost" \
diff --git a/libs/ldns/HISTORY b/libs/ldns/HISTORY
index 86d00d2..321716b 100644
--- a/libs/ldns/HISTORY
+++ b/libs/ldns/HISTORY
@@ -1,3 +1,6 @@
+2015-12-05 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * CONFIGURE, DEPENDS: remove support for openssl 0.9
+
2015-03-06 Vlad Glagolev <stealth AT sourcemage.org>
* DEPENDS, CONFIGURE: added libressl build support

diff --git a/net/unbound/CONFIGURE b/net/unbound/CONFIGURE
index 54ef9ec..2b38f08 100755
--- a/net/unbound/CONFIGURE
+++ b/net/unbound/CONFIGURE
@@ -17,7 +17,6 @@ config_query_option UNBOUND_OPTS "Enable threading
support?" y \
message "${MESSAGE_COLOR}WARNING: GOST support requires OpenSSL
1.0${DEFAULT_COLOR}" &&

config_query_list UNBOUND_SSL "Which backend do you want for SSL support?" \
- openssl-0.9 \
openssl-1.0 \
libressl \
nss
diff --git a/net/unbound/DEPENDS b/net/unbound/DEPENDS
index 2d48c23..a3405be0c 100755
--- a/net/unbound/DEPENDS
+++ b/net/unbound/DEPENDS
@@ -3,7 +3,7 @@ depends expat &&
case $UNBOUND_SSL in
openssl-0.9) depends openssl '--with-ssl'
;;
- openssl-1.0) depends -sub "1.0" openssl '--with-ssl'
+ openssl-1.0) depends openssl '--with-ssl'
;;
libressl) depends libressl '--with-ssl'
;;
diff --git a/net/unbound/HISTORY b/net/unbound/HISTORY
index a06a6bd..3acfcf1 100644
--- a/net/unbound/HISTORY
+++ b/net/unbound/HISTORY
@@ -1,3 +1,6 @@
+2015-12-05 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * CONFIGURE, DEPENDS: remove option to use openssl 0.9 as SSL backend
+
2014-12-09 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.5.1; SECURITY_PATCH++ (CVE-2014-8602)




  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (c6516585077b00452f80cb9041419ba1a76dd975), Florian Franzmann, 12/05/2015

Archive powered by MHonArc 2.6.24.

Top of Page