this repo has no description
0
fork

Configure Feed

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

Merge pull request #25738 from jmid/conf-mbedtls-expand

conf-mbedtls: add support for Ubuntu family

authored by

Marcello Seri and committed by
GitHub
9cf6d5cf e90e1405

+9 -2
+9 -2
packages/conf-mbedtls/conf-mbedtls.1/opam
··· 5 5 bug-reports: "https://github.com/ARMmbed/mbedtls/issues" 6 6 license: "Apache-2.0" 7 7 build: [ 8 - ["cc" "-I/usr/local/include" "test.c"] 8 + ["cc" "-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"} 9 10 ] 10 11 depexts: [ 11 12 ["mbedtls-dev"] {os-distribution = "alpine"} 12 - ["libmbedtls-dev"] {os-family = "debian"} 13 + ["libmbedtls-dev"] {os-family = "debian" | os-family = "ubuntu"} 13 14 ["mbedtls-devel"] {os-distribution = "fedora"} 14 15 ["mbedtls-devel"] {os-family = "suse" | os-family = "opensuse"} 15 16 ["mbedtls-devel" "epel-release"] {os-distribution = "centos"} ··· 17 18 ["mbedtls"] {os-distribution = "homebrew" & os = "macos"} 18 19 ["mbedtls"] {os-distribution = "arch"} 19 20 ["mbedtls"] {os = "freebsd"} 21 + ["mbedtls"] {os = "macos" & os-distribution = "homebrew"} 22 + ] 23 + x-ci-accept-failures: [ 24 + "oraclelinux-7" 25 + "oraclelinux-8" 26 + "oraclelinux-9" 20 27 ] 21 28 synopsis: "Virtual package relying on an mbedtls system installation" 22 29 description: