summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralalazo <massimiliano.culpo@googlemail.com>2016-03-18 11:08:55 +0100
committeralalazo <massimiliano.culpo@googlemail.com>2016-03-18 11:08:55 +0100
commit82ba0c6c07406a2accc8f50e4619d5379b24aca1 (patch)
tree753663a030938a2d7c85420469ff3a6b2ddacb9e
parentf9438c75d0b07a149224408793e9b63968bb276b (diff)
parent4cf4bf3a0343fc93d6f0c14dd89956fa03b8f738 (diff)
downloadspack-82ba0c6c07406a2accc8f50e4619d5379b24aca1.tar.gz
spack-82ba0c6c07406a2accc8f50e4619d5379b24aca1.tar.bz2
spack-82ba0c6c07406a2accc8f50e4619d5379b24aca1.tar.xz
spack-82ba0c6c07406a2accc8f50e4619d5379b24aca1.zip
Merge branch 'bugfix/openssl' into features/env_objects_flying_around
-rw-r--r--var/spack/repos/builtin/packages/openssl/package.py29
1 files changed, 17 insertions, 12 deletions
diff --git a/var/spack/repos/builtin/packages/openssl/package.py b/var/spack/repos/builtin/packages/openssl/package.py
index 70afaf4038..22d538531a 100644
--- a/var/spack/repos/builtin/packages/openssl/package.py
+++ b/var/spack/repos/builtin/packages/openssl/package.py
@@ -1,4 +1,4 @@
-import urllib
+import urllib2
import llnl.util.tty as tty
from spack import *
@@ -37,17 +37,22 @@ class Openssl(Package):
version_number = '.'.join([str(x) for x in version[:-1]])
older_url = older.format(version_number=version_number, version_full=version)
latest_url = latest.format(version=version)
- response = urllib.urlopen(latest.format(version=version))
- if response.getcode() == 404:
- openssl_url = older_url
- # Checks if we already warned the user for this particular version of OpenSSL.
- # If not we display a warning message and mark this version
- if not warnings_given_to_user.get(version, False):
- tty.warn('This installation depends on an old version of OpenSSL, which may have known security issues. ')
- tty.warn('Consider updating to the latest version of this package.')
- tty.warn('More details at {homepage}'.format(homepage=Openssl.homepage))
- warnings_given_to_user[version] = True
- else:
+ try:
+ response = urllib2.urlopen(latest.format(version=version), timeout=5)
+ if response.getcode() == 404:
+ openssl_url = older_url
+ # Checks if we already warned the user for this particular version of OpenSSL.
+ # If not we display a warning message and mark this version
+ if not warnings_given_to_user.get(version, False):
+ tty.warn('This installation depends on an old version of OpenSSL, which may have known security issues. ')
+ tty.warn('Consider updating to the latest version of this package.')
+ tty.warn('More details at {homepage}'.format(homepage=Openssl.homepage))
+ warnings_given_to_user[version] = True
+ else:
+ openssl_url = latest_url
+ except urllib2.URLError:
+ tty.warn('Cannot connect to network to retrieve OpenSSL version. Using default url.')
+ warnings_given_to_user[version] = True
openssl_url = latest_url
# Store the computed URL
openssl_urls[version] = openssl_url