* [openimageio] Remove vcpkg_fail_port_install.
Separated out because it adds a supports expression to a feature. This port is not named in ci.baseline.txt.
In support of https://github.com/microsoft/vcpkg/pull/21502
* remove !uwp
# Conflicts:
# versions/o-/openimageio.json
* Compile for android
* version
* Update versions/s-/sockpp.json
* version
* Update to #55
* version
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
* [qtbase] Add fatal error to remind install feature pcre2 when install static library
* update version
* update feature pcre2 to hard dependency
* update version
* update vcpkg.json
* update version
* make feature doubleconversion to hare dependency
* format vcpkg.json
* update version
* update version
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
* [shaderwriter] Update to version 2.0.0
* Updated port files
* Another update for CMake submodule
* Another update to CMake submodule
* Another one
* Removed unused cmake variable
* [ace] Update to 7.0.6
* Remove patch
* Adding double quotes to absolute paths
* Optimize the code to modify the content of config.h
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
* Bulk remove vcpkg_fail_port_install calls.
Interesting ones have been split out into separate reviews, where "interesting" means "anything more than just deleting the call to vcpkg_fail_port_install",
In support of https://github.com/microsoft/vcpkg/pull/21502
* Update version database.
* Revert google benchmark changes already submitted as https://github.com/microsoft/vcpkg/pull/22728
* Repair version database.
* update intel-ipsec to v1.1
* Update portfile.cmake, correct the install file path
* Add more double quotes
* Revert changes about double quotes
* version
* [intel-ipsec] Overhaul/modernize port.
* Remove CMakeLists.txt replacement that was a fancy way to say vcpkg_from_make/vcpkg_from_nmake.
* Convert support messages into a "supports" expression.
* Fix Windows.
* Correct CMake config handling of release/debug static/shared and Windows.
* Remove attempt to copy nonexistent PDBs.
* Apply CR feedback from Nicole and dg0yt
* Add if(TARGET
* Update always-generate-PDB patch with the version actually merged upstream.
Co-authored-by: Mengna-Li <you@example.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
* [capnproto] Remove vcpkg_fail_port_install.
The portfile and vcpkg.json disagreed.
```
vcpkg.json: !uwp & !((arm | arm64) & windows)
portfile: !uwp & (!windows | !(arm | arm64))
```
If we demorgan the supports expression once they agree:
```
!uwp & (!(arm | arm64) | !windows)
```
Also, arm64 implies arm:
```
!uwp & (!arm | !windows)
```
In support of https://github.com/microsoft/vcpkg/pull/21502
* Put the supports expression into DNF as suggested by @strega-nil.
The only places this was being used were as morally asserts for the port itself. Also removed empty ports from ci.baseline.txt.
In support of https://github.com/microsoft/vcpkg/pull/21502
vcpkg.json and portfile.cmake disagreed.
vcpkg.json: windows & x64 & !static
portfile: !linux & !osx & !uwp & !x86
Also ci.baseline.txt has:
libfabric:arm-uwp=fail
libfabric:x64-linux=fail
libfabric:x64-osx=fail
libfabric:x64-uwp=fail
libfabric:x64-windows-static=fail
libfabric:x64-windows-static-md=fail
I'm assuming "windows" means the same as !linux & !osx.
I'm assuming "x64" is intended to be the same as "!x86" given the ci.baseline.txt entries.
This means we need to add !uwp.
In support of https://github.com/microsoft/vcpkg/pull/21502