this repo has no description
0
fork

Configure Feed

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

Add support for conf-mbedtls on windows

+63
+42
packages/conf-mbedtls/conf-mbedtls.2/opam
··· 1 + opam-version: "2.0" 2 + authors: "Mbedtls contributors" 3 + maintainer: "Andy Li <andy@onthewings.net>" 4 + homepage: "https://www.trustedfirmware.org/projects/mbed-tls/" 5 + bug-reports: "https://github.com/Mbed-TLS/mbedtls/issues" 6 + license: "Apache-2.0" 7 + build: [ 8 + ["cc" {os != "win32"} "gcc" {os = "win32"} "-I/usr/local/include" "test.c"] { os != "macos" | os-distribution != "homebrew" } 9 + ["sh" "-c" "cc -I\"$(brew --prefix mbedtls)/include\" test.c"] {os = "macos" & os-distribution = "homebrew"} 10 + ] 11 + depends: [ 12 + "host-arch-x86_64" {os = "win32" & (os-distribution = "cygwin" | os-distribution = "msys2")} 13 + "conf-mingw-w64-mbedtls-x86_64" {os = "win32" & (os-distribution = "cygwin" | os-distribution = "msys2")} 14 + ] 15 + depexts: [ 16 + ["mbedtls-dev"] {os-distribution = "alpine"} 17 + ["libmbedtls-dev"] {os-family = "debian" | os-family = "ubuntu"} 18 + ["mbedtls-devel"] {os-distribution = "fedora"} 19 + ["mbedtls-devel"] {os-family = "suse" | os-family = "opensuse"} 20 + ["mbedtls-devel" "epel-release"] {os-distribution = "centos"} 21 + ["mbedtls"] {os-distribution = "nixos"} 22 + ["mbedtls"] {os-distribution = "homebrew" & os = "macos"} 23 + ["mbedtls"] {os-distribution = "arch"} 24 + ["mbedtls"] {os = "freebsd"} 25 + ] 26 + x-ci-accept-failures: [ 27 + "oraclelinux-7" 28 + "oraclelinux-8" 29 + "oraclelinux-9" 30 + ] 31 + synopsis: "Virtual package relying on an mbedtls system installation" 32 + description: 33 + "This package can only install if mbedtls is installed on the system." 34 + flags: conf 35 + extra-source "test.c" { 36 + src: 37 + "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-mbedtls/test.c" 38 + checksum: [ 39 + "sha256=7bd6968f4a0264bc191462dffc813782abc06d2cdcd050111142521a6402a5a1" 40 + "md5=1cbe1f446c204d636761cb3302fb232a" 41 + ] 42 + }
+21
packages/conf-mingw-w64-mbedtls-x86_64/conf-mingw-w64-mbedtls-x86_64.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Libmbedtls for x86_64 mingw-w64 (64-bit x86_64)" 3 + description: "Ensures the x86_64 version of libmbedtls for the mingw-w64 project is available" 4 + maintainer: "tobil4sk" 5 + authors: "Mbedtls contributors" 6 + homepage: "https://www.trustedfirmware.org/projects/mbed-tls/" 7 + bug-reports: "https://github.com/Mbed-TLS/mbedtls/issues" 8 + license: "Apache-2.0" 9 + flags: conf 10 + available: os = "win32" 11 + build: [ 12 + ["pkgconf" "--personality=x86_64-w64-mingw32" "mbedtls"] 13 + ] 14 + depends: [ 15 + "conf-pkg-config" {build} 16 + "conf-mingw-w64-gcc-x86_64" {build} 17 + ] 18 + depexts: [ 19 + # ["mingw64-x86_64-mbedtls"] {os = "win32" & os-distribution = "cygwin"} 20 + ["mingw-w64-x86_64-mbedtls"] {os = "win32" & os-distribution = "msys2"} 21 + ]