buildout.cfg 2.86 KB
Newer Older
1 2 3 4 5 6 7
# OpenSSL - a toolkit implementing SSL v2/v3 and TLS v1 protocols as
#           well as a full-strength general purpose cryptography
#           library.
# http://www.openssl.org/

[buildout]
extends =
8
  ../ca-certificates/buildout.cfg
9
  ../coreutils/buildout.cfg
10 11 12
  ../patch/buildout.cfg
  ../perl/buildout.cfg
  ../zlib/buildout.cfg
13 14

parts =
15
  openssl-output
16 17

[openssl]
18
recipe = slapos.recipe.cmmi
19
shared = true
20 21
url = https://www.openssl.org/source/openssl-1.1.1g.tar.gz
md5sum = 76766e98997660138cdaf13a187bd234
22 23
location = @@LOCATION@@
# 'prefix' option to override --openssldir/--prefix (which is useful
24
# when combined with DESTDIR). Used by slapos.package.git/obs
25
prefix = ${:location}
26
make-install-extra =
27 28 29 30 31 32 33 34 35 36 37 38 39 40
certs = ${:location}/etc/ssl/certs
configure-command = ./config
configure-options =
  --with-zlib-include=${zlib:location}/include
  --with-zlib-lib=${zlib:location}/lib
  --openssldir=${:prefix}/etc/ssl
  --prefix=${:prefix}
  --libdir=lib
  shared no-idea no-mdc2 no-rc5 zlib
  -Wl,-rpath=${zlib:location}/lib -Wl,-rpath=${:location}/lib
  && make depend
make-options =
  SHARED_LDFLAGS='-Wl,-rpath=${:location}/lib -Wl,-rpath=${zlib:location}/lib'
make-targets =
41
  -j1 install_sw install_ssldirs ${:make-install-extra} &&
42 43
  rm -f ${:certs}/* &&
  for i in ${ca-certificates:location}/certs/*/*.crt; do
44
    ln -sfv $i ${:certs}/`${:location}/bin/openssl x509 -hash -noout -in $i`.0
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
  ; done
environment =
  PERL=${perl:location}/bin/perl

[openssl-output]
# Shared binary location to ease migration
recipe = plone.recipe.command
stop-on-error = true
update-command = ${:command}
command = ${coreutils-output:test} -x ${:openssl}
openssl = ${openssl:location}/bin/openssl

[openssl-1.0]
recipe = slapos.recipe.cmmi
shared = true
60 61
url = https://www.openssl.org/source/openssl-1.0.2u.tar.gz
md5sum = cdc2638f789ecc2db2c91488265686c1
62
location = @@LOCATION@@
63 64 65
# 'prefix' option to override --openssldir/--prefix (which is useful
# when combined with INSTALL_PREFIX). Used by slapos.package.git/obs
prefix = ${:location}
66
patch-binary = ${patch:location}/bin/patch
67
patches =
68
  ${:_profile_base_location_}/openssl-nodoc.patch#a78c14908fe9ec624b1fb9fa97e01bb9
69
  ${:_profile_base_location_}/openssl-1.0.2d-parallel-build.patch#e4cf66a48a85a0da68fd4842e6fab54b
70
patch-options = -p1
71 72 73 74
configure-command = ./config
configure-options =
  -I${zlib:location}/include
  -L${zlib:location}/lib
75 76
  --openssldir=${:prefix}/etc/ssl
  --prefix=${:prefix}
77
  --libdir=lib
78
  shared no-idea no-mdc2 no-rc5 zlib
79
  -Wl,-rpath=${zlib:location}/lib -Wl,-rpath=${:location}/lib
80
  && make depend
81 82
make-options =
  SHARED_LDFLAGS='-Wl,-rpath=${:location}/lib -Wl,-rpath=${zlib:location}/lib'
83
make-targets =
84 85
  install_sw && x=${:location}/etc/ssl/certs && rm -f $x/* &&
  for i in ${ca-certificates:location}/certs/*/*.crt; do
86
    ln -sfv $i $x/`${:location}/bin/openssl x509 -hash -noout -in $i`.0
87
  ; done
88 89
environment =
  PERL=${perl:location}/bin/perl