vcpkg/ports/sentry-native
Billy O'Neal fc722d9187
[sentry-native] Remove vcpkg_fail_port_install. (#22765)
* [sentry-native] Remove vcpkg_fail_port_install.

vcpkg.json and portfile.cmake don't agree, but given that vcpkg.json is more restrictive than portfile.cmake, I just deleted the call.

vcpkg.json: !(arm | (arm64 & !osx) | uwp)
portfile.cmake: osx | !(arm32 | arm64 | uwp)

Putting `!(arm | (arm64 & !osx) | uwp)` into DNF:
```
!(arm | (arm64 & !osx) | uwp)                             given
!arm & !(arm64 & !osx) & !uwp                             demorgan
!arm & (!arm64 | osx) & !uwp                              demorgan
(!arm & !uwp & !arm64) | (!arm & !uwp & osx)              distribute ands over ors
(!arm32 & !arm64 & !uwp) | (!arm32 & !arm64 & !uwp & osx) definition of arm
(!arm32 & !arm64 & !uwp) | (!arm32 & !arm64 & osx)        osx implies uwp
```

Putting `osx | !(arm32 | arm64 | uwp)` into DNF:
```
osx | !(arm32 | arm64 | uwp)                     given
osx | (!arm32 & !arm64 & !uwp)                   demorgan
```

(at which point one of the conjunctions is identical and the other is just more conditions on osx)

In support of https://github.com/microsoft/vcpkg/pull/21502

* DNF

* add license

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-24 15:14:39 -08:00
..
fix-config-cmake.patch
fix-warningC5105.patch
portfile.cmake [cmake/getdns/jasper/mesa/sentry-native] Fix error C2065 and C2079 (#22630) 2022-01-24 12:21:52 -08:00
use-zlib-target.patch
vcpkg.json [sentry-native] Remove vcpkg_fail_port_install. (#22765) 2022-01-24 15:14:39 -08:00