pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/lang Update lang/erlang* to 20.0.
details: https://anonhg.NetBSD.org/pkgsrc/rev/679aa9045140
branches: trunk
changeset: 364771:679aa9045140
user: fhajny <fhajny%pkgsrc.org@localhost>
date: Tue Jul 04 11:40:48 2017 +0000
description:
Update lang/erlang* to 20.0.
Potential Incompatibilities
---------------------------
- ERTS:
- The non SMP Erlang VM is deprecated and not built by default
- Remove deprecated erlang:hash/2
- erlang:statistics/1 with scheduler_wall_time now also includes
info about dirty CPU schedulers.
- The new purge strategy introduced in OTP 19.1 is mandatory and
slightly incompatible for processes holding funs
- The NIF library reload is not supported anymore.
- Atoms can now contain arbitrary unicode characters which means
that the DFLAG_UTF8_ATOMS capability in the distribution protocol
must be supported if an OTP 20 node should accept the connection
with another node or library.
- Asn1: Deprecated module and functions removed (asn1rt,
asn1ct:encode/3 and decode/3)
- Ssh: client only option in a call to start a daemon will now fail
Highlights
----------
- Erts:
- Dirty schedulers enabled and supported on VM with SMP support.
- support for "dirty" BIFs and "dirty" GC.
- erlang:garbage_collect/2 for control of minor or major GC
- Erlang literals are no longer copied when sending messages.
- Improved performance for large ETS tables, >256 entries (except
ordered_set)
- erlang:system_info/1 atom_count and atom_limit
- Reduced memory pressure by converting sub-binaries to
heap-binaries during GC
- enif_select, map an external event to message
- Improvements of timers internally in the VM resulting in reduced
memory consumption and more efficient administration for timers
- Compiler:
- Code generation for complicated guards is improved.
- Warnings for repeated identical map keys. #{'a'=>1, 'b'=>2,
'a'=>3} will warn for the repeated key a.
- By default there is now a warning when export_all is used. Can be
disabled
- Pattern matching for maps is optimized
- New option deterministic to omit path to source + options info the
BEAM file.
- Atoms may now contain arbitrary unicode characters.
- compile:file/2 has an option to include extra chunks in the BEAM
file.
- Misc other applications
- Significantly updated string module with unicode support and many
new functions
- crypto now supports OpenSSL 1.1
- Unnamed ets tables optimized
- gen_fsm is deprecated and replaced by gen_statem
- A new event manager to handle a subset of OS signals in Erlang
- Optimized sets add_element, del_element and union
- Added rand:jump/0-1
- When a gen_server crashes, the stacktrace for the client will be
printed to facilitate debugging.
- take/2 has been added to dict, orddict, and gb_trees.
- take_any/2 has been added to gb_trees
- erl_tar support for long path names and new file formats
- asn1: the new maps option changes the representation of SEQUENCE
to be maps instead of records
- A TLS client will by default call
public_key:pkix_verify_hostname/2 to verify the hostname
- ssl: DTLS documented in the API, experimental
- ssh: improving security, removing and adding algorithms
- New math:fmod/2
diffstat:
lang/erlang-doc/PLIST | 83 +---------------
lang/erlang-doc/distinfo | 10 +-
lang/erlang-man/PLIST | 8 +-
lang/erlang-man/distinfo | 10 +-
lang/erlang/Makefile.versions | 74 +++++++-------
lang/erlang/PLIST | 208 +++++------------------------------------
lang/erlang/PLIST.hipe | 16 ++-
lang/erlang/distinfo | 12 +-
lang/erlang/patches/patch-am | 17 ---
lang/erlang/patches/patch-ao | 17 ---
10 files changed, 101 insertions(+), 354 deletions(-)
diffs (truncated from 1027 to 300 lines):
diff -r a538099e0f4d -r 679aa9045140 lang/erlang-doc/PLIST
--- a/lang/erlang-doc/PLIST Tue Jul 04 10:08:10 2017 +0000
+++ b/lang/erlang-doc/PLIST Tue Jul 04 11:40:48 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.25 2017/03/17 14:37:05 fhajny Exp $
+@comment $NetBSD: PLIST,v 1.26 2017/07/04 11:40:48 fhajny Exp $
lib/erlang/doc/applications.html
lib/erlang/doc/design_principles/applications.html
lib/erlang/doc/design_principles/appup_cookbook.html
@@ -13,7 +13,6 @@
lib/erlang/doc/design_principles/dist5.gif
lib/erlang/doc/design_principles/distributed_applications.html
lib/erlang/doc/design_principles/events.html
-lib/erlang/doc/design_principles/fsm.html
lib/erlang/doc/design_principles/gen_server_concepts.html
lib/erlang/doc/design_principles/inclappls.gif
lib/erlang/doc/design_principles/included_applications.html
@@ -51,6 +50,7 @@
lib/erlang/doc/efficiency_guide/myths.html
lib/erlang/doc/efficiency_guide/processes.html
lib/erlang/doc/efficiency_guide/profiling.html
+lib/erlang/doc/efficiency_guide/retired_myths.html
lib/erlang/doc/efficiency_guide/tablesDatabases.html
lib/erlang/doc/efficiency_guide/users_guide.html
lib/erlang/doc/embedded/embedded_nt.html
@@ -63,6 +63,7 @@
lib/erlang/doc/getting_started/robustness.html
lib/erlang/doc/getting_started/seq_prog.html
lib/erlang/doc/getting_started/users_guide.html
+lib/erlang/doc/highlight.css
lib/erlang/doc/index.html
lib/erlang/doc/installation_guide/INSTALL-CROSS.html
lib/erlang/doc/installation_guide/INSTALL-WIN32.html
@@ -79,6 +80,8 @@
lib/erlang/doc/js/flipmenu/flip_open.gif
lib/erlang/doc/js/flipmenu/flip_static.gif
lib/erlang/doc/js/flipmenu/flipmenu.js
+lib/erlang/doc/js/highlight.js
+lib/erlang/doc/js/highlight.pack.js
lib/erlang/doc/man_index.html
lib/erlang/doc/nyi.html
lib/erlang/doc/oam/oam_intro.html
@@ -187,7 +190,6 @@
lib/erlang/lib/asn1-${VERSION.asn1}/doc/html/asn1_overview.html
lib/erlang/lib/asn1-${VERSION.asn1}/doc/html/asn1_spec.html
lib/erlang/lib/asn1-${VERSION.asn1}/doc/html/asn1ct.html
-lib/erlang/lib/asn1-${VERSION.asn1}/doc/html/asn1rt.html
lib/erlang/lib/asn1-${VERSION.asn1}/doc/html/exclusive_Win_But.gif
lib/erlang/lib/asn1-${VERSION.asn1}/doc/html/index.html
lib/erlang/lib/asn1-${VERSION.asn1}/doc/html/notes.html
@@ -429,6 +431,7 @@
lib/erlang/lib/crypto-${VERSION.crypto}/doc/html/crypto.eix
lib/erlang/lib/crypto-${VERSION.crypto}/doc/html/crypto.html
lib/erlang/lib/crypto-${VERSION.crypto}/doc/html/crypto_app.html
+lib/erlang/lib/crypto-${VERSION.crypto}/doc/html/fips.html
lib/erlang/lib/crypto-${VERSION.crypto}/doc/html/index.html
lib/erlang/lib/crypto-${VERSION.crypto}/doc/html/licenses.html
lib/erlang/lib/crypto-${VERSION.crypto}/doc/html/notes.html
@@ -461,6 +464,7 @@
lib/erlang/lib/dialyzer-${VERSION.dialyzer}/doc/html/index.html
lib/erlang/lib/dialyzer-${VERSION.dialyzer}/doc/html/notes.html
lib/erlang/lib/dialyzer-${VERSION.dialyzer}/doc/html/release_notes.html
+lib/erlang/lib/dialyzer-${VERSION.dialyzer}/doc/html/typer.html
lib/erlang/lib/dialyzer-${VERSION.dialyzer}/doc/html/users_guide.html
lib/erlang/lib/dialyzer-${VERSION.dialyzer}/doc/pdf/dialyzer-${VERSION.dialyzer}.pdf
lib/erlang/lib/dialyzer-${VERSION.dialyzer}/info
@@ -578,47 +582,6 @@
lib/erlang/lib/eunit-${VERSION.eunit}/doc/html/users_guide.html
lib/erlang/lib/eunit-${VERSION.eunit}/doc/pdf/eunit-${VERSION.eunit}.pdf
lib/erlang/lib/eunit-${VERSION.eunit}/info
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/gs.eix
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/gs.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/gs_chapter1.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/gs_chapter2.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/gs_chapter3.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/gs_chapter4.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/gs_chapter5.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/gs_chapter6.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/gs_chapter7.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/gs_chapter8.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/arc.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/buttons.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/ex1.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/ex10.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/ex11.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/ex12.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/ex13.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/ex14.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/ex15.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/ex16.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/ex8.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/ex9.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/gs1-1-image-1.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/gs1-1-image-2.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/gs1-1-image-3.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/gs1-1-image-4.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/image.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/line.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/oval.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/packer1.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/packer2.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/polygon.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/rectangle.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/text.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/images/window.gif
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/index.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/notes.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/release_notes.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/html/users_guide.html
-lib/erlang/lib/gs-${VERSION.gs}/doc/pdf/gs-${VERSION.gs}.pdf
-lib/erlang/lib/gs-${VERSION.gs}/info
lib/erlang/lib/hipe-${VERSION.hipe}/doc/html/HiPE_app.html
lib/erlang/lib/hipe-${VERSION.hipe}/doc/html/hipe.eix
lib/erlang/lib/hipe-${VERSION.hipe}/doc/html/index.html
@@ -1046,29 +1009,6 @@
lib/erlang/lib/parsetools-${VERSION.parsetools}/doc/html/yecc.html
lib/erlang/lib/parsetools-${VERSION.parsetools}/doc/pdf/parsetools-${VERSION.parsetools}.pdf
lib/erlang/lib/parsetools-${VERSION.parsetools}/info
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/egd.html
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/egd_ug.html
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/img_esi_result.gif
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/index.html
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/notes.html
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/percept.eix
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/percept.html
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/percept_compare.gif
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/percept_examples.html
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/percept_overview.gif
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/percept_processes.gif
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/percept_processinfo.gif
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/percept_profile.html
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/percept_ug.html
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/release_notes.html
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/stylesheet.css
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/test1.gif
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/test2.gif
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/test3.gif
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/test4.gif
-lib/erlang/lib/percept-${VERSION.percept}/doc/html/users_guide.html
-lib/erlang/lib/percept-${VERSION.percept}/doc/pdf/percept-${VERSION.percept}.pdf
-lib/erlang/lib/percept-${VERSION.percept}/info
lib/erlang/lib/public_key-${VERSION.public_key}/doc/html/index.html
lib/erlang/lib/public_key-${VERSION.public_key}/doc/html/introduction.html
lib/erlang/lib/public_key-${VERSION.public_key}/doc/html/note.gif
@@ -1244,7 +1184,7 @@
lib/erlang/lib/ssl-${VERSION.ssl}/info
lib/erlang/lib/stdlib-${VERSION.stdlib}/doc/html/STDLIB_app.html
lib/erlang/lib/stdlib-${VERSION.stdlib}/doc/html/array.html
-lib/erlang/lib/stdlib-${VERSION.stdlib}/doc/html/assert.hrl.xml.html
+lib/erlang/lib/stdlib-${VERSION.stdlib}/doc/html/assert.hrl.html
lib/erlang/lib/stdlib-${VERSION.stdlib}/doc/html/base64.html
lib/erlang/lib/stdlib-${VERSION.stdlib}/doc/html/beam_lib.html
lib/erlang/lib/stdlib-${VERSION.stdlib}/doc/html/binary.html
@@ -1360,13 +1300,6 @@
lib/erlang/lib/tools-${VERSION.tools}/doc/html/xref_chapter.html
lib/erlang/lib/tools-${VERSION.tools}/doc/pdf/tools-${VERSION.tools}.pdf
lib/erlang/lib/tools-${VERSION.tools}/info
-lib/erlang/lib/typer-${VERSION.typer}/doc/html/TypEr_app.html
-lib/erlang/lib/typer-${VERSION.typer}/doc/html/index.html
-lib/erlang/lib/typer-${VERSION.typer}/doc/html/notes.html
-lib/erlang/lib/typer-${VERSION.typer}/doc/html/release_notes.html
-lib/erlang/lib/typer-${VERSION.typer}/doc/html/typer.eix
-lib/erlang/lib/typer-${VERSION.typer}/doc/pdf/typer-${VERSION.typer}.pdf
-lib/erlang/lib/typer-${VERSION.typer}/info
lib/erlang/lib/wx-${VERSION.wx}/doc/html/chapter.html
lib/erlang/lib/wx-${VERSION.wx}/doc/html/gl.html
lib/erlang/lib/wx-${VERSION.wx}/doc/html/glu.html
diff -r a538099e0f4d -r 679aa9045140 lang/erlang-doc/distinfo
--- a/lang/erlang-doc/distinfo Tue Jul 04 10:08:10 2017 +0000
+++ b/lang/erlang-doc/distinfo Tue Jul 04 11:40:48 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.23 2017/03/17 14:37:05 fhajny Exp $
+$NetBSD: distinfo,v 1.24 2017/07/04 11:40:48 fhajny Exp $
-SHA1 (erlang/otp_doc_html_19.3.tar.gz) = 43bb75dd78aca801db70aab2ec2ee91661d58a59
-RMD160 (erlang/otp_doc_html_19.3.tar.gz) = a7b3dc359d8fb00689d717c478a52e1e8818966b
-SHA512 (erlang/otp_doc_html_19.3.tar.gz) = a70d2c470fa1dc0594b20af73ba36ccb7702b4192960e6fc0296738175215a43450f9bf558637f7f5e40757f7a15dcf4f1ae8a88515e211cd3c0fae45c5e1858
-Size (erlang/otp_doc_html_19.3.tar.gz) = 35818689 bytes
+SHA1 (erlang/otp_doc_html_20.0.tar.gz) = 0aed4993df446e78f634f0efb6b2237086e81511
+RMD160 (erlang/otp_doc_html_20.0.tar.gz) = f67c32955884ebdb2951e4ca33417339938fd626
+SHA512 (erlang/otp_doc_html_20.0.tar.gz) = a183943a3a2636489cfdf3e7ede8dc4233db84a271b4b8bd655b57b4abac597b797f035d77087be72e823638898d202e08c53decb565fc10f2e444dcc6da8628
+Size (erlang/otp_doc_html_20.0.tar.gz) = 33948386 bytes
diff -r a538099e0f4d -r 679aa9045140 lang/erlang-man/PLIST
--- a/lang/erlang-man/PLIST Tue Jul 04 10:08:10 2017 +0000
+++ b/lang/erlang-man/PLIST Tue Jul 04 11:40:48 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.21 2017/03/17 14:37:05 fhajny Exp $
+@comment $NetBSD: PLIST,v 1.22 2017/07/04 11:40:48 fhajny Exp $
lib/erlang/man/man1/cdv.1
lib/erlang/man/man1/ct_run.1
lib/erlang/man/man1/diameterc.1
@@ -84,7 +84,6 @@
lib/erlang/man/man3/application.3
lib/erlang/man/man3/array.3
lib/erlang/man/man3/asn1ct.3
-lib/erlang/man/man3/asn1rt.3
lib/erlang/man/man3/auth.3
lib/erlang/man/man3/base64.3
lib/erlang/man/man3/beam_lib.3
@@ -144,7 +143,6 @@
lib/erlang/man/man3/edoc_layout.3
lib/erlang/man/man3/edoc_lib.3
lib/erlang/man/man3/edoc_run.3
-lib/erlang/man/man3/egd.3
lib/erlang/man/man3/ei.3
lib/erlang/man/man3/ei_connect.3
lib/erlang/man/man3/eldap.3
@@ -216,7 +214,6 @@
lib/erlang/man/man3/global.3
lib/erlang/man/man3/global_group.3
lib/erlang/man/man3/glu.3
-lib/erlang/man/man3/gs.3
lib/erlang/man/man3/heart.3
lib/erlang/man/man3/http_uri.3
lib/erlang/man/man3/httpc.3
@@ -289,8 +286,6 @@
lib/erlang/man/man3/os_mon_mib.3
lib/erlang/man/man3/os_sup.3
lib/erlang/man/man3/otp_mib.3
-lib/erlang/man/man3/percept.3
-lib/erlang/man/man3/percept_profile.3
lib/erlang/man/man3/pg2.3
lib/erlang/man/man3/pool.3
lib/erlang/man/man3/prettypr.3
@@ -368,6 +363,7 @@
lib/erlang/man/man3/tftp.3
lib/erlang/man/man3/timer.3
lib/erlang/man/man3/ttb.3
+lib/erlang/man/man3/typer.3
lib/erlang/man/man3/unicode.3
lib/erlang/man/man3/unix_telnet.3
lib/erlang/man/man3/user.3
diff -r a538099e0f4d -r 679aa9045140 lang/erlang-man/distinfo
--- a/lang/erlang-man/distinfo Tue Jul 04 10:08:10 2017 +0000
+++ b/lang/erlang-man/distinfo Tue Jul 04 11:40:48 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.23 2017/03/17 14:37:05 fhajny Exp $
+$NetBSD: distinfo,v 1.24 2017/07/04 11:40:48 fhajny Exp $
-SHA1 (erlang/otp_doc_man_19.3.tar.gz) = 307c3b12081b94b892c24c9469f826397a9587ac
-RMD160 (erlang/otp_doc_man_19.3.tar.gz) = b450d352dc46dbfaad5ed27a242c1c3d206dcfc4
-SHA512 (erlang/otp_doc_man_19.3.tar.gz) = 675a0d2d5972660a60de17c832e630f646f942d23815427eb0dec3a5ca1c44ed8fe35a9c30f8b608dedfd10f6fb1e47e958ea6e32e296b6f6809b1844b4da9a1
-Size (erlang/otp_doc_man_19.3.tar.gz) = 1410781 bytes
+SHA1 (erlang/otp_doc_man_20.0.tar.gz) = f9b5fe0d50af31baeee68858b16dccb76a028165
+RMD160 (erlang/otp_doc_man_20.0.tar.gz) = 907b947fd33b2068ff3d8544a6a81f62ce9b2429
+SHA512 (erlang/otp_doc_man_20.0.tar.gz) = 8f3c9b39c5574c239fe4f8d220884667d9d8b8231e923da8caebedc2cfd4db61a3b71a45788c3d63ae4cecc11884df9143e164c544356145977010f31c388e99
+Size (erlang/otp_doc_man_20.0.tar.gz) = 1430939 bytes
diff -r a538099e0f4d -r 679aa9045140 lang/erlang/Makefile.versions
--- a/lang/erlang/Makefile.versions Tue Jul 04 10:08:10 2017 +0000
+++ b/lang/erlang/Makefile.versions Tue Jul 04 11:40:48 2017 +0000
@@ -1,58 +1,58 @@
-# $NetBSD: Makefile.versions,v 1.27 2017/03/17 14:37:04 fhajny Exp $
+# $NetBSD: Makefile.versions,v 1.28 2017/07/04 11:40:48 fhajny Exp $
-DIST_VERSION_MAJOR= 19
-DIST_VERSION_MINOR= 3
+DIST_VERSION_MAJOR= 20
+DIST_VERSION_MINOR= 0
_VERSIONS= \
- asn1 4.0.4 \
- common_test 1.14 \
- compiler 7.0.4 \
+ asn1 5.0 \
+ common_test 1.15 \
+ compiler 7.1 \
cosEvent 2.2.1 \
cosEventDomain 1.2.1 \
cosFileTransfer 1.2.1 \
cosNotification 1.2.2 \
- cosProperty 1.2.1 \
+ cosProperty 1.2.2 \
cosTime 1.2.2 \
cosTransactions 1.3.2 \
- crypto 3.7.3 \
- debugger 4.2.1 \
- dialyzer 3.1 \
- diameter 1.12.2 \
- edoc 0.8.1 \
+ crypto 4.0 \
+ debugger 4.2.2 \
+ dialyzer 3.2 \
+ diameter 2.0 \
+ edoc 0.9 \
eldap 1.2.2 \
- erl_docgen 0.6.1 \
- erl_interface 3.9.3 \
- erts 8.3 \
+ erl_docgen 0.7 \
+ erl_interface 3.10 \
+ erts 9.0 \
et 1.6 \
- eunit 2.3.2 \
+ eunit 2.3.3 \
gs 1.6.2 \
- hipe 3.15.4 \
+ hipe 3.16 \
ic 4.4.2 \
- inets 6.3.6 \
- jinterface 1.7.1 \
Home |
Main Index |
Thread Index |
Old Index