Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
a0c4fe24
Commit
a0c4fe24
authored
8 years ago
by
Erik Schnetter
Committed by
becker33
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
OpenSSL: Update to version 1.1.0c (#2885)
parent
1223e438
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
var/spack/repos/builtin/packages/openssl/package.py
+15
-6
15 additions, 6 deletions
var/spack/repos/builtin/packages/openssl/package.py
with
15 additions
and
6 deletions
var/spack/repos/builtin/packages/openssl/package.py
+
15
−
6
View file @
a0c4fe24
...
...
@@ -28,14 +28,18 @@
class
Openssl
(
Package
):
"""
The OpenSSL Project is a collaborative effort to develop a
robust, commercial-grade, full-featured, and Open Source
toolkit implementing the Secure Sockets Layer (SSL v2/v3) and
Transport Layer Security (TLS v1) protocols as well as a
full-strength general purpose cryptography library.
"""
"""
OpenSSL is an open source project that provides a robust,
commercial-grade, and full-featured toolkit for the Transport
Layer Security (TLS) and Secure Sockets Layer (SSL) protocols.
It is also a general-purpose cryptography library.
"""
homepage
=
"
http://www.openssl.org
"
url
=
"
ftp://openssl.org/source/openssl-1.0.1h.tar.gz
"
# Note: Version 1.0.2 is the "long-term support" version that will
# remain supported until 2019. We could thus make this version the
# preferred version, if we find that many packages cannot handle
# version 1.1.
version
(
'
1.1.0c
'
,
'
601e8191f72b18192a937ecf1a800f3f
'
)
version
(
'
1.0.2j
'
,
'
96322138f0b69e61b7212bc53d5e912b
'
)
version
(
'
1.0.2i
'
,
'
678374e63f8df456a697d3e5e5a931fb
'
)
version
(
'
1.0.2h
'
,
'
9392e65072ce4b614c1392eefc1f23d0
'
)
...
...
@@ -49,6 +53,8 @@ class Openssl(Package):
version
(
'
1.0.1h
'
,
'
8d6d684a9430d5cc98a62a5d8fbda8cf
'
)
depends_on
(
"
zlib
"
)
# Also requires make and perl
parallel
=
False
def
handle_fetch_error
(
self
,
error
):
...
...
@@ -67,7 +73,9 @@ def install(self, spec, prefix):
# where it happens automatically?)
env
[
'
KERNEL_BITS
'
]
=
'
64
'
options
=
[
'
zlib
'
,
'
no-krb5
'
,
'
shared
'
]
options
=
[
'
zlib
'
,
'
shared
'
]
if
spec
.
satisfies
(
'
@1.0
'
):
options
.
append
(
'
no-krb5
'
)
config
=
Executable
(
'
./config
'
)
config
(
'
--prefix=%s
'
%
prefix
,
...
...
@@ -80,4 +88,5 @@ def install(self, spec, prefix):
filter_file
(
r
'
-arch x86_64
'
,
''
,
'
Makefile
'
)
make
()
make
(
'
test
'
)
# 'VERBOSE=1'
make
(
'
install
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment