this repo has no description
0
fork

Configure Feed

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

Merge pull request #25788 from Octachron/OCaml_5.2.0_rc1

opam packages for OCaml 5.2.0~rc1

authored by

Anil Madhavapeddy and committed by
GitHub
245837bd d4fc3679

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