ocaml 4.02.3-5ubuntu1 source package in Ubuntu

Changelog

ocaml (4.02.3-5ubuntu1) xenial; urgency=low

  * Merge from Debian unstable.  Remaining changes:
    - Pass --hash-style=both --as-needed --build-id to the linker.

ocaml (4.02.3-5) unstable; urgency=medium

  * Fix ocamldoc with -pp (Closes: #802347)

ocaml (4.02.3-4) unstable; urgency=medium

  * Avoid multiple declarations of caml_set_oo_id in generated .c files
    - Update 0005-Avoid-multiple-declarations-in-generated-.c-files-in.patch

ocaml (4.02.3-3) unstable; urgency=medium

  * Upload to unstable

ocaml (4.02.3-2) experimental; urgency=medium

  * Reproducibility changes:
    - ocamlopt: add a .file directive to generated .s files
      + startup files are now deterministic (Closes: #795784)
      + native packed libraries are now deterministic (Closes: #796336)
    - set permissions of patches in ocaml-source

ocaml (4.02.3-1) experimental; urgency=medium

  * New upstream release
    - build and install libasmrun_shared.so (Closes: #461125)
  * Make the ocaml-source binary package reproducible (patch by Chris
    Lamb) (Closes: #779086)
  * Enable ocamldoc to build reproducible manpages (patch by Valentin
    Lorentz) (Closes: #794586)
  * Bump Standards-Version to 3.9.6

ocaml (4.02.1-3) experimental; urgency=medium

  * Fix asmcomp tests on sparc
  * Disable prim-bswap test (it fails on arm64)

ocaml (4.02.1-2) experimental; urgency=medium

  * Disable endianness-dependent tests
  * Add arm64 to native and natdynlink architectures
  * Merge version 4.01.0-5

ocaml (4.02.1-1) experimental; urgency=medium

  * New upstream release
    - camlp4 and labltk are now distributed separately

ocaml (4.01.0-5) unstable; urgency=medium

  [ Ralf Treinen ]
  * ocaml-mode: change dependency on emacs23 to emacs (closes: #754021)
  * ocaml-mode: add versionend dependency on emacs-common, add a file
    ocaml-mode.emacsen-compat (closes: #749311)

 -- Łukasz 'sil2100' Zemczak <email address hidden>  Thu, 29 Oct 2015 20:48:14 +0100

Upload details

Uploaded by:
Łukasz Zemczak
Sponsored by:
Steve Langasek
Uploaded to:
Xenial
Original maintainer:
Ubuntu Developers
Architectures:
any all
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
ocaml_4.02.3.orig.tar.xz 2.0 MiB 83c6697e135b599a196fd7936eaf8a53dd6b8f3155a796d18407b56f91df9ce3
ocaml_4.02.3-5ubuntu1.debian.tar.xz 44.8 KiB e6627341764731e9e8996fdf73157efa54b6bdf859603165e30ce9aca622f748
ocaml_4.02.3-5ubuntu1.dsc 2.7 KiB 1b6beaa0d00ccd0ff32f52c7ef62f516173bcebfe875fe085ea1502df97f6556

View changes file

Binary packages built by this source

ocaml: ML language implementation with a class-based object system

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 OCaml comprises two compilers. One generates bytecode
 which is then interpreted by a C program. This compiler runs quickly,
 generates compact code with moderate memory requirements, and is
 portable to essentially any 32 or 64 bit Unix platform. Performance of
 generated programs is quite good for a bytecoded implementation:
 almost twice as fast as Caml Light 0.7. This compiler can be used
 either as a standalone, batch-oriented compiler that produces
 standalone programs, or as an interactive, toplevel-based system.
 .
 The other compiler generates high-performance native code for a number
 of processors. Compilation takes longer and generates bigger code, but
 the generated programs deliver excellent performance, while retaining
 the moderate memory requirements of the bytecode compiler. It is not
 available on all arches though.
 .
 This package contains everything needed to develop OCaml applications,
 including the graphics libraries.

ocaml-base: Runtime system for OCaml bytecode executables

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 This package contains only the runtime system needed to run bytecode
 executables. The 'ocaml' package contains the full development suite of
 Objective Caml. You may wish to install the 'ocaml-base-nox' package if
 you do not require any graphical capabilities for your runtime.

ocaml-base-dbgsym: debug symbols for package ocaml-base

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 This package contains only the runtime system needed to run bytecode
 executables. The 'ocaml' package contains the full development suite of
 Objective Caml. You may wish to install the 'ocaml-base-nox' package if
 you do not require any graphical capabilities for your runtime.

ocaml-base-nox: Runtime system for OCaml bytecode executables (no X)

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 This package contains only the runtime system needed to run bytecode
 executables that do not use the graphics library. The 'ocaml' package
 contains the full development suite of Objective Caml.

ocaml-base-nox-dbgsym: debug symbols for package ocaml-base-nox

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 This package contains only the runtime system needed to run bytecode
 executables that do not use the graphics library. The 'ocaml' package
 contains the full development suite of Objective Caml.

ocaml-compiler-libs: OCaml interpreter and standard libraries

 Objective (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 This package contains several modules used internally by the OCaml
 compilers. They are not needed for normal OCaml development, but may
 be helpful in the development of certain applications.

ocaml-interp: OCaml interactive interpreter and standard libraries

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 This package contains the files required to run an OCaml shell from the
 command line.

ocaml-mode: major mode for editing Objective Caml in Emacs

 Objective (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 This package provides support for editing both Objective Caml and
 Caml Light programs with Emacs and XEmacs.
 .
 Caml-mode supports:
  - indentation
  - compilation and error retrieving
  - interaction with the toplevel
  - font-lock
  - imenu

ocaml-native-compilers: Native code compilers of the OCaml suite (the .opt ones)

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 This package contains the native code version of the compilers
 (ocamlc.opt, ocamllex.opt, ocamlopt.opt. The normal version of these
 programs are found in the 'ocaml' package. For big source codes,
 these packages can be two to three times faster, but for most normal
 sized sources, the difference won't be noticeable.

ocaml-native-compilers-dbgsym: debug symbols for package ocaml-native-compilers

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 This package contains the native code version of the compilers
 (ocamlc.opt, ocamllex.opt, ocamlopt.opt. The normal version of these
 programs are found in the 'ocaml' package. For big source codes,
 these packages can be two to three times faster, but for most normal
 sized sources, the difference won't be noticeable.

ocaml-nox: ML implementation with a class-based object system (no X)

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 OCaml comprises two compilers. One generates bytecode
 which is then interpreted by a C program. This compiler runs quickly,
 generates compact code with moderate memory requirements, and is
 portable to essentially any 32 or 64 bit Unix platform. Performance of
 generated programs is quite good for a bytecoded implementation:
 almost twice as fast as Caml Light 0.7. This compiler can be used
 either as a standalone, batch-oriented compiler that produces
 standalone programs, or as an interactive, toplevel-based system.
 .
 The other compiler generates high-performance native code for a number
 of processors. Compilation takes longer and generates bigger code, but
 the generated programs deliver excellent performance, while retaining
 the moderate memory requirements of the bytecode compiler. It is not
 available on all arches though.
 .
 This package contains everything needed to develop OCaml applications
 that do not require the graphics library.

ocaml-nox-dbgsym: debug symbols for package ocaml-nox

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 OCaml comprises two compilers. One generates bytecode
 which is then interpreted by a C program. This compiler runs quickly,
 generates compact code with moderate memory requirements, and is
 portable to essentially any 32 or 64 bit Unix platform. Performance of
 generated programs is quite good for a bytecoded implementation:
 almost twice as fast as Caml Light 0.7. This compiler can be used
 either as a standalone, batch-oriented compiler that produces
 standalone programs, or as an interactive, toplevel-based system.
 .
 The other compiler generates high-performance native code for a number
 of processors. Compilation takes longer and generates bigger code, but
 the generated programs deliver excellent performance, while retaining
 the moderate memory requirements of the bytecode compiler. It is not
 available on all arches though.
 .
 This package contains everything needed to develop OCaml applications
 that do not require the graphics library.

ocaml-source: Sources for Objective Caml

 Objective Caml (OCaml) is an implementation of the ML language, based on
 the Caml Light dialect extended with a complete class-based object system
 and a powerful module system in the style of Standard ML.
 .
 This package contains the sources needed to build some packages which build
 depend on the OCaml source. Notice that if you want to rebuild OCaml, these
 will not work, consider using the source package instead.