pkgsrc/lang/erlang/Makefile.versions
fhajny 0b0f497c03 Update lang/erlang to 18.1.
Some highlights of the release are:

- ssl: Add possibility to downgrade an SSL/TLS connection to a tcp
  connection, and give back the socket control to a user process.
- ssh: The following new key exchange algorithms are implemented:
  'ecdh-sha2-nistp256', 'ecdh-sha2-nistp384', 'ecdh-sha2-nistp521',
  'diffie-hellman-group14-sha1', 'diffie-hellman-group-exchange-sha1'
  and 'diffie-hellman-group-exchange-sha256'. This raises the
  security level considerably.
- kernel,stdlib,sasl: A mechanism for limiting the amount of text
  that the built-in error logger events will produce has been
  introduced. It is useful for limiting both the size of log files
  and the CPU time used to produce them.

Full release notes:

  http://www.erlang.org/download/otp_src_18.1.readme
2015-09-25 15:15:58 +00:00

75 lines
1.8 KiB
Text

# $NetBSD: Makefile.versions,v 1.20 2015/09/25 15:15:58 fhajny Exp $
DIST_VERSION_MAJOR= 18
DIST_VERSION_MINOR= 1
_VERSIONS= \
asn1 4.0 \
common_test 1.11 \
compiler 6.0.1 \
cosEvent 2.2 \
cosEventDomain 1.2 \
cosFileTransfer 1.2 \
cosNotification 1.2 \
cosProperty 1.2 \
cosTime 1.2 \
cosTransactions 1.3 \
crypto 3.6.1 \
debugger 4.1.1 \
dialyzer 2.8.1 \
diameter 1.11 \
edoc 0.7.17 \
eldap 1.2 \
erl_docgen 0.4 \
erl_interface 3.8 \
erts 7.1 \
et 1.5.1 \
eunit 2.2.11 \
gs 1.6 \
hipe 3.13 \
ic 4.4 \
inets 6.0.1 \
jinterface 1.6 \
kernel 4.1 \
megaco 3.18 \
mnesia 4.13.1 \
observer 2.1 \
odbc 2.11.1 \
orber 3.8 \
os_mon 2.4 \
ose 1.1 \
otp_mibs 1.1 \
parsetools 2.1 \
percept 0.8.11 \
public_key 1.0.1 \
reltool 0.7 \
runtime_tools 1.9.1 \
sasl 2.6 \
snmp 5.2 \
ssh 4.1 \
ssl 7.1 \
stdlib 2.6 \
syntax_tools 1.7 \
test_server 3.9 \
tools 2.8.1 \
typer 0.9.9 \
webtool 0.9 \
wx 1.5 \
xmerl 1.3.8
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);}