this repo has no description
1opam-version: "2.0" 2synopsis: "GCC mingw-w64 OCaml Runtime Dependency (32-bit)" 3description: """ 4This package is an internal part of the implementation of the OCaml compiler in 5opam-repository. 6 7This package is used to create an indirection between the OCaml compiler 8packages and conf-mingw-w64-gcc-x86_64. The compiler packages must have one of 9conf-mingw-w64-gcc-i686 or conf-mingw-w64-gcc-x86_64 depending on configuration, 10but if they directly refer to both packages in their depends fields then the 11subsequent installation of the _other_ C compiler package would trigger a 12rebuild of the OCaml compiler package, because it changes its dependency cone. 13By having the compiler packages instead depend on either ocaml-env-mingw64 or 14ocaml-env-mingw32, the installation of conf-mingw-w64-gcc-x86_64 into a switch 15already containing ocaml-env-mingw32 does not trigger a rebuild of the OCaml 16compiler, because ocaml-env-mingw64 is not installed.""" 17maintainer: "David Allsopp <david@tarides.com>" 18authors: "David Allsopp" 19license: "CC0-1.0+" 20homepage: "https://opam.ocaml.org" 21bug-reports: "https://github.com/ocaml/opam-repository/issues" 22depends: [ 23 "host-system-mingw" {post} 24 "host-arch-x86_32" {post} 25 "conf-mingw-w64-gcc-i686" 26] 27conflict-class: "ocaml-env-mingw" 28flags: conf