this repo has no description
0
fork

Configure Feed

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

Merge pull request #24050 from Octachron/OCaml_5.1.0_beta1

OCaml 5.1.0, first beta release

authored by

Anil Madhavapeddy and committed by
GitHub
77abbbdf 853c9035

+135
+1
packages/ocaml-base-compiler/ocaml-base-compiler.5.1.0~beta1/files/ocaml-base-compiler.install
··· 1 + share_root: ["config.cache" {"ocaml/config.cache"}]
+47
packages/ocaml-base-compiler/ocaml-base-compiler.5.1.0~beta1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "First beta release of OCaml 5.1.0" 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#5.1" 9 + depends: [ 10 + "ocaml" {= "5.1.0" & post} 11 + "base-unix" {post} 12 + "base-bigarray" {post} 13 + "base-threads" {post} 14 + "base-domains" {post} 15 + "base-nnp" {post} 16 + "ocaml-options-vanilla" {post} 17 + "ocaml-beta" {opam-version < "2.1.0"} 18 + ] 19 + conflict-class: "ocaml-core-compiler" 20 + flags: [ compiler avoid-version ] 21 + setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 22 + build: [ 23 + [ 24 + "./configure" 25 + "--prefix=%{prefix}%" 26 + "--docdir=%{doc}%/ocaml" 27 + "-C" 28 + "CC=cc" {os = "openbsd" | os = "macos"} 29 + "ASPP=cc -c" {os = "openbsd" | os = "macos"} 30 + ] 31 + [make "-j%{jobs}%"] 32 + ] 33 + install: [make "install"] 34 + url { 35 + src: "https://github.com/ocaml/ocaml/archive/5.1.0-beta1.tar.gz" 36 + checksum: "sha256=4daca1a54080b4edc734e7c33d7ce0ab7f664ba506b221e909c66f7d9b6d4d9e" 37 + } 38 + extra-files: ["ocaml-base-compiler.install" "md5=3e969b841df1f51ca448e6e6295cb451"] 39 + post-messages: [ 40 + "A failure in the middle of the build may be caused by build parallelism 41 + (enabled by default). 42 + Please file a bug report at https://github.com/ocaml/opam-repository/issues" 43 + {failure & jobs > 1} 44 + "You can try installing again including --jobs=1 45 + to force a sequential build instead." 46 + {failure & jobs > 1 & opam-version >= "2.0.5"} 47 + ]
+1
packages/ocaml-variants/ocaml-variants.5.1.0~beta1+options/files/ocaml-variants.install
··· 1 + share_root: ["config.cache" {"ocaml/config.cache"}]
+86
packages/ocaml-variants/ocaml-variants.5.1.0~beta1+options/opam
··· 1 + opam-version: "2.0" 2 + license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 3 + synopsis: "First beta release of OCaml 5.1.0" 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#5.1" 9 + depends: [ 10 + "ocaml" {= "5.1.0" & post} 11 + "base-unix" {post} 12 + "base-bigarray" {post} 13 + "base-threads" {post} 14 + "base-domains" {post} 15 + "base-nnp" {post} 16 + "ocaml-option-bytecode-only" {arch != "arm64" & arch != "x86_64" & arch != "s390x" & arch != "riscv" } 17 + "ocaml-beta" {opam-version < "2.1.0"} 18 + ] 19 + conflict-class: "ocaml-core-compiler" 20 + flags: [ compiler avoid-version ] 21 + setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 22 + build-env: [ 23 + [LSAN_OPTIONS = "detect_leaks=0,exitcode=0"] 24 + [ASAN_OPTIONS = "detect_leaks=0,exitcode=0"] 25 + ] 26 + build: [ 27 + [ 28 + "./configure" 29 + "--prefix=%{prefix}%" 30 + "--docdir=%{doc}%/ocaml" 31 + "-C" 32 + "--with-afl" {ocaml-option-afl:installed} 33 + "--disable-native-compiler" {ocaml-option-bytecode-only:installed} 34 + "--disable-flat-float-array" {ocaml-option-no-flat-float-array:installed} 35 + "--enable-flambda" {ocaml-option-flambda:installed} 36 + "--enable-frame-pointers" {ocaml-option-fp:installed} 37 + "CC=cc" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} 38 + "CC=musl-gcc" {ocaml-option-musl:installed & os-distribution!="alpine"} 39 + "CFLAGS=-Os" {ocaml-option-musl:installed} 40 + "LDFLAGS=-Wl,--no-as-needed,-ldl" {ocaml-option-leak-sanitizer:installed | (ocaml-option-address-sanitizer:installed & os!="macos")} 41 + "CC=gcc -ldl -fsanitize=leak -fno-omit-frame-pointer -O1 -g" {ocaml-option-leak-sanitizer:installed} 42 + "CC=gcc -ldl -fsanitize=address -fno-omit-frame-pointer -O1 -g" {ocaml-option-address-sanitizer:installed & os!="macos"} 43 + "CC=clang -fsanitize=address -fno-omit-frame-pointer -O1 -g" {ocaml-option-address-sanitizer:installed & os="macos"} 44 + "CC=gcc -m32" {ocaml-option-32bit:installed & os="linux"} 45 + "CC=gcc -Wl,-read_only_relocs,suppress -arch i386 -m32" {ocaml-option-32bit:installed & os="macos"} 46 + "ASPP=cc -c" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} 47 + "ASPP=musl-gcc -c" {ocaml-option-musl:installed & os-distribution!="alpine"} 48 + "ASPP=gcc -m32 -c" {ocaml-option-32bit:installed & os="linux"} 49 + "ASPP=gcc -arch i386 -m32 -c" {ocaml-option-32bit:installed & os="macos"} 50 + "AS=as --32" {ocaml-option-32bit:installed & os="linux"} 51 + "AS=as -arch i386" {ocaml-option-32bit:installed & os="macos"} 52 + "--host=i386-linux" {ocaml-option-32bit:installed & os="linux"} 53 + "--host=i386-apple-darwin13.2.0" {ocaml-option-32bit:installed & os="macos"} 54 + "PARTIALLD=ld -r -melf_i386" {ocaml-option-32bit:installed & os="linux"} 55 + "LIBS=-static" {ocaml-option-static:installed} 56 + "--disable-warn-error" 57 + ] 58 + [make "-j%{jobs}%"] 59 + ] 60 + install: [make "install"] 61 + url { 62 + src: "https://github.com/ocaml/ocaml/archive/5.1.0-beta1.tar.gz" 63 + checksum: "sha256=4daca1a54080b4edc734e7c33d7ce0ab7f664ba506b221e909c66f7d9b6d4d9e" 64 + } 65 + extra-files: ["ocaml-variants.install" "md5=3e969b841df1f51ca448e6e6295cb451"] 66 + post-messages: [ 67 + "A failure in the middle of the build may be caused by build parallelism 68 + (enabled by default). 69 + Please file a bug report at https://github.com/ocaml/opam-repository/issues" 70 + {failure & jobs > 1} 71 + "You can try installing again including --jobs=1 72 + to force a sequential build instead." 73 + {failure & jobs > 1 & opam-version >= "2.0.5"} 74 + ] 75 + depopts: [ 76 + "ocaml-option-32bit" 77 + "ocaml-option-afl" 78 + "ocaml-option-bytecode-only" 79 + "ocaml-option-no-flat-float-array" 80 + "ocaml-option-flambda" 81 + "ocaml-option-fp" 82 + "ocaml-option-musl" 83 + "ocaml-option-leak-sanitizer" 84 + "ocaml-option-address-sanitizer" 85 + "ocaml-option-static" 86 + ]