this repo has no description

Merge pull request #17978 from Octachron/OCaml_4.12.0_beta1

Ocaml 4.12.0, first beta

Kate de897adf c825ce8c

Changed files
+124 -2
packages
ocaml
ocaml.4.12.0
ocaml.4.13.0
ocaml-base-compiler
ocaml-base-compiler.4.12.0~beta1
ocaml-variants
ocaml-variants.4.12.0~beta1+options
+1
packages/ocaml-base-compiler/ocaml-base-compiler.4.12.0~beta1/files/ocaml-base-compiler.install
···
···
+
share_root: ["config.cache" {"ocaml/config.cache"}]
+43
packages/ocaml-base-compiler/ocaml-base-compiler.4.12.0~beta1/opam
···
···
+
opam-version: "2.0"
+
synopsis: "First beta release of OCaml 4.12.0"
+
maintainer: "platform@lists.ocaml.org"
+
authors: ["Xavier Leroy" "Damien Doligez" "Alain Frisch" "Jacques Garrigue" "Didier Rémy" "Jérôme Vouillon"]
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml#4.12"
+
depends: [
+
"ocaml" {= "4.12.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
"ocaml-options-vanilla" {post}
+
"ocaml-beta" {opam-version < "2.1"}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: [ compiler hidden-version ]
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"-C"
+
"CC=cc" {os = "openbsd" | os = "macos"}
+
"ASPP=cc -c" {os = "openbsd" | os = "macos"}
+
]
+
[make "-j%{jobs}%" {os != "cygwin"}]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.12.0-beta1.tar.gz"
+
checksum: "sha256=b9a30a8473a0eda7accc299ac5bacb44a30932e57e1b1662673d9840e2fb3b85"
+
}
+
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"}
+
]
+1
packages/ocaml-variants/ocaml-variants.4.12.0~beta1+options/files/ocaml-variants.install
···
···
+
share_root: ["config.cache" {"ocaml/config.cache"}]
+77
packages/ocaml-variants/ocaml-variants.4.12.0~beta1+options/opam
···
···
+
opam-version: "2.0"
+
synopsis: "First beta release of OCaml 4.12.0"
+
maintainer: "platform@lists.ocaml.org"
+
authors: ["Xavier Leroy" "Damien Doligez" "Alain Frisch" "Jacques Garrigue" "Didier Rémy" "Jérôme Vouillon"]
+
homepage: "https://ocaml.org"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git://github.com/ocaml/ocaml#4.12"
+
depends: [
+
"ocaml" {= "4.12.0" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
"ocaml-beta" {opam-version < "2.1"}
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: [ compiler hidden-version ]
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build: [
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"-C"
+
"--with-afl" {ocaml-option-afl:installed}
+
"--disable-native-compiler" {ocaml-option-bytecode-only:installed}
+
"--disable-force-safe-string" {ocaml-option-default-unsafe-string:installed}
+
"DEFAULT_STRING=unsafe" {ocaml-option-default-unsafe-string:installed}
+
"--disable-flat-float-array" {ocaml-option-no-flat-float-array:installed}
+
"--enable-flambda" {ocaml-option-flambda:installed}
+
"--enable-frame-pointers" {ocaml-option-fp:installed}
+
"--enable-spacetime" {ocaml-option-spacetime:installed}
+
"--disable-naked-pointers" {ocaml-option-nnp:installed}
+
"CC=cc" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")}
+
"CC=musl-gcc" {ocaml-option-musl:installed & os-distribution!="alpine"}
+
"CFLAGS=-Os" {ocaml-option-musl:installed}
+
"CC=gcc -m32" {ocaml-option-32bit:installed & os="linux"}
+
"CC=gcc -Wl,-read_only_relocs,suppress -arch i386 -m32" {ocaml-option-32bit:installed & os="macos"}
+
"ASPP=cc -c" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")}
+
"ASPP=musl-gcc -c" {ocaml-option-musl:installed & os-distribution!="alpine"}
+
"ASPP=gcc -m32 -c" {ocaml-option-32bit:installed & os="linux"}
+
"ASPP=gcc -arch i386 -m32 -c" {ocaml-option-32bit:installed & os="macos"}
+
"AS=as --32" {ocaml-option-32bit:installed & os="linux"}
+
"AS=as -arch i386" {ocaml-option-32bit:installed & os="macos"}
+
"--host=i386-linux" {ocaml-option-32bit:installed & os="linux"}
+
"--host=i386-apple-darwin13.2.0" {ocaml-option-32bit:installed & os="macos"}
+
"PARTIALLD=ld -r -melf_i386" {ocaml-option-32bit:installed & os="linux"}
+
"LIBS=-static" {ocaml-option-static:installed}
+
]
+
[make "-j%{jobs}%" {os != "cygwin"}]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml/ocaml/archive/4.12.0-beta1.tar.gz"
+
checksum: "sha256=b9a30a8473a0eda7accc299ac5bacb44a30932e57e1b1662673d9840e2fb3b85"
+
}
+
extra-files: ["ocaml-variants.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"}
+
]
+
depopts: [
+
"ocaml-option-32bit"
+
"ocaml-option-afl"
+
"ocaml-option-bytecode-only"
+
"ocaml-option-default-unsafe-string"
+
"ocaml-option-no-flat-float-array"
+
"ocaml-option-flambda"
+
"ocaml-option-fp"
+
"ocaml-option-musl"
+
"ocaml-option-static"
+
"ocaml-option-spacetime"
+
"ocaml-option-nnp"
+
]
+1 -1
packages/ocaml/ocaml.4.12.0/opam
···
and polls it to initialise specific variables like `ocaml:native-dynlink`"""
maintainer: "platform@lists.ocaml.org"
depends: [
-
"ocaml-config"
"ocaml-base-compiler" {>= "4.12.0~" & < "4.12.1~"} |
"ocaml-variants" {>= "4.12.0~" & < "4.12.1~"} |
"ocaml-system" {>= "4.12.0" & < "4.12.1~"}
···
and polls it to initialise specific variables like `ocaml:native-dynlink`"""
maintainer: "platform@lists.ocaml.org"
depends: [
+
"ocaml-config" {>= "2"}
"ocaml-base-compiler" {>= "4.12.0~" & < "4.12.1~"} |
"ocaml-variants" {>= "4.12.0~" & < "4.12.1~"} |
"ocaml-system" {>= "4.12.0" & < "4.12.1~"}
+1 -1
packages/ocaml/ocaml.4.13.0/opam
···
and polls it to initialise specific variables like `ocaml:native-dynlink`"""
maintainer: "platform@lists.ocaml.org"
depends: [
-
"ocaml-config"
"ocaml-base-compiler" {= "4.13.0"} |
"ocaml-variants" {>= "4.13.0" & < "4.13.1~"} |
"ocaml-system" {>= "4.13.0" & < "4.13.1~"}
···
and polls it to initialise specific variables like `ocaml:native-dynlink`"""
maintainer: "platform@lists.ocaml.org"
depends: [
+
"ocaml-config" {>= "2"}
"ocaml-base-compiler" {= "4.13.0"} |
"ocaml-variants" {>= "4.13.0" & < "4.13.1~"} |
"ocaml-system" {>= "4.13.0" & < "4.13.1~"}