this repo has no description
0
fork

Configure Feed

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

Merge pull request #26819 from mtelvers/gnutls

Mingw support for gnutls and nettle

authored by

Marcello Seri and committed by
GitHub
b8f61d1a e72cbe97

+104 -2
+24 -2
packages/conf-gnutls/conf-gnutls.1/opam
··· 3 3 homepage: "https://www.gnutls.org" 4 4 authors: ["Nikos Mavrogiannopoulos" "Simon Josefsson"] 5 5 license: "LGPL-2.1-or-later" 6 - build: [["pkg-config" "gnutls" "nettle"]] 7 - depends: ["conf-pkg-config" {build}] 6 + build: [ 7 + "pkgconf" {os = "win32" & os-distribution != "cygwinports"} 8 + "--personality=i686-w64-mingw32" 9 + {os = "win32" & os-distribution != "cygwinports" & 10 + host-arch-x86_32:installed} 11 + "--personality=x86_64-w64-mingw32" 12 + {os = "win32" & os-distribution != "cygwinports" & 13 + host-arch-x86_64:installed} 14 + "pkg-config" {os != "win32" | os-distribution != "cygwin"} 15 + "gnutls" "nettle" 16 + ] 17 + depends: [ 18 + "conf-pkg-config" {build} 19 + ("host-arch-x86_32" {os = "win32" & os-distribution != "cygwinports"} & 20 + "conf-mingw-w64-gnutls-i686" 21 + {os = "win32" & os-distribution != "cygwinports"} & 22 + "conf-mingw-w64-nettle-i686" 23 + {os = "win32" & os-distribution != "cygwinports"} | 24 + "host-arch-x86_64" {os = "win32" & os-distribution != "cygwinports"} & 25 + "conf-mingw-w64-nettle-x86_64" 26 + {os = "win32" & os-distribution != "cygwinports"} & 27 + "conf-mingw-w64-gnutls-x86_64" 28 + {os = "win32" & os-distribution != "cygwinports"}) 29 + ] 8 30 depexts: [ 9 31 ["libgnutls28-dev" "nettle-dev"] {os-family = "debian" | os-family = "ubuntu"} 10 32 ["gnutls-dev"] {os-distribution = "alpine"}
+20
packages/conf-mingw-w64-gnutls-i686/conf-mingw-w64-gnutls-i686.1/opam
··· 1 + opam-version: "2.0" 2 + homepage: "https://www.gnutls.org" 3 + authors: ["Nikos Mavrogiannopoulos" "Simon Josefsson"] 4 + license: "LGPL-2.1-or-later" 5 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 6 + flags: conf 7 + available: os = "win32" 8 + build: ["pkgconf" "--personality=i686-w64-mingw32" "gnutls"] 9 + depends: [ 10 + "conf-pkg-config" {build} 11 + "conf-mingw-w64-gcc-i686" {build} 12 + ] 13 + synopsis: "GnuTLS for i686 mingw-w64" 14 + description: 15 + "Ensure the i686 version of gnutls for the mingw-w64 project is available" 16 + maintainer: "David Allsopp <david@tarides.com>" 17 + depexts: [ 18 + ["mingw64-i686-gnutls"] {os = "win32" & os-distribution = "cygwin"} 19 + ["mingw-w64-i686-gnutls"] {os = "win32" & os-distribution = "msys2"} 20 + ]
+20
packages/conf-mingw-w64-gnutls-x86_64/conf-mingw-w64-gnutls-x86_64.1/opam
··· 1 + opam-version: "2.0" 2 + homepage: "https://www.gnutls.org" 3 + authors: ["Nikos Mavrogiannopoulos" "Simon Josefsson"] 4 + license: "LGPL-2.1-or-later" 5 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 6 + flags: conf 7 + available: os = "win32" 8 + build: ["pkgconf" "--personality=x86_64-w64-mingw32" "gnutls"] 9 + depends: [ 10 + "conf-pkg-config" {build} 11 + "conf-mingw-w64-gcc-x86_64" {build} 12 + ] 13 + synopsis: "GnuTLS for x86_64 mingw-w64" 14 + description: 15 + "Ensure the x86_64 version of gnutls for the mingw-w64 project is available" 16 + maintainer: "David Allsopp <david@tarides.com>" 17 + depexts: [ 18 + ["mingw64-x86_64-gnutls"] {os = "win32" & os-distribution = "cygwin"} 19 + ["mingw-w64-x86_64-gnutls"] {os = "win32" & os-distribution = "msys2"} 20 + ]
+20
packages/conf-mingw-w64-nettle-i686/conf-mingw-w64-nettle-i686.1/opam
··· 1 + opam-version: "2.0" 2 + homepage: "https://www.gnutls.org" 3 + authors: ["Nikos Mavrogiannopoulos" "Simon Josefsson"] 4 + license: "LGPL-2.1-or-later" 5 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 6 + flags: conf 7 + available: os = "win32" 8 + build: ["pkgconf" "--personality=i686-w64-mingw32" "nettle"] 9 + depends: [ 10 + "conf-pkg-config" {build} 11 + "conf-mingw-w64-gcc-i686" {build} 12 + ] 13 + synopsis: "Nettle for i686 mingw-w64" 14 + description: 15 + "Ensure the i686 version of nettle for the mingw-w64 project is available" 16 + maintainer: "David Allsopp <david@tarides.com>" 17 + depexts: [ 18 + ["mingw64-i686-nettle"] {os = "win32" & os-distribution = "cygwin"} 19 + ["mingw-w64-i686-nettle"] {os = "win32" & os-distribution = "msys2"} 20 + ]
+20
packages/conf-mingw-w64-nettle-x86_64/conf-mingw-w64-nettle-x86_64.1/opam
··· 1 + opam-version: "2.0" 2 + homepage: "https://www.gnutls.org" 3 + authors: ["Nikos Mavrogiannopoulos" "Simon Josefsson"] 4 + license: "LGPL-2.1-or-later" 5 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 6 + flags: conf 7 + available: os = "win32" 8 + build: ["pkgconf" "--personality=x86_64-w64-mingw32" "nettle"] 9 + depends: [ 10 + "conf-pkg-config" {build} 11 + "conf-mingw-w64-gcc-x86_64" {build} 12 + ] 13 + synopsis: "Nettle for x86_64 mingw-w64" 14 + description: 15 + "Ensure the x86_64 version of nettle for the mingw-w64 project is available" 16 + maintainer: "David Allsopp <david@tarides.com>" 17 + depexts: [ 18 + ["mingw64-x86_64-nettle"] {os = "win32" & os-distribution = "cygwin"} 19 + ["mingw-w64-x86_64-nettle"] {os = "win32" & os-distribution = "msys2"} 20 + ]