this repo has no description

Merge pull request #17024 from Octachron/OCaml_4.11.0_release

OCaml release 4.11.0

Changed files
+662
packages
ocaml-base-compiler
ocaml-base-compiler.4.11.0
ocaml-system
ocaml-system.4.11.0
ocaml-variants
ocaml-variants.4.11.0+32bit
ocaml-variants.4.11.0+afl
ocaml-variants.4.11.0+bytecode-only
ocaml-variants.4.11.0+default-unsafe-string
ocaml-variants.4.11.0+flambda
ocaml-variants.4.11.0+flambda+no-flat-float-array
ocaml-variants.4.11.0+fp
ocaml-variants.4.11.0+fp+flambda
ocaml-variants.4.11.0+musl+flambda
ocaml-variants.4.11.0+musl+static+flambda
ocaml-variants.4.11.0+no-flat-float-array
ocaml-variants.4.11.0+spacetime
+1
packages/ocaml-base-compiler/ocaml-base-compiler.4.11.0/files/ocaml-base-compiler.install
···
···
+
share_root: ["config.cache" {"ocaml/config.cache"}]
+42
packages/ocaml-base-compiler/ocaml-base-compiler.4.11.0/opam
···
···
+
opam-version: "2.0"
+
synopsis: "Official release 4.11.0"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"-C"
+
"CC=cc" {os = "openbsd" | os = "freebsd" | os = "macos"}
+
"ASPP=cc -c" {os = "openbsd" | os = "freebsd" | os = "macos"}
+
]
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
extra-files: ["ocaml-base-compiler.install" "md5=3e969b841df1f51ca448e6e6295cb451"]
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+43
packages/ocaml-system/ocaml-system.4.11.0/files/gen_ocaml_config.ml.in
···
···
+
let () =
+
let exe = ".exe" in
+
let ocamlc =
+
let (base, suffix) =
+
let s = Sys.executable_name in
+
if Filename.check_suffix s exe then
+
(Filename.chop_suffix s exe, exe)
+
else
+
(s, "") in
+
base ^ "c" ^ suffix in
+
if Sys.ocaml_version <> "%{_:version}%" then
+
(Printf.eprintf
+
"ERROR: The compiler found at %%s has version %%s,\n\
+
and this package requires %{_:version}%.\n\
+
You should use e.g. 'opam switch create %{_:name}%.%%s' \
+
instead."
+
ocamlc Sys.ocaml_version Sys.ocaml_version;
+
exit 1)
+
else
+
let ocamlc_digest = Digest.to_hex (Digest.file ocamlc) in
+
let libdir =
+
if Sys.command (ocamlc^" -where > %{_:name}%.config") = 0 then
+
let ic = open_in "%{_:name}%.config" in
+
let r = input_line ic in
+
close_in ic;
+
Sys.remove "%{_:name}%.config";
+
r
+
else
+
failwith "Bad return from 'ocamlc -where'"
+
in
+
let graphics = Filename.concat libdir "graphics.cmi" in
+
let graphics_digest =
+
if Sys.file_exists graphics then
+
Digest.to_hex (Digest.file graphics)
+
else
+
String.make 32 '0'
+
in
+
let oc = open_out "%{_:name}%.config" in
+
Printf.fprintf oc "opam-version: \"2.0\"\n\
+
file-depends: [ [ %%S %%S ] [ %%S %%S ] ]\n\
+
variables { path: %%S }\n"
+
ocamlc ocamlc_digest graphics graphics_digest (Filename.dirname ocamlc);
+
close_out oc
+19
packages/ocaml-system/ocaml-system.4.11.0/opam
···
···
+
opam-version: "2.0"
+
synopsis: "The OCaml compiler (system version, from outside of opam)"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {post}
+
"base-unix" {post}
+
"base-threads" {post}
+
"base-bigarray" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
available: sys-ocaml-version = "4.11.0"
+
flags: compiler
+
build: ["ocaml" "gen_ocaml_config.ml"]
+
substs: "gen_ocaml_config.ml"
+
extra-files: ["gen_ocaml_config.ml.in" "md5=093e7bec1ec95f9e4c6a313d73c5d840"]
+55
packages/ocaml-variants/ocaml-variants.4.11.0+32bit/opam
···
···
+
opam-version: "2.0"
+
synopsis:
+
"Official release 4.11.0, compiled in 32-bit mode for 64-bit Linux and OS X hosts"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
depexts: [
+
["gcc-multilib" "g++-multilib"] {os-family = "debian"}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=gcc -m32"
+
"AS=as --32"
+
"ASPP=gcc -m32 -c"
+
"--host" "i386-linux"
+
"PARTIALLD=ld -r -melf_i386"
+
] {os = "linux"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=gcc -Wl,-read_only_relocs,suppress -arch i386 -m32"
+
"AS=as -arch i386"
+
"ASPP=gcc -arch i386 -m32 -c"
+
"--host" "i386-apple-darwin13.2.0"
+
] {os = "openbsd" | os = "freebsd" | os = "macos"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+43
packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam
···
···
+
opam-version: "2.0"
+
synopsis: "Official release 4.11.0, with afl-fuzz instrumentation"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
["./configure" "--prefix=%{prefix}%" "--with-afl"]
+
{os != "openbsd" & os != "freebsd" & os != "macos"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=cc"
+
"ASPP=cc -c"
+
"--with-afl"
+
] {os = "openbsd" | os = "freebsd" | os = "macos"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+42
packages/ocaml-variants/ocaml-variants.4.11.0+bytecode-only/opam
···
···
+
opam-version: "2.0"
+
synopsis: "Official release 4.11.0, without the native-code compiler"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
["./configure" "--prefix=%{prefix}%" "--disable-native-compiler"]
+
{os != "openbsd" & os != "freebsd" & os != "macos"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=cc"
+
"ASPP=cc -c"
+
"--disable-native-compiler"
+
] {os = "openbsd" | os = "freebsd" | os = "macos"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+49
packages/ocaml-variants/ocaml-variants.4.11.0+default-unsafe-string/opam
···
···
+
opam-version: "2.0"
+
synopsis:
+
"Official release 4.11.0, without safe strings by default"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"--disable-force-safe-string"
+
"DEFAULT_STRING=unsafe"
+
] {os != "openbsd" & os != "freebsd" & os != "macos"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"--disable-force-safe-string"
+
"CC=cc"
+
"ASPP=cc -c"
+
"DEFAULT_STRING=unsafe"
+
] {os = "openbsd" | os = "freebsd" | os = "macos"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+46
packages/ocaml-variants/ocaml-variants.4.11.0+flambda+no-flat-float-array/opam
···
···
+
opam-version: "2.0"
+
synopsis:
+
"Official release 4.11.0, with flambda activated and --disable-flat-float-array"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
["./configure" "--prefix=%{prefix}%"
+
"--enable-flambda" "--disable-flat-float-array"]
+
{os != "openbsd" & os != "freebsd" & os != "macos"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=cc"
+
"ASPP=cc -c"
+
"--enable-flambda"
+
"--disable-flat-float-array"
+
] {os = "openbsd" | os = "freebsd" | os = "macos"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+43
packages/ocaml-variants/ocaml-variants.4.11.0+flambda/opam
···
···
+
opam-version: "2.0"
+
synopsis: "Official release 4.11.0, with flambda activated"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
["./configure" "--prefix=%{prefix}%" "--enable-flambda"]
+
{os != "openbsd" & os != "freebsd" & os != "macos"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=cc"
+
"ASPP=cc -c"
+
"--enable-flambda"
+
] {os = "openbsd" | os = "freebsd" | os = "macos"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+46
packages/ocaml-variants/ocaml-variants.4.11.0+fp+flambda/opam
···
···
+
opam-version: "2.0"
+
synopsis:
+
"Official release 4.11.0, with frame-pointers and flambda activated"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
["./configure" "--prefix=%{prefix}%"
+
"--enable-frame-pointers" "--enable-flambda"]
+
{os != "openbsd" & os != "freebsd" & os != "macos"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=cc"
+
"ASPP=cc -c"
+
"--enable-frame-pointers"
+
"--enable-flambda"
+
] {os = "openbsd" | os = "freebsd" | os = "macos"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+43
packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam
···
···
+
opam-version: "2.0"
+
synopsis: "Official release 4.11.0, with frame-pointers"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
["./configure" "--prefix=%{prefix}%" "--enable-frame-pointers"]
+
{os != "openbsd" & os != "freebsd" & os != "macos"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=cc"
+
"ASPP=cc -c"
+
"--enable-frame-pointers"
+
] {os = "openbsd" | os = "freebsd" | os = "macos"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+50
packages/ocaml-variants/ocaml-variants.4.11.0+musl+flambda/opam
···
···
+
opam-version: "2.0"
+
synopsis:
+
"Official release 4.11.0, compiled with musl-gcc and with flambda activated"
+
description:
+
"Requires musl-gcc to be installed (package musl on Arch Linux or musl-tools on Debian)"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
depexts: [
+
["musl-tools"] {os-family = "debian"}
+
["musl"] {os-distribution = "arch"}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
["./configure" "--prefix=%{prefix}%"]
+
{os != "openbsd" & os != "freebsd" & os != "macos" & os != "linux"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=musl-gcc -Os"
+
"ASPP=musl-gcc -c"
+
"--enable-flambda"
+
] {os = "openbsd" | os = "freebsd" | os = "macos" | os = "linux"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+53
packages/ocaml-variants/ocaml-variants.4.11.0+musl+static+flambda/opam
···
···
+
opam-version: "2.0"
+
synopsis:
+
"Official release 4.11.0, compiled with musl-gcc -static and with flambda activated"
+
description:
+
"Requires musl-gcc to be installed (package musl on Arch Linux, musl-tools on Debian, musl-dev on Alpine)"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
depexts: [
+
["musl-tools"] {os-family = "debian"}
+
["musl"] {os-distribution = "arch"}
+
["musl-dev"] {os-distribution = "alpine"}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
["./configure" "--prefix=%{prefix}%"]
+
{os != "openbsd" & os != "freebsd" & os != "macos" & os != "linux"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=musl-gcc" {os-distribution != "alpine"}
+
"CFLAGS=-Os"
+
"ASPP=musl-gcc -c" {os-distribution != "alpine"}
+
"--enable-flambda"
+
"LIBS=-static"
+
] {os = "openbsd" | os = "freebsd" | os = "macos" | os = "linux"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+44
packages/ocaml-variants/ocaml-variants.4.11.0+no-flat-float-array/opam
···
···
+
opam-version: "2.0"
+
synopsis:
+
"Official release 4.11.0 with --disable-flat-float-array"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
["./configure" "--prefix=%{prefix}%" "--disable-flat-float-array"]
+
{os != "openbsd" & os != "freebsd" & os != "macos"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=cc"
+
"ASPP=cc -c"
+
"--disable-flat-float-array"
+
] {os = "openbsd" | os = "freebsd" | os = "macos"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]
+43
packages/ocaml-variants/ocaml-variants.4.11.0+spacetime/opam
···
···
+
opam-version: "2.0"
+
synopsis: "Official release 4.11.0, with spacetime activated"
+
maintainer: "platform@lists.ocaml.org"
+
authors: "Xavier Leroy and many contributors"
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml"
+
depends: [
+
"ocaml" {= "4.11.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: compiler
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
["./configure" "--prefix=%{prefix}%" "--enable-spacetime"]
+
{os != "openbsd" & os != "freebsd" & os != "macos"}
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"CC=cc"
+
"ASPP=cc -c"
+
"--enable-spacetime"
+
] {os = "openbsd" | os = "freebsd" | os = "macos"}
+
[make "-j%{jobs}%" {os != "cygwin"} "world"]
+
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.11.0.tar.gz"
+
checksum: "sha256=060a26420ad868e192076138a103dbe28fa39d7a0a80f7db349a1d5143dea506"
+
}
+
post-messages: [
+
"A failure in the middle of the build may be caused by build parallelism
+
(enabled by default).
+
Please file a bug report at https://github.com/ocaml/ocaml/issues"
+
{failure & jobs > 1 & os != "cygwin"}
+
"You can try installing again including --jobs=1
+
to force a sequential build instead."
+
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
+
]