pkgsrc/lang/erlang/Makefile.versions
fhajny eefd48c3b0 Update lang/erlang* to 20.1.
Some highlights for 20.1:

- crypto, public_key: Extend crypto and public_key functions sign and
  verify with:
  - support for RSASSA-PS padding for signatures and for saltlength
    setting
  - X9.31 RSA padding.
  - sha, sha224, sha256, sha384, and sha512 for dss signatures as
    mentioned in NIST SP 800-57 Part 1.
  - ripemd160 to be used for rsa signatures.

- A new tuple in crypto:supports/0 reports supported MAC algorithms.

- diameter:
  - Add service option decode_format to allow incoming messages to be
    decoded into maps instead of records.
  - Decode performance has been improved.
  - Add service/transport option avp_dictionaries to give better
    support for dictionaries only defining AVPs.

- erts: Upgraded the ERTS internal PCRE library from version 8.40 to
  version 8.41.

- erts, kernel, tools: Profiling with lock counting can now be fully
  toggled at runtime in the lock counting emulator (-emu_type lcnt).

- erts: The zlib module has been refactored and all its operations
  will now yield appropriately, allowing them to be used freely in
  concurrent applications.

- erts, tools: Add erlang:iolist_to_iovec/1, which converts an
  iolist() to an erlang:iovec(), which is suitable for use with
  enif_inspect_iovec().

- erts: Add new nif API functions for managing an I/O Queue.

- observer/crashdump_viewer:
  - Reading of crash dumps with many binaries is optimized.
  - A progress bar is shown when the detail view for a process is
    opened.
  - The cdv script now sets ERL_CRASH_DUMP_SECONDS=0 to avoid
    generating a new crash dump from the node running the Crashdump
    Viewer.

- observer: Add system statistics and limits to frontpage in observer.

- public_key, ssl**: Improved error propagation and reports

- ssh: A new option modify_algorithms is implemented. It enables
  specifying changes on the default algorithms list.

- tools/xref: The predefined Xref analysis locals_not_used now
  understands the -on_load() attribute and does not report unused
  functions.

- tools/fprof: When sampling multiple processes and analyzing with
  totals set to true, the output now sums together all caller and
  callee entries which concerns the same function.
2017-10-02 18:10:38 +00:00

72 lines
1.8 KiB
Text

# $NetBSD: Makefile.versions,v 1.29 2017/10/02 18:10:38 fhajny Exp $
DIST_VERSION_MAJOR= 20
DIST_VERSION_MINOR= 1
_VERSIONS= \
asn1 5.0.3 \
common_test 1.15.2 \
compiler 7.1.2 \
cosEvent 2.2.1 \
cosEventDomain 1.2.1 \
cosFileTransfer 1.2.1 \
cosNotification 1.2.2 \
cosProperty 1.2.2 \
cosTime 1.2.2 \
cosTransactions 1.3.2 \
crypto 4.1 \
debugger 4.2.3 \
dialyzer 3.2.2 \
diameter 2.1 \
edoc 0.9.1 \
eldap 1.2.2 \
erl_docgen 0.7.1 \
erl_interface 3.10 \
erts 9.1 \
et 1.6.1 \
eunit 2.3.4 \
gs 1.6.2 \
hipe 3.16.1 \
ic 4.4.2 \
inets 6.4.2 \
jinterface 1.8 \
kernel 5.4 \
megaco 3.18.2 \
mnesia 4.15.1 \
observer 2.5 \
odbc 2.12 \
orber 3.8.3 \
os_mon 2.4.3 \
otp_mibs 1.1.1 \
parsetools 2.1.5 \
percept 0.9 \
public_key 1.5 \
reltool 0.7.5 \
runtime_tools 1.12.2 \
sasl 3.1 \
snmp 5.2.7 \
ssh 4.6 \
ssl 8.2.1 \
stdlib 3.4.2 \
syntax_tools 2.1.3 \
tools 2.11 \
typer 0.9.12 \
wx 1.8.2 \
xmerl 1.3.15
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);}