this repo has no description
0
fork

Configure Feed

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

Merge pull request #19675 from Octachron/OCaml_4.13.1_bugfix

OCaml 4.13.1, bug fix release for "row" classes

authored by

Anil Madhavapeddy and committed by
GitHub
5ea76a55 f8dfc4e2

+239 -4
+1
packages/ocaml-base-compiler/ocaml-base-compiler.4.13.1/files/ocaml-base-compiler.install
··· 1 + share_root: ["config.cache" {"ocaml/config.cache"}]
+43
packages/ocaml-base-compiler/ocaml-base-compiler.4.13.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Official release 4.13.1" 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://github.com/ocaml/ocaml" 9 + depends: [ 10 + "ocaml" {= "4.13.1" & post} 11 + "base-unix" {post} 12 + "base-bigarray" {post} 13 + "base-threads" {post} 14 + "ocaml-options-vanilla" {post} 15 + ] 16 + conflict-class: "ocaml-core-compiler" 17 + flags: compiler 18 + setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 19 + build: [ 20 + [ 21 + "./configure" 22 + "--prefix=%{prefix}%" 23 + "-C" 24 + "CC=cc" {os = "openbsd" | os = "macos"} 25 + "ASPP=cc -c" {os = "openbsd" | os = "macos"} 26 + ] 27 + [make "-j%{jobs}%"] 28 + ] 29 + install: [make "install"] 30 + url { 31 + src: "https://github.com/ocaml/ocaml/archive/4.13.1.tar.gz" 32 + checksum: "sha256=194c7988cc1fd1c64f53f32f2f7551e5309e44d914d6efc7e2e4d002296aeac4" 33 + } 34 + extra-files: ["ocaml-base-compiler.install" "md5=3e969b841df1f51ca448e6e6295cb451"] 35 + post-messages: [ 36 + "A failure in the middle of the build may be caused by build parallelism 37 + (enabled by default). 38 + Please file a bug report at https://github.com/ocaml/opam-repository/issues" 39 + {failure & jobs > 1} 40 + "You can try installing again including --jobs=1 41 + to force a sequential build instead." 42 + {failure & jobs > 1 & opam-version >= "2.0.5"} 43 + ]
+1
packages/ocaml-src/ocaml-src.4.13.1/files/META
··· 1 + version = "4.13.1"
+17
packages/ocaml-src/ocaml-src.4.13.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "opam-devel@lists.ocaml.org" 3 + license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 4 + authors: "OCaml contributors" 5 + homepage: "http://ocaml.org/" 6 + install: ["cp" "-r" "." "%{lib}%/ocaml-src"] 7 + synopsis: "Compiler sources" 8 + depends: [ 9 + "ocaml" {= "4.13.1"} 10 + ] 11 + extra-files: ["META" "md5=a036051f8a9db8fd5529a9f431af21bb"] 12 + url { 13 + src: "https://github.com/ocaml/ocaml/archive/4.13.1.tar.gz" 14 + checksum: "sha256=194c7988cc1fd1c64f53f32f2f7551e5309e44d914d6efc7e2e4d002296aeac4" 15 + } 16 + 17 +
+1 -1
packages/ocaml-src/ocaml-src.4.13.dev/files/META
··· 1 - version = "4.13.0" 1 + version = "4.13.2"
+2 -2
packages/ocaml-src/ocaml-src.4.13.dev/opam
··· 8 8 bug-reports: "https://github.com/ocaml/opam-repository/issues" 9 9 dev-repo: "git://github.com/ocaml/ocaml#4.13" 10 10 depends: [ 11 - "ocaml" {= "4.13.1"} 11 + "ocaml" {= "4.13.2"} 12 12 "ocaml-beta" {opam-version < "2.1"} 13 13 ] 14 14 flags: [ hidden-version avoid-version ] 15 - extra-files: ["META" "md5=a86cbc1fb202e11ff24cde77754c9d93"] 15 + extra-files: ["META" "md5=b8fd299f14ac907cd4916c811726f93b"] 16 16 url { 17 17 src: "git://github.com/ocaml/ocaml.git#4.13" 18 18 }
+43
packages/ocaml-system/ocaml-system.4.13.1/files/gen_ocaml_config.ml.in
··· 1 + let () = 2 + let exe = ".exe" in 3 + let ocamlc = 4 + let (base, suffix) = 5 + let s = Sys.executable_name in 6 + if Filename.check_suffix s exe then 7 + (Filename.chop_suffix s exe, exe) 8 + else 9 + (s, "") in 10 + base ^ "c" ^ suffix in 11 + if Sys.ocaml_version <> "%{_:version}%" then 12 + (Printf.eprintf 13 + "ERROR: The compiler found at %%s has version %%s,\n\ 14 + and this package requires %{_:version}%.\n\ 15 + You should use e.g. 'opam switch create %{_:name}%.%%s' \ 16 + instead." 17 + ocamlc Sys.ocaml_version Sys.ocaml_version; 18 + exit 1) 19 + else 20 + let ocamlc_digest = Digest.to_hex (Digest.file ocamlc) in 21 + let libdir = 22 + if Sys.command (ocamlc^" -where > %{_:name}%.config") = 0 then 23 + let ic = open_in "%{_:name}%.config" in 24 + let r = input_line ic in 25 + close_in ic; 26 + Sys.remove "%{_:name}%.config"; 27 + r 28 + else 29 + failwith "Bad return from 'ocamlc -where'" 30 + in 31 + let graphics = Filename.concat libdir "graphics.cmi" in 32 + let graphics_digest = 33 + if Sys.file_exists graphics then 34 + Digest.to_hex (Digest.file graphics) 35 + else 36 + String.make 32 '0' 37 + in 38 + let oc = open_out "%{_:name}%.config" in 39 + Printf.fprintf oc "opam-version: \"2.0\"\n\ 40 + file-depends: [ [ %%S %%S ] [ %%S %%S ] ]\n\ 41 + variables { path: %%S }\n" 42 + ocamlc ocamlc_digest graphics graphics_digest (Filename.dirname ocamlc); 43 + close_out oc
+20
packages/ocaml-system/ocaml-system.4.13.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "The OCaml compiler (system version, from outside of opam)" 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://github.com/ocaml/ocaml" 9 + depends: [ 10 + "ocaml" {post} 11 + "base-unix" {post} 12 + "base-threads" {post} 13 + "base-bigarray" {post} 14 + ] 15 + conflict-class: "ocaml-core-compiler" 16 + available: sys-ocaml-version = "4.13.1" 17 + flags: compiler 18 + build: ["ocaml" "gen_ocaml_config.ml"] 19 + substs: "gen_ocaml_config.ml" 20 + extra-files: ["gen_ocaml_config.ml.in" "md5=093e7bec1ec95f9e4c6a313d73c5d840"]
+1
packages/ocaml-variants/ocaml-variants.4.13.1+options/files/ocaml-variants.install
··· 1 + share_root: ["config.cache" {"ocaml/config.cache"}]
+79
packages/ocaml-variants/ocaml-variants.4.13.1+options/opam
··· 1 + opam-version: "2.0" 2 + license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 3 + synopsis: "Official release of OCaml 4.13.1" 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.12" 9 + depends: [ 10 + "ocaml" {= "4.13.1" & post} 11 + "base-unix" {post} 12 + "base-bigarray" {post} 13 + "base-threads" {post} 14 + ] 15 + conflict-class: "ocaml-core-compiler" 16 + flags: compiler 17 + setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 18 + build: [ 19 + [ 20 + "./configure" 21 + "--prefix=%{prefix}%" 22 + "-C" 23 + "--with-afl" {ocaml-option-afl:installed} 24 + "--disable-native-compiler" {ocaml-option-bytecode-only:installed} 25 + "--disable-force-safe-string" {ocaml-option-default-unsafe-string:installed} 26 + "DEFAULT_STRING=unsafe" {ocaml-option-default-unsafe-string:installed} 27 + "--disable-flat-float-array" {ocaml-option-no-flat-float-array:installed} 28 + "--enable-flambda" {ocaml-option-flambda:installed} 29 + "--enable-frame-pointers" {ocaml-option-fp:installed} 30 + "--enable-spacetime" {ocaml-option-spacetime:installed} 31 + "--disable-naked-pointers" {ocaml-option-nnp:installed} 32 + "--enable-naked-pointers-checker" {ocaml-option-nnpchecker:installed} 33 + "CC=cc" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} 34 + "CC=musl-gcc" {ocaml-option-musl:installed & os-distribution!="alpine"} 35 + "CFLAGS=-Os" {ocaml-option-musl:installed} 36 + "CC=gcc -m32" {ocaml-option-32bit:installed & os="linux"} 37 + "CC=gcc -Wl,-read_only_relocs,suppress -arch i386 -m32" {ocaml-option-32bit:installed & os="macos"} 38 + "ASPP=cc -c" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} 39 + "ASPP=musl-gcc -c" {ocaml-option-musl:installed & os-distribution!="alpine"} 40 + "ASPP=gcc -m32 -c" {ocaml-option-32bit:installed & os="linux"} 41 + "ASPP=gcc -arch i386 -m32 -c" {ocaml-option-32bit:installed & os="macos"} 42 + "AS=as --32" {ocaml-option-32bit:installed & os="linux"} 43 + "AS=as -arch i386" {ocaml-option-32bit:installed & os="macos"} 44 + "--host=i386-linux" {ocaml-option-32bit:installed & os="linux"} 45 + "--host=i386-apple-darwin13.2.0" {ocaml-option-32bit:installed & os="macos"} 46 + "PARTIALLD=ld -r -melf_i386" {ocaml-option-32bit:installed & os="linux"} 47 + "LIBS=-static" {ocaml-option-static:installed} 48 + ] 49 + [make "-j%{jobs}%"] 50 + ] 51 + install: [make "install"] 52 + url { 53 + src: "https://github.com/ocaml/ocaml/archive/4.13.1.tar.gz" 54 + checksum: "sha256=194c7988cc1fd1c64f53f32f2f7551e5309e44d914d6efc7e2e4d002296aeac4" 55 + } 56 + extra-files: ["ocaml-variants.install" "md5=3e969b841df1f51ca448e6e6295cb451"] 57 + post-messages: [ 58 + "A failure in the middle of the build may be caused by build parallelism 59 + (enabled by default). 60 + Please file a bug report at https://github.com/ocaml/opam-repository/issues" 61 + {failure & jobs > 1} 62 + "You can try installing again including --jobs=1 63 + to force a sequential build instead." 64 + {failure & jobs > 1 & opam-version >= "2.0.5"} 65 + ] 66 + depopts: [ 67 + "ocaml-option-32bit" 68 + "ocaml-option-afl" 69 + "ocaml-option-bytecode-only" 70 + "ocaml-option-default-unsafe-string" 71 + "ocaml-option-no-flat-float-array" 72 + "ocaml-option-flambda" 73 + "ocaml-option-fp" 74 + "ocaml-option-musl" 75 + "ocaml-option-static" 76 + "ocaml-option-spacetime" 77 + "ocaml-option-nnp" 78 + "ocaml-option-nnpchecker" 79 + ]
+1 -1
packages/ocaml-variants/ocaml-variants.4.13.1+trunk/opam packages/ocaml-variants/ocaml-variants.4.13.2+trunk/opam
··· 7 7 bug-reports: "https://github.com/ocaml/opam-repository/issues" 8 8 dev-repo: "git+https://github.com/ocaml/ocaml.git#trunk" 9 9 depends: [ 10 - "ocaml" {= "4.13.1" & post} 10 + "ocaml" {= "4.13.2" & post} 11 11 "base-unix" {post} 12 12 "base-bigarray" {post} 13 13 "base-threads" {post}
+30
packages/ocaml/ocaml.4.13.2/opam
··· 1 + opam-version: "2.0" 2 + license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 3 + synopsis: "The OCaml compiler (virtual package)" 4 + description: """ 5 + This package requires a matching implementation of OCaml, 6 + and polls it to initialise specific variables like `ocaml:native-dynlink`""" 7 + maintainer: "platform@lists.ocaml.org" 8 + depends: [ 9 + "ocaml-config" {>= "2"} 10 + "ocaml-base-compiler" {>= "4.13.2~" & < "4.13.3~"} | 11 + "ocaml-variants" {>= "4.13.2~" & < "4.13.3~"} | 12 + "ocaml-system" {>= "4.13.2" & < "4.13.3~"} 13 + ] 14 + setenv: [ 15 + [CAML_LD_LIBRARY_PATH = "%{_:stubsdir}%"] 16 + [CAML_LD_LIBRARY_PATH += "%{lib}%/stublibs"] 17 + [OCAML_TOPLEVEL_PATH = "%{toplevel}%"] 18 + ] 19 + build: ["ocaml" "%{ocaml-config:share}%/gen_ocaml_config.ml" _:version _:name] 20 + build-env: CAML_LD_LIBRARY_PATH = "" 21 + homepage: "https://ocaml.org" 22 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 23 + authors: [ 24 + "Xavier Leroy" 25 + "Damien Doligez" 26 + "Alain Frisch" 27 + "Jacques Garrigue" 28 + "Didier Rémy" 29 + "Jérôme Vouillon" 30 + ]