From Fedora Project Wiki
(Started adding packages which needs to be ported to R16)
(Fixed building etap with Erlang R16B)
Line 63: Line 63:
* Fix all packages which requires parametrized modules (I already rebuild mochiweb with the patch which fixes it).
* Fix all packages which requires parametrized modules (I already rebuild mochiweb with the patch which fixes it).
** <s>[https://bugzilla.redhat.com/913985 erlang-meck]</s> - FIXED.
** <s>[https://bugzilla.redhat.com/913985 erlang-meck]</s> - FIXED.
** [https://bugzilla.redhat.com/913982 erlang-etap]
** <s>[https://bugzilla.redhat.com/913982 erlang-etap]</s> - FIXED.


== How To Test ==
== How To Test ==

Revision as of 17:57, 2 March 2013

Erlang/OTP R16

Summary

Update Erlang to the upstream R16 release.

Owners

  • email: lemenkov@gmail.com

Current status

  • Targeted release: Fedora 19
  • Last updated: 2012-03-02
  • Percentage of completion: 25%

Timeline

Detailed Description

Erlang is a general-purpose concurrent programming language and runtime system. The sequential subset of Erlang is a functional language, with strict evaluation, single assignment, and dynamic typing. For concurrency it follows the Actor model. It was designed by Ericsson to support distributed, fault-tolerant, soft-real-time, non-stop applications. The first version was developed by Joe Armstrong in 1986. It supports hot swapping, thus code can be changed without stopping a system. Erlang was originally a proprietary language within Ericsson, but was released as open source in 1998.

While threads are considered a complicated and error-prone topic in most languages, Erlang provides language-level features for creating and managing processes with the aim of simplifying concurrent programming. Though all concurrency is explicit in Erlang, processes communicate using message passing instead of shared variables, which removes the need for locks.

The above text was taken from en:wikipedia:erlang

The status of Erlang and related packages in Fedora/EPEL is shown at Erlang SIG page.

Benefit to Fedora

Several notable improvements (and incompatible changes) were introduced in this version. Some highlights are:

  • Optimized handling of processes in the VM
    • New internal process table allowing for parallel reads and writes
  • Dynamic allocation of port structures, allowing the default for maximum ports to be raised to 65536 (from 1024)
  • Full support for UTF-8 in the sources. The default file encoding will be ISO-Latin-1 in R16, but will be changed to UTF-8 in R17.
  • The Pman application has been superseded by the Observer application. Pman will be removed in R16.
  • Column numbers in compiler error messages which breaks compatibility regarding the abstract format but simplifies bug hunting even more.
  • The http client (from Inets application) now support HTTPS through a proxy
  • Asn1 application: Major cleanup of back ends and optimizations of mainly decode for PER and UPER.
  • Removal of the unsupported 'packages' from the R16.
  • A beginning of the removal of the parametrized modules. This affects mochiweb.
  • Several gen_tcp speedups.
  • Dialyzer optimizations
  • Multicore improvements, parallel code loading.
  • All sources are fully covered by type specs. BIFs are visible in erlang sources (as NIFs).
  • Fully supports the unstable development branch of wxWidgets-2.9.

See full changelog for the detailed description of changes:

Scope

Required steps are:

  • Rebuilding Erlang/OTP itself. DONE!
  • Fix all broken packages. I expect DLL loader issues in all packages which contain so-objects ue to major API version mismatch. All of them must be rebuilt with new Erlang.
  • Fix all packages which requires parametrized modules (I already rebuild mochiweb with the patch which fixes it).

How To Test

  • Ensure that high-grade Erlang applications are still working:
Name Tested
Package-x-generic-16.pngcouchdb No
Package-x-generic-16.pngejabberd No
Package-x-generic-16.pngmochiweb Yes
Package-x-generic-16.pngrabbitmq-server No
Package-x-generic-16.pngriak No
Package-x-generic-16.pngwings No
  • Collect feedback from volunteers regarding their experience with this Erlang/OTP version

Contingency Plan

None necessary. Instead of falling back to the previous version we should fix existing packages in order to help the Community. We should also monitor upstream development process for potentially discovered issues and proactively apply patches (as we already did with Erlang R14 and Erlang R15).

Documentation

Release Notes

Erlang/OTP R16B is available in Fedora 19.

Comments and Discussion