this repo has no description
0
fork

Configure Feed

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

Add Windows system- + host-system- packages

Add the system-mingw and system-msvc packages to specify either the
mingw-w64 or MSVC ports when compiling OCaml and the host-system-mingw
and host-system-msvc packages to be used for the dependency graph.

The intention is to complete this for non-Windows systems, but as there
will always be a chance of an unknown system, host-system-other is added
to be used for all the other ports. This package is significant, as
compiler packages must always install a host-system- package (or the
user could attempt to install another incorrect one).

+83
+17
packages/host-system-mingw/host-system-mingw.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "OCaml for mingw-w64" 3 + description: """ 4 + This package is installed if the underlying OCaml compiler is one of the 5 + mingw-w64 native Windows ports of OCaml. 6 + 7 + Precisely, this means `ocamlopt -config-var system` is equal to either `mingw` 8 + or `mingw64`. 9 + 10 + This package may be used in depends or conflicts fields of dependent packages 11 + to indicate either a requirement or an incompatibility with this OCaml port.""" 12 + maintainer: "David Allsopp <david@tarides.com>" 13 + authors: "David Allsopp" 14 + license: "CC0-1.0+" 15 + homepage: "https://opam.ocaml.org" 16 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 17 + conflict-class: "ocaml-host-system"
+17
packages/host-system-msvc/host-system-msvc.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "OCaml for Microsoft Visual Studio" 3 + description: """ 4 + This package is installed if the underlying OCaml compiler is one of the "MSVC" 5 + native Windows ports of OCaml. 6 + 7 + Precisely, this means `ocamlopt -config-var system` is equal to either `win32` 8 + or `win64`. 9 + 10 + This package may be used in depends or conflicts fields of dependent packages 11 + to indicate either a requirement or an incompatibility with this OCaml port.""" 12 + maintainer: "David Allsopp <david@tarides.com>" 13 + authors: "David Allsopp" 14 + license: "CC0-1.0+" 15 + homepage: "https://opam.ocaml.org" 16 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 17 + conflict-class: "ocaml-host-system"
+15
packages/host-system-other/host-system-other.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "OCaml on an unidentified system" 3 + description: """ 4 + This package is installed if the underlying OCaml compiler's system is not 5 + recognised by opam-repository's compiler packaging. 6 + 7 + It is not expected that this package be used in depends or conflicts fields of 8 + dependent packages, given that its use may be changed if the packaging is 9 + subsequently enhanced to recognise the system value.""" 10 + maintainer: "David Allsopp <david@tarides.com>" 11 + authors: "David Allsopp" 12 + license: "CC0-1.0+" 13 + homepage: "https://opam.ocaml.org" 14 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 15 + conflict-class: "ocaml-host-system"
+17
packages/system-mingw/system-mingw.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Build OCaml for mingw-w64" 3 + description: """ 4 + This package specifies OCaml built with the mingw-w64 GCC compiler and is 5 + presently available for i386/x86_32 and amd64/x86_64. 6 + 7 + This package corresponds to the `mingw` and `mingw64` values given by 8 + `ocamlopt -config-var system`.""" 9 + maintainer: "David Allsopp <david@tarides.com>" 10 + authors: "David Allsopp" 11 + license: "CC0-1.0+" 12 + homepage: "https://opam.ocaml.org" 13 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 14 + flags: compiler 15 + available: os = "win32" 16 + depends: "ocaml-base-compiler" {post & >= "4.13.0~"} | "ocaml-variants" {post & >= "4.13.0~"} 17 + conflict-class: "ocaml-system"
+17
packages/system-msvc/system-msvc.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Build OCaml for Microsoft Visual Studio" 3 + description: """ 4 + This package specifies OCaml built with Microsoft Visual Studio and is presently 5 + available for i386/x86_32 and amd64/x86_64. 6 + 7 + This package corresponds to the `win32` and `win64` values given by 8 + `ocamlopt -config-var system`.""" 9 + maintainer: "David Allsopp <david@tarides.com>" 10 + authors: "David Allsopp" 11 + license: "CC0-1.0+" 12 + homepage: "https://opam.ocaml.org" 13 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 14 + flags: compiler 15 + available: os = "win32" 16 + depends: "ocaml-base-compiler" {post & >= "4.13.0~"} | "ocaml-variants" {post & >= "4.13.0~"} 17 + conflict-class: "ocaml-system"