this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25427 from Octachron/OCaml_4.14.2_rc1

Packages for OCaml 4.14.2~rc1

authored by

Marcello Seri and committed by
GitHub
f33da22e 251ff9c0

+128
+1
packages/ocaml-base-compiler/ocaml-base-compiler.4.14.2~rc1/files/ocaml-base-compiler.install
··· 1 + share_root: ["config.cache" {"ocaml/config.cache"}]
+46
packages/ocaml-base-compiler/ocaml-base-compiler.4.14.2~rc1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "First release candidate of OCaml 4.14.2" 3 + maintainer: "platform@lists.ocaml.org" 4 + license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 5 + authors: "Xavier Leroy and many contributors" 6 + homepage: "https://ocaml.org" 7 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 8 + dev-repo: "git+https://github.com/ocaml/ocaml#4.14" 9 + depends: [ 10 + "ocaml" {= "4.14.2" & post} 11 + "base-unix" {post} 12 + "base-bigarray" {post} 13 + "base-threads" {post} 14 + "ocaml-options-vanilla" {post} 15 + "ocaml-beta" {opam-version < "2.1.0"} 16 + ] 17 + conflict-class: "ocaml-core-compiler" 18 + flags: [ compiler avoid-version ] 19 + setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 20 + build: [ 21 + [ 22 + "./configure" 23 + "--prefix=%{prefix}%" 24 + "--docdir=%{doc}%/ocaml" 25 + "-C" 26 + "CC=cc" {os = "openbsd" | os = "macos"} 27 + "ASPP=cc -c" {os = "openbsd" | os = "macos"} 28 + ] 29 + [make "-j%{jobs}%"] 30 + ] 31 + install: [make "install"] 32 + url { 33 + src: "https://github.com/ocaml/ocaml/archive/4.14.2-rc1.tar.gz" 34 + checksum: "sha256=0779d4871c5a3be4ae24dc2f5a49ec5463973f951a11953a7da6089e02587a37" 35 + } 36 + extra-files: ["ocaml-base-compiler.install" "md5=3e969b841df1f51ca448e6e6295cb451"] 37 + post-messages: [ 38 + "A failure in the middle of the build may be caused by build parallelism 39 + (enabled by default). 40 + Please file a bug report at https://github.com/ocaml/opam-repository/issues" 41 + {failure & jobs > 1} 42 + "You can try installing again including --jobs=1 43 + to force a sequential build instead." 44 + {failure & jobs > 1 & opam-version >= "2.0.5"} 45 + ] 46 + available: os != "win32"
+1
packages/ocaml-variants/ocaml-variants.4.14.2~rc1+options/files/ocaml-variants.install
··· 1 + share_root: ["config.cache" {"ocaml/config.cache"}]
+80
packages/ocaml-variants/ocaml-variants.4.14.2~rc1+options/opam
··· 1 + opam-version: "2.0" 2 + license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 3 + synopsis: "First release candidate of OCaml 4.14.2" 4 + maintainer: "platform@lists.ocaml.org" 5 + authors: ["Xavier Leroy" "Damien Doligez" "Alain Frisch" "Jacques Garrigue" "Didier Rémy" "Jérôme Vouillon"] 6 + homepage: "https://ocaml.org" 7 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 8 + dev-repo: "git+https://github.com/ocaml/ocaml.git#4.14" 9 + depends: [ 10 + "ocaml" {= "4.14.2" & post} 11 + "base-unix" {post} 12 + "base-bigarray" {post} 13 + "base-threads" {post} 14 + "ocaml-beta" {opam-version < "2.1.0"} 15 + ] 16 + conflict-class: "ocaml-core-compiler" 17 + flags: [ compiler avoid-version ] 18 + setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 19 + build: [ 20 + [ 21 + "./configure" 22 + "--prefix=%{prefix}%" 23 + "--docdir=%{doc}%/ocaml" 24 + "-C" 25 + "--with-afl" {ocaml-option-afl:installed} 26 + "--disable-native-compiler" {ocaml-option-bytecode-only:installed} 27 + "--disable-force-safe-string" {ocaml-option-default-unsafe-string:installed} 28 + "DEFAULT_STRING=unsafe" {ocaml-option-default-unsafe-string:installed} 29 + "--disable-flat-float-array" {ocaml-option-no-flat-float-array:installed} 30 + "--enable-flambda" {ocaml-option-flambda:installed} 31 + "--enable-frame-pointers" {ocaml-option-fp:installed} 32 + "--disable-naked-pointers" {ocaml-option-nnp:installed} 33 + "--enable-naked-pointers-checker" {ocaml-option-nnpchecker:installed} 34 + "CC=cc" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} 35 + "CC=musl-gcc" {ocaml-option-musl:installed & os-distribution!="alpine"} 36 + "CFLAGS=-Os" {ocaml-option-musl:installed} 37 + "CC=gcc -m32" {ocaml-option-32bit:installed & os="linux"} 38 + "CC=gcc -Wl,-read_only_relocs,suppress -arch i386 -m32" {ocaml-option-32bit:installed & os="macos"} 39 + "ASPP=cc -c" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} 40 + "ASPP=musl-gcc -c" {ocaml-option-musl:installed & os-distribution!="alpine"} 41 + "ASPP=gcc -m32 -c" {ocaml-option-32bit:installed & os="linux"} 42 + "ASPP=gcc -arch i386 -m32 -c" {ocaml-option-32bit:installed & os="macos"} 43 + "AS=as --32" {ocaml-option-32bit:installed & os="linux"} 44 + "AS=as -arch i386" {ocaml-option-32bit:installed & os="macos"} 45 + "--host=i386-linux" {ocaml-option-32bit:installed & os="linux"} 46 + "--host=i386-apple-darwin13.2.0" {ocaml-option-32bit:installed & os="macos"} 47 + "PARTIALLD=ld -r -melf_i386" {ocaml-option-32bit:installed & os="linux"} 48 + "LIBS=-static" {ocaml-option-static:installed} 49 + ] 50 + [make "-j%{jobs}%"] 51 + ] 52 + install: [make "install"] 53 + url { 54 + src: "https://github.com/ocaml/ocaml/archive/4.14.2-rc1.tar.gz" 55 + checksum: "sha256=0779d4871c5a3be4ae24dc2f5a49ec5463973f951a11953a7da6089e02587a37" 56 + } 57 + extra-files: ["ocaml-variants.install" "md5=3e969b841df1f51ca448e6e6295cb451"] 58 + post-messages: [ 59 + "A failure in the middle of the build may be caused by build parallelism 60 + (enabled by default). 61 + Please file a bug report at https://github.com/ocaml/opam-repository/issues" 62 + {failure & jobs > 1} 63 + "You can try installing again including --jobs=1 64 + to force a sequential build instead." 65 + {failure & jobs > 1 & opam-version >= "2.0.5"} 66 + ] 67 + depopts: [ 68 + "ocaml-option-32bit" 69 + "ocaml-option-afl" 70 + "ocaml-option-bytecode-only" 71 + "ocaml-option-default-unsafe-string" 72 + "ocaml-option-no-flat-float-array" 73 + "ocaml-option-flambda" 74 + "ocaml-option-fp" 75 + "ocaml-option-musl" 76 + "ocaml-option-static" 77 + "ocaml-option-nnp" 78 + "ocaml-option-nnpchecker" 79 + ] 80 + available: os != "win32"