From Fedora Project Wiki
No edit summary
(Feature has been announced on devel-announce mailing list on 2013-01-29)
Line 14: Line 14:
* Last updated: 2012-01-28
* Last updated: 2012-01-28
* Percentage of completion: 10%
* Percentage of completion: 10%
== Timeline ==
== Timeline ==


Line 48: Line 46:


* tbd (not ready yet).
* tbd (not ready yet).


== Scope ==
== Scope ==
Line 96: Line 93:
* See [[Talk:Features/Erlang_R16]]
* See [[Talk:Features/Erlang_R16]]


[[Category:FeatureReadyForWrangler]]
[[Category:FeatureAnnounced]]
<!-- When your feature page is completed and ready for review -->
<!-- When your feature page is completed and ready for review -->
<!-- remove Category:FeaturePageIncomplete and change it to Category:FeatureReadyForWrangler -->
<!-- remove Category:FeaturePageIncomplete and change it to Category:FeatureReadyForWrangler -->
<!-- After review, the feature wrangler will move your page to Category:FeatureReadyForFesco... if it still needs more work it will move back to Category:FeaturePageIncomplete-->
<!-- After review, the feature wrangler will move your page to Category:FeatureReadyForFesco... if it still needs more work it will move back to Category:FeaturePageIncomplete-->
<!-- A pretty picture of the page category usage is at: https://fedoraproject.org/wiki/Features/Policy/Process -->
<!-- A pretty picture of the page category usage is at: https://fedoraproject.org/wiki/Features/Policy/Process -->

Revision as of 16:46, 29 January 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-01-28
  • Percentage of completion: 10%

Timeline

  • R16A version will be released on 30 January 2013
  • R16B version will be released on 28 February 2013.

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:

  • 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.
  • 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).

See full changelog for the detailed description of changes:

  • tbd (not ready yet).

Scope

Required steps are:

  • Rebuilding Erlang/OTP itself.
  • 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