this repo has no description

Merge pull request #26072 from dra27/windows-conf-libssl

Update conf-libssl for the mingw-w64 ports

Changed files
+48 -1
packages
conf-libssl
conf-libssl.1
conf-libssl.2
conf-libssl.3
conf-libssl.4
conf-mingw-w64-openssl-i686
conf-mingw-w64-openssl-i686.1
conf-mingw-w64-openssl-x86_64
conf-mingw-w64-openssl-x86_64.1
+1
packages/conf-libssl/conf-libssl.1/opam
···
"md5=faf81a6bf30e346abe94610f136c6193"
]
}
+
available: os != "win32" | os-distribution = "cygwinports"
+1
packages/conf-libssl/conf-libssl.2/opam
···
description:
"This package can only install if the OpenSSL library is installed on the system."
flags: conf
+
available: os != "win32" | os-distribution = "cygwinports"
+1
packages/conf-libssl/conf-libssl.3/opam
···
"md5=a524c7b9cb12a5be63c7d5933ccd1c43"
]
}
+
available: os != "win32" | os-distribution = "cygwinports"
+7 -1
packages/conf-libssl/conf-libssl.4/opam
···
[HOMEBREW_NO_AUTO_UPDATE = "1"]
]
build: [
-
["pkg-config" "--print-errors" "--exists" "openssl"]
+
["pkgconf" {os = "win32" & os-distribution = "cygwin"}
+
"--personality=i686-w64-mingw32" {os = "win32" & os-distribution = "cygwin" & host-arch-x86_32:installed}
+
"--personality=x86_64-w64-mingw32" {os = "win32" & os-distribution = "cygwin" & host-arch-x86_64:installed}
+
"pkg-config" {os != "win32" | os-distribution != "cygwin"}
+
"--print-errors" "--exists" "openssl"]
{os != "freebsd" & os != "openbsd" & os != "netbsd" & # libssl is provided by base system on BSDs
os-distribution != "homebrew"}
["sh" "-ex" "./homebrew.sh" "check"] {os-distribution = "homebrew"}
···
]
depends: [
"conf-pkg-config" {build}
+
("host-arch-x86_32" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-openssl-i686" {os = "win32" & os-distribution != "cygwinports"} |
+
"host-arch-x86_64" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-openssl-x86_64" {os = "win32" & os-distribution != "cygwinports"})
]
depexts: [
["libssl-dev"] {os-family = "debian"}
+19
packages/conf-mingw-w64-openssl-i686/conf-mingw-w64-openssl-i686.1/opam
···
+
opam-version: "2.0"
+
synopsis: "libssl for i686 mingw-w64 (32-bit x86)"
+
description: "Ensures the i686 version of libssl for the mingw-w64 project is available"
+
maintainer: "David Allsopp <david@tarides.com>"
+
authors: "The OpenSSL Project"
+
license: "Apache-1.0"
+
homepage: "https://www.openssl.org"
+
bug-reports: "https://github.com/ocaml/opam-repository/issues"
+
flags: conf
+
available: os = "win32" & os-distribution = "cygwin"
+
build: ["pkgconf" "--personality=i686-w64-mingw32" "openssl"]
+
depends: [
+
"conf-pkg-config" {build}
+
"conf-mingw-w64-gcc-i686" {build}
+
]
+
depexts: [
+
["mingw64-i686-openssl"] {os = "win32" & os-distribution = "cygwin"}
+
["mingw-w64-i686-openssl"] {os = "win32" & os-distribution = "msys2"}
+
]
+19
packages/conf-mingw-w64-openssl-x86_64/conf-mingw-w64-openssl-x86_64.1/opam
···
+
opam-version: "2.0"
+
synopsis: "libssl for x86_64 mingw-w64 (64-bit x86_64)"
+
description: "Ensures the x86_64 version of libssl for the mingw-w64 project is available"
+
maintainer: "David Allsopp <david@tarides.com>"
+
authors: "The OpenSSL Project"
+
license: "Apache-1.0"
+
homepage: "https://www.openssl.org"
+
bug-reports: "https://github.com/ocaml/opam-repository/issues"
+
flags: conf
+
available: os = "win32" & os-distribution = "cygwin"
+
build: ["pkgconf" "--personality=x86_64-w64-mingw32" "openssl"]
+
depends: [
+
"conf-pkg-config" {build}
+
"conf-mingw-w64-gcc-x86_64" {build}
+
]
+
depexts: [
+
["mingw64-x86_64-openssl"] {os = "win32" & os-distribution = "cygwin"}
+
["mingw-w64-x86_64-openssl"] {os = "win32" & os-distribution = "msys2"}
+
]