1ae94db05e
Some highlights: crypto, ssl: - The crypto API is extended to use private/public keys stored in an Engine for sign/verify or encrypt/decrypt operations. - The ssl application provides an API to use this new engine concept in TLS. ssh: - SSH can now fetch the host key from the private keys stored in an Engine. See the crypto application for details about Engines. ssl: - A new command line option -ssl_dist_optfile has been added to facilitate specifying the many options needed when using SSL as the distribution protocol. stdlib: - Improve performance of the new string functionality when handling ASCII characters. Full release notes: http://www.erlang.org/download/otp_src_20.2.readme
72 lines
1.8 KiB
Text
72 lines
1.8 KiB
Text
# $NetBSD: Makefile.versions,v 1.30 2017/12/13 14:45:20 fhajny Exp $
|
|
|
|
DIST_VERSION_MAJOR= 20
|
|
DIST_VERSION_MINOR= 2
|
|
|
|
_VERSIONS= \
|
|
asn1 5.0.4 \
|
|
common_test 1.15.3 \
|
|
compiler 7.1.4 \
|
|
cosEvent 2.2.2 \
|
|
cosEventDomain 1.2.2 \
|
|
cosFileTransfer 1.2.2 \
|
|
cosNotification 1.2.3 \
|
|
cosProperty 1.2.3 \
|
|
cosTime 1.2.3 \
|
|
cosTransactions 1.3.3 \
|
|
crypto 4.2 \
|
|
debugger 4.2.4 \
|
|
dialyzer 3.2.3 \
|
|
diameter 2.1.3 \
|
|
edoc 0.9.2 \
|
|
eldap 1.2.3 \
|
|
erl_docgen 0.7.2 \
|
|
erl_interface 3.10.1 \
|
|
erts 9.2 \
|
|
et 1.6.1 \
|
|
eunit 2.3.5 \
|
|
gs 1.6.2 \
|
|
hipe 3.17 \
|
|
ic 4.4.3 \
|
|
inets 6.4.5 \
|
|
jinterface 1.8.1 \
|
|
kernel 5.4.1 \
|
|
megaco 3.18.3 \
|
|
mnesia 4.15.2 \
|
|
observer 2.6 \
|
|
odbc 2.12.1 \
|
|
orber 3.8.4 \
|
|
os_mon 2.4.4 \
|
|
otp_mibs 1.1.2 \
|
|
parsetools 2.1.6 \
|
|
percept 0.9 \
|
|
public_key 1.5.2 \
|
|
reltool 0.7.5 \
|
|
runtime_tools 1.12.3 \
|
|
sasl 3.1.1 \
|
|
snmp 5.2.9 \
|
|
ssh 4.6.3 \
|
|
ssl 8.2.3 \
|
|
stdlib 3.4.3 \
|
|
syntax_tools 2.1.4 \
|
|
tools 2.11.1 \
|
|
typer 0.9.12 \
|
|
wx 1.8.3 \
|
|
xmerl 1.3.16
|
|
|
|
PLIST_SUBST+= VERSION=${DIST_VERSION_MAJOR}
|
|
|
|
.for name version in ${_VERSIONS}
|
|
VERSION.${name}=${version}
|
|
PLIST_SUBST+= VERSION.${name}=${version}
|
|
.endfor
|
|
|
|
# Generate PLIST
|
|
.for pkg version in ${_VERSIONS}
|
|
PRINT_PLIST_AWK+= {if ($$0 ~ /\/${pkg}-${version}\//) {sub(/\/${pkg}-${version}\//,"/${pkg}-$${VERSION.${pkg}}/", $$0);}}
|
|
# documentation:
|
|
PRINT_PLIST_AWK+= {gsub(/\/${pkg}-${version}\.pdf/,"/${pkg}-$${VERSION.${pkg}}.pdf", $$0);}
|
|
.endfor
|
|
PRINT_PLIST_AWK+= {if ($$0 ~ /\/releases\/${DIST_VERSION_MAJOR}\//) {sub(/\/releases\/${DIST_VERSION_MAJOR}\//,"/releases/$${VERSION}/", $$0);}}
|
|
# documentation:
|
|
PRINT_PLIST_AWK+= {gsub(/\/otp-system-documentation-${VERSION.erts}\.pdf/,"/otp-system-documentation-$${VERSION.erts}.pdf", $$0);}
|