Commit Graph

2693 Commits

Author SHA1 Message Date
Kai Pastor
7be2c9dc8f
[gdal] Fix absolute paths in wrapper (#22698)
* Fixup absolute paths in wrapper

* Update versions
2022-01-25 22:47:18 -08:00
autoantwort
ac068dea21
[gmmlib] no absolute paths (#22716) 2022-01-25 22:31:46 -08:00
autoantwort
65be533892
[libalkimia] no absolute paths (#22710) 2022-01-25 22:29:40 -08:00
LilyWangLL
ef5c753627
[qtbase] Make feature pcre2 to hard dependency when install static library (#22584)
* [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>
2022-01-25 22:29:20 -08:00
Sylvain Doremus
bd97a0c080
[shaderwriter] Update to version 2.0.0 (#22662)
* [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
2022-01-25 22:26:41 -08:00
autoantwort
fb80699122
[pcl] no absolute paths (#22661) 2022-01-25 21:38:48 -08:00
Bill Avery
e6a604d207
[cppgraphqlgen] Update to v4.1.1 for latest release (#22702)
* [cppgraphqlgen] Build the latest v3.x release

* vcpkg x-add-version --all

* [cppgraphqlgen] Build latest main release

* vcpkg x-add-version --all

* Add a license field to vcpkg.json

* vcpkg x-add-version --all --overwrite-version

* Remove v3.7.1 which can't be committed separately
2022-01-25 21:24:53 -08:00
Max Khon
42bfc0e5fb
Fix release-only build (#22672) 2022-01-25 21:22:17 -08:00
Hleb Valoshka
9bc6ce13fa
[cspice] update to version 67 (#22655)
* [cspice] update to version 67

* [cspice] update cspice in ports database

Co-authored-by: Hleb Valoshka <v-hleb.v@turvo.com>
2022-01-25 21:01:54 -08:00
LilyWangLL
f5d8bf68b9
[libudis86] Fix build error (#22637)
* [libudis86] Fix build error

* update version

* update CMakeLists.txt

* update version

* update portfile.cmake

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-01-25 20:58:44 -08:00
Cheney Wang
d02cb14d6c
[ace] Update to 7.0.6 (#22651)
* [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>
2022-01-25 20:57:01 -08:00
Daniel Parker
b41cc26173
[jsoncons] Update to version 0.168.3 (#22774)
* [jsoncons] Update to version 0.168.3

* [jsoncons] Update baseline
2022-01-25 13:03:01 -08:00
Billy O'Neal
c9e786d81a
[many ports] remove remaining vcpkg_fail_port_install calls. (#22770)
* 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.
2022-01-25 10:31:15 -08:00
Billy O'Neal
b18b17865c
Update intel-ipsec to 1.1, fix cmake configs, and support Windows. (#22269)
* 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>
2022-01-24 16:30:52 -08:00
Max Khon
9b0c7e7b76
[libbacktrace] The port does not support windows builds (#22673) 2022-01-24 15:17:41 -08:00
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
chausner
a29b8996cd
[nlohmann-json] Update to 3.10.5 (#22703)
* Update nlohmann-json to 3.10.5

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
2022-01-24 15:13:05 -08:00
chausner
8a7266f8ed
[libuv] Update to 1.43.0 (#22704)
* Update libuv to 1.43.0

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
2022-01-24 15:11:05 -08:00
chausner
81800b4f6e
[uwebsockets] Update to 20.9.0 (#22706)
* Update uwebsockets to 20.9.0

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
2022-01-24 15:09:36 -08:00
مهدي شينون (Mehdi Chinoune)
720a0fe953
[muparser] update to 2.3.3-1 (#22711) 2022-01-24 15:09:13 -08:00
autoantwort
8ce7e2a2ac
[sdl1] no absolute paths (#22718) 2022-01-24 15:08:18 -08:00
autoantwort
1094b41fd0
[opencv3] no absolute paths (#22721) 2022-01-24 14:59:43 -08:00
autoantwort
b991f18cd4
[botan] no absolute paths (#22722) 2022-01-24 14:59:19 -08:00
Jack·Boos·Yu
ff5bd0828c
[skyr-url] Fix cmake config files (#22760)
* [skyr-url] Fix cmake config files

* version
2022-01-24 14:58:41 -08:00
Billy O'Neal
4945d50e90
[capnproto] Remove vcpkg_fail_port_install. (#22730)
* [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.
2022-01-24 13:51:42 -08:00
Billy O'Neal
b06a316ff4
[libgpod] Remove vcpkg_fail_port_install. (#22739)
Previously there was no "supports", and there was overlap with ci.baseline.txt.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 13:48:07 -08:00
Billy O'Neal
fb1df5721e
[openssl] Remove vcpkg_fail_port_install. (#22755)
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
2022-01-24 13:35:21 -08:00
Billy O'Neal
b3755cb89f
[benchmark] Remove vcpkg_fail_port_install. (#22728)
A comment was moved from portfile.cmake to vcpkg.json.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 13:33:27 -08:00
Billy O'Neal
842538f456
[libevhtp] Remove vcpkg_fail_port_install. (#22737)
Previously there was no supports expression.
2022-01-24 13:23:10 -08:00
Billy O'Neal
1c0c374e93
[libfabric] Remove vcpkg_fail_port_install. (#22738)
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
2022-01-24 13:20:59 -08:00
Billy O'Neal
3ddcccfb9c
[libhdfs3] Remove vcpkg_fail_port_install. (#22740)
Previously there was no supports expression, and there was ci.baseline.txt impact.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 12:55:02 -08:00
Billy O'Neal
76cfc85cd9
[blend2d] Remove vcpkg_fail_port_install. (#22741)
Only wasm32 was missing.

Also ci.baseline.txt was out of date.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 12:54:40 -08:00
Billy O'Neal
6e8f8e3a83
[folly] Remove vcpkg_fail_port_install. (#22745)
* [folly] Remove vcpkg_fail_port_install.

vcpkg.json was missing the uwp skip but otherwise agreed. There is no ci.baseline.txt impact because:

     Error: libevent[core] is only supported on '!uwp'

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

* Give up trying to prove that the support expression is correct and just follow what portfile.cmake says.

* Fix brain fart @JackBoosY found.
2022-01-24 12:54:09 -08:00
Billy O'Neal
b18fc99b28
[pfring] Remove vcpkg_fail_port_install. (#22758)
There was no supports expression before so there was ci.baseline.txt impact.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 12:51:38 -08:00
Billy O'Neal
9fb2ecfd33
[pbc] Remove vcpkg_fail_port_install. (#22757)
The support expression was missing the arm block, but there was no ci.baseline.txt impact.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 12:46:21 -08:00
Billy O'Neal
63e8e69d0c
[rsm-bsa] Remove vcpkg_fail_port_install. (#22764)
Separated out because it adds a supports: to a feature.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 12:40:10 -08:00
Billy O'Neal
7f348e0d7e
[tiff] Remove vcpkg_fail_port_install. (#22766)
Separated out because it adds supports to a feature.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 12:33:55 -08:00
Billy O'Neal
e9b12d14a2
[xmsh] Delete port. (#22768)
This port had a call to vcpkg_fail_port_install and upstream is gone. ci.baseline.txt said to delete the port after this length of time.
2022-01-24 12:33:24 -08:00
Billy O'Neal
d4bd1067f7
[turbobase64] Remove vcpkg_fail_port_install. (#22767)
There was no previous supports and there was ci.baseline.txt impact.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 12:32:22 -08:00
Billy O'Neal
257d2aa3fa
[zkpp] Remove vcpkg_fail_port_install. (#22769)
* [zkpp] Remove vcpkg_fail_port_install.

There was no supports expression before, and there is ci.baseline.txt impact.

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

* Fix flipped sense.
2022-01-24 12:31:39 -08:00
Alexander Neumann
4f6bd1f0c6
[tool-meson] fix dependency. (#22691)
* Fix native meson error

* version stuff
2022-01-24 12:27:42 -08:00
Cheney Wang
48b4cb1cce
[cmake/getdns/jasper/mesa/sentry-native] Fix error C2065 and C2079 (#22630)
* [cmake/getdns/jasper/mesa/sentry-native] Fix error C2065 and C2079

* Add windows check

* Add MINGW check

* update json

Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2022-01-24 12:21:52 -08:00
Billy O'Neal
3afbc7b286
[pangomm] Remove vcpkg_fail_port_install. (#22756)
There was no supports expression before so this did have ci.baseline.txt impact.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:53:41 -08:00
Billy O'Neal
61ccae4e16
[crashrpt] Remove vcpkg_fail_port_install. (#22736)
There previously was no supports expression.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:21:27 -08:00
Billy O'Neal
fc8763ac0c
[cpuid] Remove vcpkg_fail_port_install. (#22735)
The supports expression was missing a block for UWP that was in portfile.cmake. Also updates ci.baseline.txt.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:21:05 -08:00
Billy O'Neal
efa7667c1f
[comms] Remove vcpkg_fail_port_install. (#22734)
Separated from the bulk PR because it adds to a feature.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:20:48 -08:00
Billy O'Neal
a84adb4e56
[chakracore] Remove vcpkg_fail_port_install. (#22733)
vcpkg.json and portfile.cmake disagreed.

```
vcpkg.json:     !osx & !uwp & (linux | !static)
portfile.cmake: !osx & !uwp & (!windows | !(static | staticcrt))
```

Trying to get portfile.cmake to agree:

```
!osx & !uwp & (!windows | !(static | staticcrt))             given
!osx & !uwp & (!windows | (!static & !staticcrt))            demorgan
```

Considering !osx is earlier, I'm assuming Linux and !Windows are equivalent here:

```
!osx & !uwp & (linux | (!static & !staticcrt))               (above)
```

I'm assuming that portfile.cmake just never considered staticrt and linux, so I'm adding that condition.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:20:27 -08:00
Billy O'Neal
33011049e0
[fastcgi] Remove vcpkg_fail_port_install. (#22732)
This used plain ALWAYS which is identical to `message(FATAL_ERROR`.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:19:47 -08:00
Billy O'Neal
ecbe0b18e5
[libproxy] Remove vcpkg_fail_port_install. (#22748)
There was no previous supports expression; I'm assuming given that the only block was for UWP that a dependency already did that.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:18:35 -08:00
Billy O'Neal
21fdbc58a6
[murmurhash] Remove vcpkg_fail_port_install. (#22749)
There was no supports expression before so there was ci.baseline.txt impact.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:18:23 -08:00
Billy O'Neal
e8bc75b57d
[nanovg] Remove vcpkg_fail_port_install. (#22750)
There was no supports expression so there was ci.baseline.txt impact.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:18:05 -08:00
Billy O'Neal
d13329216a
[nethost] Remove vcpkg_fail_port_install. (#22751)
There was no supports expression before so there is ci.baseline.txt impact.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:17:49 -08:00
Billy O'Neal
5e98739ce2
[ffmpeg] Use supports rather than vcpkg_fail_port_install. (#22723)
* [ffmpeg] Use supports rather than vcpkg_fail_port_install.

* Add missing supports to the ffmpeg feature as requested by @JackBoosY
2022-01-24 00:52:52 -08:00
Billy O'Neal
00358cc88d
[eathread] Remove vcpkg_fail_port_install. (#22742)
There was no supports expression, and there was ci.baseline.txt impact. The remaining ci.baseline.txt line item was x86-windows, so I tried building that. It results in:

```
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(201): error C3861: '_InterlockedExchange64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(202): error C3861: '_InterlockedExchangeAdd64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(203): error C3861: '_InterlockedExchangeAdd64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(204): error C3861: '_InterlockedExchangeAdd64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(205): error C3861: '_InterlockedExchangeAdd64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(206): error C3861: '_InterlockedOr64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(207): error C3861: '_InterlockedAnd64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(208): error C3861: '_InterlockedXor64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(209): error C3861: '_InterlockedExchange64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(216): error C3861: '_InterlockedExchange64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(217): error C3861: '_InterlockedExchangeAdd64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(218): error C3861: '_InterlockedExchangeAdd64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(219): error C3861: '_InterlockedExchangeAdd64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(220): error C3861: '_InterlockedExchangeAdd64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(221): error C3861: '_InterlockedOr64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(222): error C3861: '_InterlockedAnd64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(223): error C3861: '_InterlockedXor64_INLINE': identifier not found
C:\Dev\vcpkg2\buildtrees\eathread\src\f21f15bafd-3f7f4715f1.clean\include\eathread/internal/eathread_atomic_standalone_msvc.h(224): error C3861: '_InterlockedExchange64_INLINE': identifier not found
```

which is a build failure in the port, not a CI artifact, so I added that to "supports" as well.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 00:52:28 -08:00
Billy O'Neal
22eb872fdf
[physx] Remove vcpkg_fail_port_install. (#22759)
There was no supports expression before. There was no ci.baseline.txt impact.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 00:52:11 -08:00
Billy O'Neal
1d28e4dea4
[fltk] Remove vcpkg_fail_port_install. (#22744)
There was no supports expression before.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 00:14:29 -08:00
Billy O'Neal
f6d6af8ac9
[gasol] Remove vcpkg_fail_port_install. (#22746)
There was no supports expression before. There was ci.baseline.txt impact.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 00:14:10 -08:00
Billy O'Neal
d6f3c6f064
[geographiclib] Remove vcpkg_fail_port_install. (#22747)
Separated out into its own PR because it needed to add to a "supports" in a feature.

In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 00:13:59 -08:00
Billy O'Neal
485e459074
[bullet3] Remove vcpkg_fail_port_install. (#22729)
* [bullet3] Remove vcpkg_fail_port_install.

The supports expression and the portfile.cmake disagreed.

Supports: !((windows | linux) & (arm | uwp))
Portfile: osx | !(arm | arm64 | uwp)

If we demorgan the supports expression we get something closer to the portfile:
!(windows | linux) | !(arm | uwp)

If we take "!(windows | linux)" to mean that the author meant "osx", and assume arm64 implies arm, we end up with:

osx | !(arm | uwp)

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

* Also remove ci.baseline.txt entries now covered by vcpkg.json.
2022-01-23 22:43:39 -08:00
Billy O'Neal
b868bbe34b
[hunspell] Simplify supports and remove fail_port_install. (#22724)
```
!((arm | uwp) & windows)
!((arm & windows) | (uwp & windows))    distribute ands over ors
!((arm & windows) | uwp)                uwp implies windows
!(arm & windows) & !uwp                 demorgan
```
2022-01-23 19:28:27 -08:00
Billy O'Neal
7488b4c855
[levmar] Remove vcpkg_fail_port_install. (#22726)
I changed the supports to speak "positively" rather than "negatively" because it seems like that was the intent based on the message.
2022-01-23 19:28:15 -08:00
LilyWangLL
df40d1c476
[otl] Update hash (#22668)
* [otl] Update hash

* update version

* you need to change the filename at the same time

* fix license file

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-21 13:30:52 -08:00
itsmattkc
3b9d88d70a
[opencolorio] Update to 2.1.1 (#22659)
* [opencolorio] Update to v2.1.1

* Update version database
2022-01-21 13:30:00 -08:00
autoantwort
6fdcbc5e9d
[readline-unix] no absolute paths (#22421) 2022-01-21 11:08:38 -08:00
autoantwort
d9118cfc4a
[sdformat10] no absolute paths (#22340) 2022-01-21 11:05:54 -08:00
autoantwort
3def06a074
[sdformat9] no absolute paths (#22339) 2022-01-21 11:00:19 -08:00
Nemirtingas
5fcea86177
[boost-modular-build-helper] Boost crosscompile/fix windows suffix (#22636)
* Set suffix for Windows. (Like on MacOS and Linux).

* Update baseline.

Co-authored-by: Nemirtingas <Nemirtingas@noreply.com>
2022-01-20 15:59:00 -08:00
Mengna Li
89c4fdfbe4
[unrar/mdnsresponder] only windows (#22643)
* unrar only support windows

* update

* update

* mdnsresponder only support windows

* --amend

* add !uwp to supports

* add !arm64 to supports

* Update ports/mdnsresponder/vcpkg.json

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
2022-01-20 15:53:24 -08:00
Phoebe
43966c5116
[azure-kinect-sensor-sdk] Fix supports and build issue in feature 'tool' (#22647)
* [azure-kinect-sensor-sdk] Fix supports and build issue in feature 'tool'

* Update the version database
2022-01-20 15:53:02 -08:00
Haoran Ni
6e1449b30a
[nativefiledialog] Upgrade port to release 116 (#22645)
* port: (nativefiledialog) upgrade to release 116

* port: [nativefiledialog] modify version

* Update version database

* update nativefiledialog

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>
2022-01-20 15:48:57 -08:00
Jack·Boos·Yu
94917db0dd
[freeimage] Re-fix dependency libwebp (#22639)
* [freeimage] Re-fix dependency libwebp

* version
2022-01-20 15:40:19 -08:00
Ahmed Yarub Hani Al Nuaimi
04804d3795
[Kubernetes] Update to latest commit (#22638)
* Update Kubernetes Client Library version

* Update versions

Co-authored-by: Ahmed Yarub Hani Al Nuaimi <ahmed.alnuaimi@zwift.com>
2022-01-20 15:01:44 -08:00
Mathis Logemann
45ddaeea30
[mapnik] update port (#22635)
* update mapnik

* version

* remove port-version

* versions
2022-01-20 14:29:45 -08:00
Stefano Sinigardi
54907ae3ba
[curlpp] fix single config builds (#22617)
* [curlpp] fix for single config triplets

* fix references

* fix curlpp-config not present in windows static builds

* fix references
2022-01-20 14:29:06 -08:00
Jack·Boos·Yu
c9cffa2245
[dimcli] Add supports field instead of written in ci.baseline, disable testing, support osx (#22577)
* [dimcli] Add supports field instead of written in ci.baseline, disable testing

* version

* Fix build on Windows

* version

* fix build on osx

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-20 14:28:16 -08:00
Alvin
20f876042b
[co] Rename port co to cocoyaxi (#22442)
* rename port co to cocoyaxi

* update version

* update port version

* update sha

* rename co to cocoyaxi

* update sha

* cleanup portfile for cocoyaxi

* update sha

* add co

* update version for co

* fix version files

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-20 14:15:22 -08:00
Michael Heyman
495a0a04ce
[oatpp] update oatpp associated oatpp modules to v1.3.0 and [oatpp-ssdp] Add new port (#22419)
* [qtkeychain] Support to build with less dependencies (#21965)

* [qtkeychain] Support to build with less dependencies

* Update version database

* [trantor] Update to 1.5.4 (#21969)

* [trantor] Update to 1.5.4

* format

* [robin-hood-hashing] Update to 3.11.4 (#21971)

* [robin-hood-hashing] Update to 3.11.4

* [robin-hood-hashing] Update version files

Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>

* [libuuid] Fix wrong pkg-config installation (#21970) (#21972)

* [libuuid] Fix wrong pkg-config installation (#21970)

* update port version

* Update version database

* [rmlui] Update to version 4.3 (#21987)

* [json_dto] Update to v.0.3.0 (#22002)

* json-dto updated to v.0.3.0

* json-dto v.0.3.0 added to the mainline.

* [mmloader]Update mmloader to v1.0.1 (#22004)

* Update mmloader to v1.0.1

* Update mmloader version

- fixed compile errors of tools project

* Add version data

* Update ports/mmloader/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update version data

* update mmloader.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>

* [vk-bootstrap] New port (#21949)

* [vcpkg] Change osx to run every 48 hours rather than every 24. (#21954)

* Change osx to run every 48 hours rather than every 24.

* Back out more former-tensorflow-separation yaml.

* [kddockwidgets] new port (#21989)

* add kddockwidgets

* format manifest

* version stuff

* switch to vcpkg_cmake_*  and add patch

* version stuff

* add crosscompiliation code for arm windows

* version stuff

* remove prefer ninja

* version stuff

* [osgearth] Change blend2d dependency to use the blend2d target  (#21977)

* [osgearth] Change blend2d dependency to use the blend2d target and add missing dependency.

* Add quotes around 'dynamic', as requested by dg0yt

* Use CONFIG for blend2d, and combine with make-all-find-packages-required patch, as requested by @JackBoosY.

* [vcpkg baseline][tensorflow] setup python venv and update Linux VMs (#21912)

* Revert "incorporate changes from microsoft:master"

* Revert "Revert "incorporate changes from microsoft:master""

* preliminary approach to solve pip issue

* fix python venv

* fix macOS build command again

* bump version

* x-add-version

* Fix spelling of prerequisites.

* Add python3-venv

* Update linux pool.

Co-authored-by: Joachim Gehweiler <joachim@Joachims-iMac.local>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [libevent] no absolute paths (#21179)

* [Pcre2] Check if files exists before call vcpkg_replace_string. (#22003)

* Check if files exists before call vcpkg_replace_string.

* Update per comments.

Only guard debug.

* Update ports/pcre2/portfile.cmake

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* Bump port-version.

Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [lodepng] Fix cannot open include file "lodepng.h" (#22007)

* [lodepng] Fix cannot open include file "lodepng.h"

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [MyGUI] update to 3.4.1 (#22015)

* [MyGUI] update to 3.4.1

* update version

* [s2n] Update, add openssl dependency (#21484)

* Update to 1.3.0, add openssl dependency

* Add 'tests' feature

* Update versions

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* Libpq update and VCPKG_OSX_SYSROOT fix (#21583)

* [libpq] Update to 12.9

* [libpq] Use VCPKG_OSX_SYSROOT if set

otherwise configure set the default sysroot in addition, ignoring the
sysroot set by vcpkg_configure_cmake.

* [libpq] remove comment only chunks from patches

* [libpq] update version registry

* [qhttpengine] New port (#22009)

* [qhttpengine] New port

* Update version database

* Fix the format of portfile.cmake

* Fix the format of portfile.cmake

* update version

* Remove duplicate build_shared_libs setting.

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ xtensor-io ] Fix wrong hash (#22018)

* [xtensor-io] Fix wrong hash

* update version

* [vcpkg] Update VMs for December 2021 Patch Tuesday (#22013)

* Add Microsoft.VisualStudio.ComponentGroup.UWP.VC.BuildTools to VS as requested by https://github.com/microsoft/vcpkg/issues/19554

* Cherry pick python changes from https://github.com/microsoft/vcpkg/pull/21912

* Update linux pool.

* Update windows pool.

* [starlink] Veggiesaurus/starlink ast cminpack fix (#20559)

* add CMINPACK_NO_DLL flag back

* bump port version

* updated versions JSON

* quotation mark adjustment

* git-tree update

* adjusted c flags configuration

* hash update

* whitespace fix

* git-tree hash update

* updated to ast 9.2.5, added external-cminpack flag

* updated version hash

* removed old version entry

* removed $schema element from json

* updated port git-tree hash

* [libunifex] Update to 2021-12-07 (#21995)

* updated libunifex version

* remove comment

* run x-add-versions --all

* Update ports/libunifex/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* rerun x-add-version libunifex

* Update versions/l-/libunifex.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update libunifex to 12-07

* x-add-version

* libunifex port update

force cpp20 as cpp17 build doesn't work with msvc. added a compile fix for externConstexpr and removed warnings with /EHsc

* Update libunifex.json

version update

* Update fix-compile-error.patch

relax clang warnings

* Update libunifex.json

git x-add-version libunifex

* remove unused

* x-add-versions

* remove old version log

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [tensorflow] update to 2.7, including bazel latest 4.x update (#22022)

* Revert "incorporate changes from microsoft:master"

* Revert "Revert "incorporate changes from microsoft:master""

* update tensorflow to 2.7 and bazel to latest 4.x

* Update version database.

Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [hiredis] Fix static build (#22038)

* [hiredis] Fix static build

* Update version database

* [vcpkg baseline] Fix mpg123 build failed on Linux (#22028)

* [baseline] Fix mpg123 build failed on Linux

* update version

* Fix misspelled "module".

* Actually fix the misspelling this time Bill.

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [qt5-base] no _debug lib suffixes on macOS (#14225) (#21695)

* [qt5-base] no _debug lib suffixes on macOS (#14225)

* [qt5-base] patch qt5-base to remove _debug postfix on osx

* Apply suggestions from code review

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [qt5-base] create link to _debug.pc file from .pc file without _debug

* update version

* [qt5-base] create forward pkgconfig file

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [abseil] Upgrade to 2021.1102 (#22017)

* [abseil] Upgrade to 2021.1102

* revert portfile.cmake

* update version

* update portfile.cmake

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>

* [python3] Support arm (#21528)

* [python3] Support arm on non Windows

* Support arm on all platform, add host dependency

* version

* [pybind11] Add supports

* version

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>

* [openmvg] update to 2.0 (#22020)

* [openmvg] update to 2.0

* update version

* update patch

* update version

* [brynet] Update to 1.11.1 (#22021)

* brynet: upgrade to 1.11.1

* Update portfile.cmake

* Update brynet.json

* [graphicsmagick] update to version 1.3.37 (#22024)

* [graphicsmagick] update to version 1.3.37

* [graphicsmagick] manifest format

* [graphicsmagick] version database update

* [graphicsmagick] version-string -> version

* [graphicsmagick] version database update

* [meson] fix windows linker detection (#22032)

* fix meson linker detection .....

* bit of code cleanup in vcpkg_configure_meson

* forgot the version stuff

* put cmake back on path because meson is buggy as hell

* [libgpg-error] Release-only build support (#22036)

* [libgpg-error] Release-only build support

* Update version database

* Fix protfile spaces

* Update version database

* [elfutils] provide static or shared libraries correctly (#22055)

The logic for keeping the static or shared libraries according to
VCPKG_LIBRARY_LINKAGE was backwards, and it was providing shared
libraries when they should have been static, and vice versa.

* [gl3w] Use khrplatform.h from the egl-registry port (#22056)

* [gl3w] use khrplatform.h from the egl-registry port

The file was changed yesterday, invalidating the hash: KhronosGroup/EGL-Registry@57b4876de0.

* [gl3w] migrate to new functions from vcpkg-cmake{,-config}

* [gl3w] bump port version

* [caf] Update to 0.18.5 (#22046)

* [caf] Update to 0.18.5

* Remove setting of BUILD_SHARED_LIBS already handled by vcpkg_cmake_configure.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [gmsh] Add new port (#21896)

* add: gmsh

* add: versioning for gmsh.

* [gmsh] Re-factory code

* Fix install, remove some features due to lack required dependencies.

* version

* Do not support uwp officially

* version

* Update ports/gmsh/portfile.cmake

* Update versions/g-/gmsh.json

* Group the options

* version

* version

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [kf5] upgrade to 5.89 (#21890)

* [kf5*] Update to 5.89

* [kf5*] Update versions

* [kf5kio] update tag to rc2

* [kf5kio] update versions

* [kf5*] final 5.89 released

* [kf5*] update versions

* Clean up trailing whitespace and add quotes when naming .clang-format.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ompl] Add vcpkg_check_linkage (#21659)

* [ompl] Add vcpkg_check_linkage

* version

* version

* [pcl] Add feature apps, visualization, simulation, examples and add usage (#21788)

* [pcl] Add feature apps, visualization and examples

* version

* Add simulation

* Enable more apps, install examples, add usage

* format manifest file

* version

* set feature vtk as a alias for feature visualization

* version

* [activemq-cpp] Added missing libuuid dependency (#22059)

This is a mandatory dependency according to
https://github.com/apache/activemq-cpp/blob/master/README.txt

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++ (#22025)

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++

* Changed reference

* Update version database

* Fix hash

* Update version database

* Review changes and update lib version

* fixver

* Update version database

* Update version database 2

* Fix vcpkg deps

* Update version database

* [tensorflow-common] remove single quotes from vcpkg flags (#21869)

* [vcpkg_acquire_msys] Update bzip2 to 1.0.8-2

* [tensorflow-common] remove single quotes from vcpkg flags

They are escaped like '\'-mtune=native\''  which leads to a compiler error:
cc: error: unrecognized command line option '-mtune=native'
Set via: set(VCPKG_CXX_FLAGS "-mtune=native")

* [sdl2-mixer] Fix link mpg123 error (#22049)

* [sdl2-mixer] Fix link mpg123 error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [x64-windows-release] add a single config community triplet based on x64-windows and make it work on some ports (#15983)

* add a single config community triplet based on x64-windows

* add a failed port, otherwise mechanism does not support empty list

* add failures to baseline

* remove duplicate entry

* second round of failures added to baseline

* third round of regressions added to CI

* [ade] fix single-config builds

* [ade] update refs

* remove duplicate entries

* [unix2dos] restore eol in script file

* add even more ports now failing in singleConfig...

* [libjpeg-turbo] remove unnecessary check

* [libjpeg-turbo] fix references

* [baseline] restore check for ports that were added recently

* [libmodplug] enable single config triplets

* [tensorflow-common] enable single config triplets

* update baseline

* fix references

* remove wrong check for single config triplets

* fix references

* [ogre] fix single config builds

* [ogre] fix references

* [untested] force x64-windows-release as host triplet when testing x64-windows-release in CI

* fix

* [x264] fix for single config

* [x264] update refs

* [libffi] enable single config builds

* [libffi] update refs

* remove cli broken arguments

* [calceph] enable single-config builds

* [calceph] fix references

* [kf5config] enable single-config builds

* [kf5config] fix references

* [detours] enable single-config builds

* [detours] fix references

* [kf5*] enable single-config builds

* [kf5*] fix references

* fix

* kf5config fix reference

* trying again to force host triplet in CI

* [boost] fix for single-config builds

* [boost] update references

* fix

* [boost] update refs

* disable host triplet in ci because it's not necessary

* retrigger a build for ports previously failing

* remove host triplet in ci, not necessary anymore?

* make PR dry

* [tensorflow-common] bump version

* [tensorflow-common] fix references

* Fix version database for boost-modular-build-helper.

* fix references

* restore CRLF on some ports

* bump versions

* fix references

* bump port versions

* fix references

* boost-modular-build-helper: Reverted due to no changes.

detours, kf5config, kf5holidays, libbacktrace: Reverted due to only whitespace changes.
libffi: bumped port-version
libmodplug: reverted due to no functional changes
ogre, ogre-next: reverted due to incorrect case of "Debug" vs. "Release" already fixed in master.

And rebuilt version database.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [llvm] update to 13.0.0 (#20749)

* [llvm] update to 13.0.0

* add version

* [llvm] rework processing of the CMake packages

* update versions

* [llvm] return patch to fix config paths

* update version

* [llvm] allow to build Flang on Windows

* add version

* [llvm] temporary enable Flang by default for test

* update version

* [llvm] fix Flang installation

* update version

* [llvm] try to fix Flang build

* update version

* [llvm] remove Flang from defaults and use Perl path

* [halide] update to 13.0.0

* update versions

* [mesa] update to v21.2.5 and fix build with LLVM 13

* [llvm] use version

* update versions

* [opencv4] fix build with Halide 13

* update version

* update ci.baseline

* [halide] update usage file

* [llvm] update supports

* update versions

* [vcpkg-ci-llvm] add test port

* [vcpkg-ci-llvm] rework test port

* [vcpkg-ci-llvm] test more features

* [halide] update to v13.0.1

* update version

* [mesa] recover port version

* update versions

* [opencv4] update version

* update version

* Update opencv4.json

* [halide] update to v13.0.2 and fix usage

* update version

* Update ports/halide/portfile.cmake

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>

* update version

* enable LLVM ABI breaking checks to avoid Halide build fail

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>

* [quazip] no absolute paths (#21570)

* [qca] no absolute paths (#21571)

* [cutelyst2] no absolute paths (#21574)

* [vcpkg docs][ES] Sync with English readme (#21952) (#22103)

* fixed false friends for librería

* add vcpkg-tool repo

* sync with English Readme (#21952)

* fix non translated links

* [msbuild] Correct resulting triplet installation folder (#22079)

Co-authored-by: klaus triendl <klaus.triendl@firedaemon.com>

* [cppgraphqlgen] Update to latest 4.0.0 release (#22071)

* [cppgraphqlgen] Update to latest 4.0.0 release

* [cppgraphqlgen] vcpkg x-add-version cppgraphqlgen

* [cppgraphqlgen] Replace deprecated vcpkg functions

* [cppgraphqlgen] Re-run vcpkg x-add-version

* Flag the x64-linux CI pipeline as known failure

* [python3] Fix feature deprecated-win7-support. (#22090)

* [python3] Fix deprecated-win7-support patch.

* x-add-version

* Pass native install dir to nmake (#22095)

* [sqlcipher] bump version to 4.5.0 (#22089)

* [sqlcipher] bump version to 4.5.0

* fix hash

* [ncurses] Update (#22087)

* Update to 6.3

* Fix mingw

* Add ncurses usage

* Update versions

* [arrow] Update to 6.0.1 (#22084)

* Bump version to 6.0.1

* Update versions files

* [log4cxx] Update to 0.12.1 (#22065)

* [log4cxx] Update to 0.12.1

* Use version rather than version-string.

Co-authored-by: Hentschel, Marten <marten.hentschel@schoenhofer.de>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [teemo] Update to v2.4 (#22105)

* [cpp-ipc] Update 1.0.1

* [cpp-ipc] Update version and ci.baseline

* [cpp-ipc] Remove cpp-ipc from ci.baseline.txt

* [teemo] Update to v2.3

* [teemo] Run `vcpkg x-add-version --all`

* [teemo] Update vcpkg.json

* [teemo] Run vcpkg `x-add-version teemo --overwrite-version`

* Remove excess teemo.json

* [teemo] Update to v2.4

* [teemo] run ./vcpkg x-add-version --all

Co-authored-by: Jonliu1993 <13720414433@163.com>

* [rapidcheck] Update rapidcheck to 2021-10-10 (#22100)

* Updated rapidcheck port to 2021-10-10.

* Further updated rapidcheck for pull request.

* Apparently I `x-add-version`ed wrong the first time.

* [libunifex] no absolute paths (#22098)

* [ graphicsmagick ] Add Webp support feature (#22061)

* [graphicsmagick] add support to WebP format

* [graphicsmagick] port version update

* [Tracy Profiler] Add new port (#21826)

* Adding tracy port

* Formatting tracy port

* Tidying up the port

* Formatting again

* Making sure git-tree is correct

* Adding correct vcpkg dependencies

* Newline at file end again

* Update version database

* Making sure to mark tracy as not supporting x86 at all

* Updating version again

* Responding to feedback and double checking which builds will work

* Updating versions

* Tidying up some loose ends

* Updating port version again

* Removing port-version 1

* Removing tracy from ci baseline

* Removing unnecessary include copy

* Updating version

* Resolving feedback

* Updating version and formatting

* Version for the version god

* tweaking tracy supports

* Formatting and version

* Version

* Adding pthreads dependency to tracy for non-windows platforms

* Version

* [vcpkg baseline][ffmpeg] Fix dependency alsa (#22110)

* [vcpkg baseline][ffmpeg] Fix dependency alsa

* version

* fix option name

* version

* Apply suggestion

* version

* [libzen,libmediainfo] update and no absolute paths (#21171)

* [libdatachannel] update to 0.16.0 (#22048)

* update libdatachannel to 0.16.0

* update libdatachannel to 0.16.0

* delete port-version

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>

* [libsodium] Fix cross compile build (#22117)

* [sail] Update to 0.9.0-pre19 (#22118)

* [sail] Update to 0.9.0-pre19

* [sail] vcpkg x-add-version --all --overwrite-version

* [sail] Remove vcpkg_fail_port_install

* [sail] vcpkg x-add-version --all --overwrite-version

* [sentry-native] Update to 0.4.13 (#22119)

Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>

* add x64-linux-release community triplet (#22120)

* add x64-osx-release community triplet (#22134)

* Fix powershell 5 compatibility (#22123)

* [sqlite3] Fix .pc (#22121)

Android does not have -lpthread

* [rapidcheck ] Update to 2021-12-20. (#22125)

* Updated rapidcheck to 2021-12-20.

* Updated version files.

* update cpr version to 1.7.2 (#22133)

* [teemo] Update to v2.5 (#22136)

* [cpp-ipc] Update 1.0.1

* [cpp-ipc] Update version and ci.baseline

* [cpp-ipc] Remove cpp-ipc from ci.baseline.txt

* [teemo] Update to v2.3

* [teemo] Run `vcpkg x-add-version --all`

* [teemo] Update vcpkg.json

* [teemo] Run vcpkg `x-add-version teemo --overwrite-version`

* Remove excess teemo.json

* [teemo] Update to v2.4

* [teemo] run ./vcpkg x-add-version --all

* [teemo] Update to v2.5

* [teemo] Update versions/t-/teemo.json

Co-authored-by: Jonliu1993 <13720414433@163.com>

* [entt] Update to 3.9.0 (#22147)

* [entt] Update to 3.9.0

* Update version files

* Migrate to new functions

* Update version

* [mvfst ] : Add new port (#22111)

* [abseil] Upgrade to 2021.1102

* revert portfile.cmake

* update version

* update portfile.cmake

* update version

* [s2geometry] google s2 for for manipulating geometric shapes

* [libevent] no absolute paths (#21179)

* [Pcre2] Check if files exists before call vcpkg_replace_string. (#22003)

* Check if files exists before call vcpkg_replace_string.

* Update per comments.

Only guard debug.

* Update ports/pcre2/portfile.cmake

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* Bump port-version.

Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [lodepng] Fix cannot open include file "lodepng.h" (#22007)

* [lodepng] Fix cannot open include file "lodepng.h"

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [MyGUI] update to 3.4.1 (#22015)

* [MyGUI] update to 3.4.1

* update version

* [s2n] Update, add openssl dependency (#21484)

* Update to 1.3.0, add openssl dependency

* Add 'tests' feature

* Update versions

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* Libpq update and VCPKG_OSX_SYSROOT fix (#21583)

* [libpq] Update to 12.9

* [libpq] Use VCPKG_OSX_SYSROOT if set

otherwise configure set the default sysroot in addition, ignoring the
sysroot set by vcpkg_configure_cmake.

* [libpq] remove comment only chunks from patches

* [libpq] update version registry

* [qhttpengine] New port (#22009)

* [qhttpengine] New port

* Update version database

* Fix the format of portfile.cmake

* Fix the format of portfile.cmake

* update version

* Remove duplicate build_shared_libs setting.

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ xtensor-io ] Fix wrong hash (#22018)

* [xtensor-io] Fix wrong hash

* update version

* [vcpkg] Update VMs for December 2021 Patch Tuesday (#22013)

* Add Microsoft.VisualStudio.ComponentGroup.UWP.VC.BuildTools to VS as requested by https://github.com/microsoft/vcpkg/issues/19554

* Cherry pick python changes from https://github.com/microsoft/vcpkg/pull/21912

* Update linux pool.

* Update windows pool.

* [starlink] Veggiesaurus/starlink ast cminpack fix (#20559)

* add CMINPACK_NO_DLL flag back

* bump port version

* updated versions JSON

* quotation mark adjustment

* git-tree update

* adjusted c flags configuration

* hash update

* whitespace fix

* git-tree hash update

* updated to ast 9.2.5, added external-cminpack flag

* updated version hash

* removed old version entry

* removed $schema element from json

* updated port git-tree hash

* [libunifex] Update to 2021-12-07 (#21995)

* updated libunifex version

* remove comment

* run x-add-versions --all

* Update ports/libunifex/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* rerun x-add-version libunifex

* Update versions/l-/libunifex.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update libunifex to 12-07

* x-add-version

* libunifex port update

force cpp20 as cpp17 build doesn't work with msvc. added a compile fix for externConstexpr and removed warnings with /EHsc

* Update libunifex.json

version update

* Update fix-compile-error.patch

relax clang warnings

* Update libunifex.json

git x-add-version libunifex

* remove unused

* x-add-versions

* remove old version log

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [tensorflow] update to 2.7, including bazel latest 4.x update (#22022)

* Revert "incorporate changes from microsoft:master"

* Revert "Revert "incorporate changes from microsoft:master""

* update tensorflow to 2.7 and bazel to latest 4.x

* Update version database.

Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [hiredis] Fix static build (#22038)

* [hiredis] Fix static build

* Update version database

* [vcpkg baseline] Fix mpg123 build failed on Linux (#22028)

* [baseline] Fix mpg123 build failed on Linux

* update version

* Fix misspelled "module".

* Actually fix the misspelling this time Bill.

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [qt5-base] no _debug lib suffixes on macOS (#14225) (#21695)

* [qt5-base] no _debug lib suffixes on macOS (#14225)

* [qt5-base] patch qt5-base to remove _debug postfix on osx

* Apply suggestions from code review

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [qt5-base] create link to _debug.pc file from .pc file without _debug

* update version

* [qt5-base] create forward pkgconfig file

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [python3] Support arm (#21528)

* [python3] Support arm on non Windows

* Support arm on all platform, add host dependency

* version

* [pybind11] Add supports

* version

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>

* [openmvg] update to 2.0 (#22020)

* [openmvg] update to 2.0

* update version

* update patch

* update version

* [brynet] Update to 1.11.1 (#22021)

* brynet: upgrade to 1.11.1

* Update portfile.cmake

* Update brynet.json

* [graphicsmagick] update to version 1.3.37 (#22024)

* [graphicsmagick] update to version 1.3.37

* [graphicsmagick] manifest format

* [graphicsmagick] version database update

* [graphicsmagick] version-string -> version

* [graphicsmagick] version database update

* [meson] fix windows linker detection (#22032)

* fix meson linker detection .....

* bit of code cleanup in vcpkg_configure_meson

* forgot the version stuff

* put cmake back on path because meson is buggy as hell

* [libgpg-error] Release-only build support (#22036)

* [libgpg-error] Release-only build support

* Update version database

* Fix protfile spaces

* Update version database

* [elfutils] provide static or shared libraries correctly (#22055)

The logic for keeping the static or shared libraries according to
VCPKG_LIBRARY_LINKAGE was backwards, and it was providing shared
libraries when they should have been static, and vice versa.

* [gl3w] Use khrplatform.h from the egl-registry port (#22056)

* [gl3w] use khrplatform.h from the egl-registry port

The file was changed yesterday, invalidating the hash: KhronosGroup/EGL-Registry@57b4876de0.

* [gl3w] migrate to new functions from vcpkg-cmake{,-config}

* [gl3w] bump port version

* [caf] Update to 0.18.5 (#22046)

* [caf] Update to 0.18.5

* Remove setting of BUILD_SHARED_LIBS already handled by vcpkg_cmake_configure.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [gmsh] Add new port (#21896)

* add: gmsh

* add: versioning for gmsh.

* [gmsh] Re-factory code

* Fix install, remove some features due to lack required dependencies.

* version

* Do not support uwp officially

* version

* Update ports/gmsh/portfile.cmake

* Update versions/g-/gmsh.json

* Group the options

* version

* version

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [kf5] upgrade to 5.89 (#21890)

* [kf5*] Update to 5.89

* [kf5*] Update versions

* [kf5kio] update tag to rc2

* [kf5kio] update versions

* [kf5*] final 5.89 released

* [kf5*] update versions

* Clean up trailing whitespace and add quotes when naming .clang-format.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ompl] Add vcpkg_check_linkage (#21659)

* [ompl] Add vcpkg_check_linkage

* version

* version

* [pcl] Add feature apps, visualization, simulation, examples and add usage (#21788)

* [pcl] Add feature apps, visualization and examples

* version

* Add simulation

* Enable more apps, install examples, add usage

* format manifest file

* version

* set feature vtk as a alias for feature visualization

* version

* [activemq-cpp] Added missing libuuid dependency (#22059)

This is a mandatory dependency according to
https://github.com/apache/activemq-cpp/blob/master/README.txt

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++ (#22025)

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++

* Changed reference

* Update version database

* Fix hash

* Update version database

* Review changes and update lib version

* fixver

* Update version database

* Update version database 2

* Fix vcpkg deps

* Update version database

* [tensorflow-common] remove single quotes from vcpkg flags (#21869)

* [vcpkg_acquire_msys] Update bzip2 to 1.0.8-2

* [tensorflow-common] remove single quotes from vcpkg flags

They are escaped like '\'-mtune=native\''  which leads to a compiler error:
cc: error: unrecognized command line option '-mtune=native'
Set via: set(VCPKG_CXX_FLAGS "-mtune=native")

* [sdl2-mixer] Fix link mpg123 error (#22049)

* [sdl2-mixer] Fix link mpg123 error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [mvfst]: New port: a client and server implementation of IETF QUIC protocol in C++ by Facebook

* [mvfst]: New port: a client and server implementation of IETF QUIC protocol in C++ by Facebook

* [mvfst] new port

* [mvfst] New port

* Update ports/mvfst/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* [mvfst] new port

* [mvfst]: new port

* [mvfst] new port

* [mvfst] new port

* [mvfst]: new port

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
Co-authored-by: Lars Glud <larshg@gmail.com>
Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
Co-authored-by: Kai Pastor <dg0yt@darc.de>
Co-authored-by: Daniel Schürmann <daschuer@mixxx.org>
Co-authored-by: Vitaly <v31337@gmail.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Angus Comrie <accomrie@gmail.com>
Co-authored-by: Li Zeyang <a.banknote@gmail.com>
Co-authored-by: Joachim Gehweiler <44170764+jgehw@users.noreply.github.com>
Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: IronsDu <irons.du@gmail.com>
Co-authored-by: Josue Andrade Gomes <josuegomes@gmail.com>
Co-authored-by: Clayton Wheeler <cswheeler@gmail.com>
Co-authored-by: Christian Fillion <cfillion@users.noreply.github.com>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: X.ZhaoMa <ma@arch.ethz.ch>
Co-authored-by: Dawid Wróbel <me@dawidwrobel.com>

* [pdcurses] Revise portfile (#22092)

* Use vcpkg_build_nmake

* Update versions

* Use INSTALLDIR

* Update versions

* [imgui] Update to 1.86 (#22161)

* [imgui] Update to 1.86

* [imgui] Update version files

Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>

* [drogon] Update to 1.7.4 (#22016)

* [drogon] Update to 1.7.4

* add fs.patch

* fix redis feature

Co-authored-by: antao <antao@heart-forever.com>

* [activemq-cpp] Add platform for dependency libuuid (#22151)

* [activemq-cpp] Add platform for dependency libuuid

* version

* [mlpack] no absolute paths (#22160)

* [highfive] Fix usage (#22150)

* [highfive] Fix usage

* version

* Re-fix

* version

* [libmysql] Fix could not find package config files (#22062)

* [libmysql] Fix could not find package config files

* update version

* [poco] Fix install PocoDataMySQL.lib

* update version

* [poco] Update portfile.cmake

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [Breakpad] fix cmake include install (#22130)

* [abseil] Upgrade to 2021.1102

* revert portfile.cmake

* update version

* update portfile.cmake

* update version

* [s2geometry] google s2 for for manipulating geometric shapes

* [libevent] no absolute paths (#21179)

* [Pcre2] Check if files exists before call vcpkg_replace_string. (#22003)

* Check if files exists before call vcpkg_replace_string.

* Update per comments.

Only guard debug.

* Update ports/pcre2/portfile.cmake

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* Bump port-version.

Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [lodepng] Fix cannot open include file "lodepng.h" (#22007)

* [lodepng] Fix cannot open include file "lodepng.h"

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [MyGUI] update to 3.4.1 (#22015)

* [MyGUI] update to 3.4.1

* update version

* [s2n] Update, add openssl dependency (#21484)

* Update to 1.3.0, add openssl dependency

* Add 'tests' feature

* Update versions

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* Libpq update and VCPKG_OSX_SYSROOT fix (#21583)

* [libpq] Update to 12.9

* [libpq] Use VCPKG_OSX_SYSROOT if set

otherwise configure set the default sysroot in addition, ignoring the
sysroot set by vcpkg_configure_cmake.

* [libpq] remove comment only chunks from patches

* [libpq] update version registry

* [qhttpengine] New port (#22009)

* [qhttpengine] New port

* Update version database

* Fix the format of portfile.cmake

* Fix the format of portfile.cmake

* update version

* Remove duplicate build_shared_libs setting.

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ xtensor-io ] Fix wrong hash (#22018)

* [xtensor-io] Fix wrong hash

* update version

* [vcpkg] Update VMs for December 2021 Patch Tuesday (#22013)

* Add Microsoft.VisualStudio.ComponentGroup.UWP.VC.BuildTools to VS as requested by https://github.com/microsoft/vcpkg/issues/19554

* Cherry pick python changes from https://github.com/microsoft/vcpkg/pull/21912

* Update linux pool.

* Update windows pool.

* [starlink] Veggiesaurus/starlink ast cminpack fix (#20559)

* add CMINPACK_NO_DLL flag back

* bump port version

* updated versions JSON

* quotation mark adjustment

* git-tree update

* adjusted c flags configuration

* hash update

* whitespace fix

* git-tree hash update

* updated to ast 9.2.5, added external-cminpack flag

* updated version hash

* removed old version entry

* removed $schema element from json

* updated port git-tree hash

* [libunifex] Update to 2021-12-07 (#21995)

* updated libunifex version

* remove comment

* run x-add-versions --all

* Update ports/libunifex/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* rerun x-add-version libunifex

* Update versions/l-/libunifex.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update libunifex to 12-07

* x-add-version

* libunifex port update

force cpp20 as cpp17 build doesn't work with msvc. added a compile fix for externConstexpr and removed warnings with /EHsc

* Update libunifex.json

version update

* Update fix-compile-error.patch

relax clang warnings

* Update libunifex.json

git x-add-version libunifex

* remove unused

* x-add-versions

* remove old version log

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [tensorflow] update to 2.7, including bazel latest 4.x update (#22022)

* Revert "incorporate changes from microsoft:master"

* Revert "Revert "incorporate changes from microsoft:master""

* update tensorflow to 2.7 and bazel to latest 4.x

* Update version database.

Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [hiredis] Fix static build (#22038)

* [hiredis] Fix static build

* Update version database

* [vcpkg baseline] Fix mpg123 build failed on Linux (#22028)

* [baseline] Fix mpg123 build failed on Linux

* update version

* Fix misspelled "module".

* Actually fix the misspelling this time Bill.

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [qt5-base] no _debug lib suffixes on macOS (#14225) (#21695)

* [qt5-base] no _debug lib suffixes on macOS (#14225)

* [qt5-base] patch qt5-base to remove _debug postfix on osx

* Apply suggestions from code review

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [qt5-base] create link to _debug.pc file from .pc file without _debug

* update version

* [qt5-base] create forward pkgconfig file

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [python3] Support arm (#21528)

* [python3] Support arm on non Windows

* Support arm on all platform, add host dependency

* version

* [pybind11] Add supports

* version

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>

* [openmvg] update to 2.0 (#22020)

* [openmvg] update to 2.0

* update version

* update patch

* update version

* [brynet] Update to 1.11.1 (#22021)

* brynet: upgrade to 1.11.1

* Update portfile.cmake

* Update brynet.json

* [graphicsmagick] update to version 1.3.37 (#22024)

* [graphicsmagick] update to version 1.3.37

* [graphicsmagick] manifest format

* [graphicsmagick] version database update

* [graphicsmagick] version-string -> version

* [graphicsmagick] version database update

* [meson] fix windows linker detection (#22032)

* fix meson linker detection .....

* bit of code cleanup in vcpkg_configure_meson

* forgot the version stuff

* put cmake back on path because meson is buggy as hell

* [libgpg-error] Release-only build support (#22036)

* [libgpg-error] Release-only build support

* Update version database

* Fix protfile spaces

* Update version database

* [elfutils] provide static or shared libraries correctly (#22055)

The logic for keeping the static or shared libraries according to
VCPKG_LIBRARY_LINKAGE was backwards, and it was providing shared
libraries when they should have been static, and vice versa.

* [gl3w] Use khrplatform.h from the egl-registry port (#22056)

* [gl3w] use khrplatform.h from the egl-registry port

The file was changed yesterday, invalidating the hash: KhronosGroup/EGL-Registry@57b4876de0.

* [gl3w] migrate to new functions from vcpkg-cmake{,-config}

* [gl3w] bump port version

* [caf] Update to 0.18.5 (#22046)

* [caf] Update to 0.18.5

* Remove setting of BUILD_SHARED_LIBS already handled by vcpkg_cmake_configure.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [gmsh] Add new port (#21896)

* add: gmsh

* add: versioning for gmsh.

* [gmsh] Re-factory code

* Fix install, remove some features due to lack required dependencies.

* version

* Do not support uwp officially

* version

* Update ports/gmsh/portfile.cmake

* Update versions/g-/gmsh.json

* Group the options

* version

* version

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [kf5] upgrade to 5.89 (#21890)

* [kf5*] Update to 5.89

* [kf5*] Update versions

* [kf5kio] update tag to rc2

* [kf5kio] update versions

* [kf5*] final 5.89 released

* [kf5*] update versions

* Clean up trailing whitespace and add quotes when naming .clang-format.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ompl] Add vcpkg_check_linkage (#21659)

* [ompl] Add vcpkg_check_linkage

* version

* version

* [pcl] Add feature apps, visualization, simulation, examples and add usage (#21788)

* [pcl] Add feature apps, visualization and examples

* version

* Add simulation

* Enable more apps, install examples, add usage

* format manifest file

* version

* set feature vtk as a alias for feature visualization

* version

* [activemq-cpp] Added missing libuuid dependency (#22059)

This is a mandatory dependency according to
https://github.com/apache/activemq-cpp/blob/master/README.txt

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++ (#22025)

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++

* Changed reference

* Update version database

* Fix hash

* Update version database

* Review changes and update lib version

* fixver

* Update version database

* Update version database 2

* Fix vcpkg deps

* Update version database

* [tensorflow-common] remove single quotes from vcpkg flags (#21869)

* [vcpkg_acquire_msys] Update bzip2 to 1.0.8-2

* [tensorflow-common] remove single quotes from vcpkg flags

They are escaped like '\'-mtune=native\''  which leads to a compiler error:
cc: error: unrecognized command line option '-mtune=native'
Set via: set(VCPKG_CXX_FLAGS "-mtune=native")

* [sdl2-mixer] Fix link mpg123 error (#22049)

* [sdl2-mixer] Fix link mpg123 error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [breakpad] fix include cmake install

* [breakpad] fix cmake include

* [breakpad] fix cmake include

* [breakpad] fix cmake include install

* [breakpad] fix cmake include install

* [breakpad]: fix cmake include install

* [breakpad]: fix cmake install include

* Function modernization

* update version

* update vcpkg.json

* update version

* update portfile.cmake

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
Co-authored-by: Lars Glud <larshg@gmail.com>
Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
Co-authored-by: Kai Pastor <dg0yt@darc.de>
Co-authored-by: Daniel Schürmann <daschuer@mixxx.org>
Co-authored-by: Vitaly <v31337@gmail.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Angus Comrie <accomrie@gmail.com>
Co-authored-by: Li Zeyang <a.banknote@gmail.com>
Co-authored-by: Joachim Gehweiler <44170764+jgehw@users.noreply.github.com>
Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: IronsDu <irons.du@gmail.com>
Co-authored-by: Josue Andrade Gomes <josuegomes@gmail.com>
Co-authored-by: Clayton Wheeler <cswheeler@gmail.com>
Co-authored-by: Christian Fillion <cfillion@users.noreply.github.com>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: X.ZhaoMa <ma@arch.ethz.ch>
Co-authored-by: Dawid Wróbel <me@dawidwrobel.com>

* [giflib] use a vcpkg wrapper for cmake to circumvent bad cmake integrated module (#22141)

* [giflib] create wrapper to circumvent cmake module problems with giflib v5

* [giflib] fix references

* [giflib] remove unnecessary REQUIRED tags

* [giflib] fix references

* reduce wrapper to the minimum

* fix references

* [vcpkg baseline][uchardet] Fix download error (#22218)

* [vcpkg baseline][uchardet] Fix build error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [vcpkg baseline][many ports] Fix build failures (#22180)

* [vcpkg baseline][omplapp] Fix dependencies, add features

* version

* [sdformat9] Add the required dependency urdfdom-headers

* [ignition-math6] Fix build error

* version

* [botan] Fix the pkgconfig again

* version

* [vcpkg baseline][llvm] Fix feature tools (#22230)

* [vcpkg baseline][llvm] Fix feature tools

* Trigger CI test

* version

* Trigger CI

* Clean up

* [armadillo] no absolute paths (#21663)

* [libpmemobj-cpp] no absolute paths (#21703)

* [vcpkg_fail_port_install] add a warning about extra args when ALWAYS is passed (#20314)

* [vcpkg_fail_port_install] add a warning about extra args when ALWAYS is passed

* Address the review suggestions

Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>

* [doc] Update Chinese readme (#22166)

* [doc] Update Chinese readme

* Highlight the English Language package

* Remove depreciate part

* Apply suggestions

* [pango][pangomm] update to 1.50.3 and 1.50.0 (#22176)

* [pango] Update pango to 1.50.3 (microsoft#22174)

* [pangomm] Update pangomm to 1.50.0 (microsoft#22175)

Co-authored-by: Schaich <alonso.schaich@sodgeit.de>

* [boolinq] update to 3.0.3 (#22177)

* [boolinq] update to 3.0.3

* update version

* [x264] builds on arm (#22182)

* [openvdb] update to 8.2.0 (#22184)

* update openvdb to 8.2.0

* merge fix-case-sensitive.patch to 0003-fix-cmake.patch

* update

* Add double quotes for the path

* [Gtkmm ] Update to 4.4.0 (#22187)

* Update Gtkmm to 4.4.0

Solves #22185

* Fixed Gtkmm Version Json

* [Gtkmm ] Update to 4.4.0

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>

* [live555] Fix install head failed (#22190)

* [live555] Fix install head failed

* update version

* update live555 to the latest version

* update version

* [wil] update (#22192)

* [wil] update

* [wil] update versions

* [rtaudio] update to v5.2.0 (#22205)

* update rtaudio to v5.2.0

* run x-add-versions

* [mlpack] Add dependency boost-format to feature tools (#22210)

* [mlpack] Add dependency boost-format to feature tools

* version

* [mathgl] Update to v2.5 (#22081)

* [mathgl] Update to v2.5 and apply fixes

* Update CI baseline

* [readline] readline port builds for MacOS (#22000)

* [readline] New readline-osx port for MacOS

* Bump port-version of readline and fix version database.

* Remove unnecessary -D_CRT_SECURE_NO_WARNINGS.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [plplot] Disable all language bindings but C++ (#22224)

* Disable all language bindings but C++

* Update versions

* [eve] add eve library (#22179)

* add eve library

* add eve library

* add eve library

* Reindent portfile.cmake, use version-date, and rebuild version database.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [s2geometry] Add new port  (#22107)

* [abseil] Upgrade to 2021.1102

* revert portfile.cmake

* update version

* update portfile.cmake

* update version

* [s2geometry] google s2 for for manipulating geometric shapes

* [libevent] no absolute paths (#21179)

* [Pcre2] Check if files exists before call vcpkg_replace_string. (#22003)

* Check if files exists before call vcpkg_replace_string.

* Update per comments.

Only guard debug.

* Update ports/pcre2/portfile.cmake

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* Bump port-version.

Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [lodepng] Fix cannot open include file "lodepng.h" (#22007)

* [lodepng] Fix cannot open include file "lodepng.h"

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [MyGUI] update to 3.4.1 (#22015)

* [MyGUI] update to 3.4.1

* update version

* [s2n] Update, add openssl dependency (#21484)

* Update to 1.3.0, add openssl dependency

* Add 'tests' feature

* Update versions

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* Libpq update and VCPKG_OSX_SYSROOT fix (#21583)

* [libpq] Update to 12.9

* [libpq] Use VCPKG_OSX_SYSROOT if set

otherwise configure set the default sysroot in addition, ignoring the
sysroot set by vcpkg_configure_cmake.

* [libpq] remove comment only chunks from patches

* [libpq] update version registry

* [qhttpengine] New port (#22009)

* [qhttpengine] New port

* Update version database

* Fix the format of portfile.cmake

* Fix the format of portfile.cmake

* update version

* Remove duplicate build_shared_libs setting.

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ xtensor-io ] Fix wrong hash (#22018)

* [xtensor-io] Fix wrong hash

* update version

* [vcpkg] Update VMs for December 2021 Patch Tuesday (#22013)

* Add Microsoft.VisualStudio.ComponentGroup.UWP.VC.BuildTools to VS as requested by https://github.com/microsoft/vcpkg/issues/19554

* Cherry pick python changes from https://github.com/microsoft/vcpkg/pull/21912

* Update linux pool.

* Update windows pool.

* [starlink] Veggiesaurus/starlink ast cminpack fix (#20559)

* add CMINPACK_NO_DLL flag back

* bump port version

* updated versions JSON

* quotation mark adjustment

* git-tree update

* adjusted c flags configuration

* hash update

* whitespace fix

* git-tree hash update

* updated to ast 9.2.5, added external-cminpack flag

* updated version hash

* removed old version entry

* removed $schema element from json

* updated port git-tree hash

* [libunifex] Update to 2021-12-07 (#21995)

* updated libunifex version

* remove comment

* run x-add-versions --all

* Update ports/libunifex/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* rerun x-add-version libunifex

* Update versions/l-/libunifex.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update libunifex to 12-07

* x-add-version

* libunifex port update

force cpp20 as cpp17 build doesn't work with msvc. added a compile fix for externConstexpr and removed warnings with /EHsc

* Update libunifex.json

version update

* Update fix-compile-error.patch

relax clang warnings

* Update libunifex.json

git x-add-version libunifex

* remove unused

* x-add-versions

* remove old version log

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [tensorflow] update to 2.7, including bazel latest 4.x update (#22022)

* Revert "incorporate changes from microsoft:master"

* Revert "Revert "incorporate changes from microsoft:master""

* update tensorflow to 2.7 and bazel to latest 4.x

* Update version database.

Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [hiredis] Fix static build (#22038)

* [hiredis] Fix static build

* Update version database

* [vcpkg baseline] Fix mpg123 build failed on Linux (#22028)

* [baseline] Fix mpg123 build failed on Linux

* update version

* Fix misspelled "module".

* Actually fix the misspelling this time Bill.

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [qt5-base] no _debug lib suffixes on macOS (#14225) (#21695)

* [qt5-base] no _debug lib suffixes on macOS (#14225)

* [qt5-base] patch qt5-base to remove _debug postfix on osx

* Apply suggestions from code review

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [qt5-base] create link to _debug.pc file from .pc file without _debug

* update version

* [qt5-base] create forward pkgconfig file

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [python3] Support arm (#21528)

* [python3] Support arm on non Windows

* Support arm on all platform, add host dependency

* version

* [pybind11] Add supports

* version

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>

* [openmvg] update to 2.0 (#22020)

* [openmvg] update to 2.0

* update version

* update patch

* update version

* [brynet] Update to 1.11.1 (#22021)

* brynet: upgrade to 1.11.1

* Update portfile.cmake

* Update brynet.json

* [graphicsmagick] update to version 1.3.37 (#22024)

* [graphicsmagick] update to version 1.3.37

* [graphicsmagick] manifest format

* [graphicsmagick] version database update

* [graphicsmagick] version-string -> version

* [graphicsmagick] version database update

* [meson] fix windows linker detection (#22032)

* fix meson linker detection .....

* bit of code cleanup in vcpkg_configure_meson

* forgot the version stuff

* put cmake back on path because meson is buggy as hell

* [libgpg-error] Release-only build support (#22036)

* [libgpg-error] Release-only build support

* Update version database

* Fix protfile spaces

* Update version database

* [elfutils] provide static or shared libraries correctly (#22055)

The logic for keeping the static or shared libraries according to
VCPKG_LIBRARY_LINKAGE was backwards, and it was providing shared
libraries when they should have been static, and vice versa.

* [gl3w] Use khrplatform.h from the egl-registry port (#22056)

* [gl3w] use khrplatform.h from the egl-registry port

The file was changed yesterday, invalidating the hash: KhronosGroup/EGL-Registry@57b4876de0.

* [gl3w] migrate to new functions from vcpkg-cmake{,-config}

* [gl3w] bump port version

* [caf] Update to 0.18.5 (#22046)

* [caf] Update to 0.18.5

* Remove setting of BUILD_SHARED_LIBS already handled by vcpkg_cmake_configure.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [gmsh] Add new port (#21896)

* add: gmsh

* add: versioning for gmsh.

* [gmsh] Re-factory code

* Fix install, remove some features due to lack required dependencies.

* version

* Do not support uwp officially

* version

* Update ports/gmsh/portfile.cmake

* Update versions/g-/gmsh.json

* Group the options

* version

* version

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [kf5] upgrade to 5.89 (#21890)

* [kf5*] Update to 5.89

* [kf5*] Update versions

* [kf5kio] update tag to rc2

* [kf5kio] update versions

* [kf5*] final 5.89 released

* [kf5*] update versions

* Clean up trailing whitespace and add quotes when naming .clang-format.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ompl] Add vcpkg_check_linkage (#21659)

* [ompl] Add vcpkg_check_linkage

* version

* version

* [pcl] Add feature apps, visualization, simulation, examples and add usage (#21788)

* [pcl] Add feature apps, visualization and examples

* version

* Add simulation

* Enable more apps, install examples, add usage

* format manifest file

* version

* set feature vtk as a alias for feature visualization

* version

* [activemq-cpp] Added missing libuuid dependency (#22059)

This is a mandatory dependency according to
https://github.com/apache/activemq-cpp/blob/master/README.txt

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++ (#22025)

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++

* Changed reference

* Update version database

* Fix hash

* Update version database

* Review changes and update lib version

* fixver

* Update version database

* Update version database 2

* Fix vcpkg deps

* Update version database

* [tensorflow-common] remove single quotes from vcpkg flags (#21869)

* [vcpkg_acquire_msys] Update bzip2 to 1.0.8-2

* [tensorflow-common] remove single quotes from vcpkg flags

They are escaped like '\'-mtune=native\''  which leads to a compiler error:
cc: error: unrecognized command line option '-mtune=native'
Set via: set(VCPKG_CXX_FLAGS "-mtune=native")

* [sdl2-mixer] Fix link mpg123 error (#22049)

* [sdl2-mixer] Fix link mpg123 error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [s2geometry]: new port

* [s2geometry]: new port

* [s2geometry]: new port

* [s2geometry]: new port

* [s2geometry] new port

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
Co-authored-by: Lars Glud <larshg@gmail.com>
Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
Co-authored-by: Kai Pastor <dg0yt@darc.de>
Co-authored-by: Daniel Schürmann <daschuer@mixxx.org>
Co-authored-by: Vitaly <v31337@gmail.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Angus Comrie <accomrie@gmail.com>
Co-authored-by: Li Zeyang <a.banknote@gmail.com>
Co-authored-by: Joachim Gehweiler <44170764+jgehw@users.noreply.github.com>
Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: IronsDu <irons.du@gmail.com>
Co-authored-by: Josue Andrade Gomes <josuegomes@gmail.com>
Co-authored-by: Clayton Wheeler <cswheeler@gmail.com>
Co-authored-by: Christian Fillion <cfillion@users.noreply.github.com>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: X.ZhaoMa <ma@arch.ethz.ch>
Co-authored-by: Dawid Wróbel <me@dawidwrobel.com>

* [libjpeg-turbo] Upgrade to 2.1.2 (#22156)

* Upgrade libjpeg-turbo to 2.1.2

* Update version files

* Update to latest vcpkg functions

* Format/version

* Fix

* Update ports/libjpeg-turbo/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* CR

* Fix version

* Update patch

* Fix

* Version

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* [libtess2] add libtess2 port (#22225)

* [libtess2] add port

* [libtess2] add version

* [libtess2] forgot project name

* [libtess2] case sensitive in paths

* [libtess2] update version with last sha

* Modernize with target_sources, add missing quotes, and add vcpkg_check_linkage since the port only makes a static output.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [fluidsynth] Update to 2.2.4 (#20978)

* [fluidsynth] Update to 2.2.3

* Update patch

* EOL

* Change tool as a new feature

* version

* Remove code about CMAKE_EXECUTABLE_SUFFIX to fix linux build

* version

* update to 2.2.4, cleanup baseline, add supports keyword

* version

* Fix osx build

* version

* restore FEATURE_OPTIONS

* version

* Apply suggestions

* version

* Restore add_to_path in host triplet

* version

* Preserve log files for the build of make_tables.

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [openimageio] do not install deprecated FindOpenImageIO (#21162)

* [openimageio] do not install deprecated FindOpenImageIO

OpenImageIO provides cmake Config/Target files, so there is no more need for a FindOpenImageIO.cmake.
This hides openimageio modules like OpenImageIO_Util.

* Remove wrapper

Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>

* [libtiff] Switch to vcpkg_from_gitlab function  (#22181)

Gitlab tends to be more reliable for some customers.

Co-authored-by: Thomas Willecomme <thomas.willecomme@teledyne.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* fix(ports): use lib/cmake/mimalloc config path in mimalloc port file (#22238)

* fix(ports): use lib/cmake/mimalloc config path in vcpkg_cmake_config_fixup in mimalloc portfile.cmake

* chore(versions): update mimalloc port version

* chore(versions): update versions database

* [fluidsynth] no absolute paths (#21715)

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [libwebm] Install the public header files (#22189)

* [libwebm] Remove port's internal headers from installed folder

* [libwebm] Install public headers

* [libwebm] Resetting the file structure of libwebm/include and adding additional headers

Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>

* [vcpkg] Fix vcpkg_cmake_config_fixup.cmake (#22236)

* Fix vcpkg_cmake_config_fixup.cmake

The PR #22235 exposed a bug in `vcpkg_cmake_config_fixup.cmake`, that
incorrectly preprends a string without a end-of-line. That creates
CMake syntax errors, like this one:

```
get_filename_component(VCPKG_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_DIR}/../../" ABSOLUTE)set(CGAL_ROOT ${VCPKG_IMPORT_PREFIX})
```

The fix is simple: add a `\n` at the end of the prepended string.

* format manifest

* Update versions

* [ffmpeg] Update dependency support for recent changes. (#21980)

* [ffmpeg] Update dependency support for recent changes.

Updates for changes in commits:
7bb175e [aom/libavif] Add support for ARM and UWP
a8204d9 [fribidi] Support new platform

* update

* [ffmpeg] update x264 supports.

* Fix version database.

* update

* Update all platform checks and error messages

* Update vcpkg.json

* Update ffmpeg.json

* fixup osx.

* another osx fixup

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [vcpkg-cmake] Fix parallel cmake (#22124)

* New version

* Refactor build dir setup

* Start parallel cmake from build directory

* Update versions

* [skip actions] CI

* [teemo] Fix string replace error. (#22244)

* [cpp-ipc] Update 1.0.1

* [cpp-ipc] Update version and ci.baseline

* [cpp-ipc] Remove cpp-ipc from ci.baseline.txt

* [teemo] Update to v2.3

* [teemo] Run `vcpkg x-add-version --all`

* [teemo] Update vcpkg.json

* [teemo] Run vcpkg `x-add-version teemo --overwrite-version`

* Remove excess teemo.json

* [teemo] Update to v2.4

* [teemo] run ./vcpkg x-add-version --all

* [teemo] Update to v2.5

* [teemo] Update versions/t-/teemo.json

* [teemo] Fix string replace error.

* [teemo] Update port version.

* [teemo] Use port-version instead of appending #2.

* [teemo] Run 'vcpkg x-add-version --all'

* [teemo] Add maintainers.

* Update versions/t-/teemo.json

* Update versions/t-/teemo.json

* Update ports/teemo/vcpkg.json

* [teemo] Format vcpkg.json

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [rocksdb] Update to 6.27.3 (#22246)

* [rocksdb] Update to 6.27.3.

* delete PREFER_NINJA

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>

* [libgcrypt] Fix release only build (#22250)

* [libgcrypt] Fix release only build

* Update version database

* Removed deprecated call

* Update version database

* [sqlite-orm] Update to 1.7.1 (#21996) (#22253)

Co-authored-by: klaus triendl <klaus.triendl@firedaemon.com>

* [tensorflow(-cc)] no absolute paths (#22159)

* [cgal ] Update to 5.3.1 (#22235)

* Update to 5.3.1

* Add version

* Apply suggestions from the CI

* After `vcpkg format-manifest ports/cgal/vcpkg.json`

* add version

* Update versions

* Fix after suggestions from JonLiu1993

* Fix versions

* [live555] Remove PASSING, REMOVE FROM FAIL LIST (#22271)

* [gdal] Add features for hdf5, netcdf, postgresql (#21231)

* Revise configuration, avoid hidden dependencies

* Expose hdf5 and netcdf feature, fix static linkage

* Fix hdf5 pc files

* Add spatialite flag

* Update versions

* Expose feature platform dependencies

* Update versions

* Configure gdal for windows arm and arm64

* Add postgresql feature

* Update versions

* Update wrapper

* Update versions

* Update baseline

* [skip actions] CI

* Use pkgconfig for expat

* Update versions

* uwp is unsupported (comsuppw.lib, atls.lib)

* Update versions

* [portmidi] update to 2.0.1; add Linux support (#22256)

The original PortMidi author moved it to GitHub and made the first
release in many years. The build system now works without hacks.

* [magnum] Fix feature glfwapplication find glfw failed (#22272)

* [magnum] Fix feature glfwapplication find glfw failed

* update version

* update portfile.cmake

* update version

* update portfile.cmake

* update version

* update version

* update version

* More double quotes

* version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>

* [catch2] update to v2.13.8 (#22310)

* [catch2] update to v2.13.8

* update versions

* [hidapi] update to 0.11.2 (#22304)

This implements hid_get_input_report with the Linux hidraw backend
plus fixes a few bugs on Windows.

* [proj4] Update to 8.2.1 (#22283)

* Update proj to 8.2.1

* Fix formatting

* Use new BUILD_APPS option

* Update versions

* Add explicit nlohmann-json dependency

* Update versions

* Enforce consistent definition of PROJ_DLL

* Update versions

* [skip actions] CI

* [ftxui] update to 0.11 (#22293)

* update ftxui version

* update sha512

* update port vcpkg.json version-string

* remove redundant version string

* fix git-tree sha in version\ftxui.json

* Remove unnecessary port-version.

Co-authored-by: Billy O'Neal <bion@microsoft.com>

* [python3] Install pkg-config files on Windows platforms (#22198)

* [unixodbc] no absolute paths (#21572)

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [gettext] Fix tools build: (#22211)

msginit-msginit.obj : error LNK2019: unresolved external symbol __imp_optarg_a referenced in function main
.libs\msginit.exe : fatal error LNK1120: 1 unresolved externals

* [qt-advanced-docking-system] update and use qt6 (#21998)

* update port

* format-manifest

* version stuff

* version stuff

* fix arm windows

* version stuff

* Revert "[qt-advanced-docking-system] update and use qt6 (#21998)" (#22350)

This reverts commit 91e1ce34a5.

* [vcpkg docs] Update Table of Content and Korean Readme (#22165)

* Update korean Readme

* Add another language

* Delete removed section on ToC

* [qca] new feature botan (#22227)

* [ace] Modifications to generate the correct build files for x64-linux configuration (#22091)

* Update portfile.cmake

Modifications to generate the correct build files for x64-linux configuration

* Update portfile.cmake

* Modifications to generate the correct build files for x64-linux configuration

* Corrected version hash

* Update portfile.cmake

Tabs replaced by spaces

* Update ace.json

Update version database

* Apply suggestions from code review

* update versions

Co-authored-by: bisaillonp <Pierre.Bisaillon@ixiasoft.com>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [minio-cpp] add new port  (#22242)

* [new port] minio-cpp v0.0.1

* fix with vcpkg x-add-version --all

* Update version database

* fix deprecated functions

* Update version database

* Update ports/minio-cpp/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* minio-cpp:x64-osx=fail

* Update version database

* add patch file

* Update version database

* Revert "minio-cpp:x64-osx=fail"

This reverts commit e296a672f5.

* we still want to install pkgconfig file

* fix version

Co-authored-by: xuan.guo@atomdatatech.com <xuan.guo@atomdatatech.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [kf5windowsystem] no absolute paths (#22333)

* [opencolorio] no absolute paths (#22332)

* [gdal] Fix configuration bug (#22322)

* Fix configuration bug

* Update versions

* [sail] no absolute paths (#22326)

* [kf5attica] no absolute paths (#22324)

* [hidapi] Fix cmake error (#22320)

* [hidapi] Fix cmake error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [vcpkg baseline][urho3d] Fix dependency readline (#22321)

* [vcpkg baseline][urho3d] Fix dependency readline-osx

* format manifest

* version

* Add port readline-unix, convert build type to makefile, set readline-osx as a empty package

* version

* change dependency to readline-unix on non-Windows

* version

* Update ports/readline-unix/vcpkg.json

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* update boolinq to v3.0.4 (#22315)

* [vcpkg|scripts] correctly restore env vars (#22313)

* [portmidi] update to 2.0.2 (#22312)

This removes the need for the patch to get portmidi to build on
macOS.

* [libkeyfinder] update to 2.2.6 (#22299)

This fixes a few issues with the pkgconfig and CMake package
config files.

* [openImageIO] update to 2.3.10.1 (#22316)

* [openImageIO] update to 2.3.10.1

* update versions

* update version

* update patch

* update version

* update patch

* update patch

* update version

* [google-cloud-cpp] update to v1.35.0 (#22348)

* [simbody] new port (#20565)

* Add simbody port

* Use newer vcpkg functions

* Fix cmake config path for unix

* Use patch file instead

* Fix tools path for unix

* Hard-code tools path

* Add freeglut dep

* Link to GLUT::GLUT

* Don't build visualization

* Fix static

* Fix static

* Update versions

* Fail for uwp

* Update baseline

* Apply suggestions from code review

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Add !uwp to vcpkg.json

* Fix static

* Test simbody PR on CI

* Try new ref

* Fix hash

* Fix osx

* Fix

* Update ref after upstream merge

* Update ports/simbody/portfile.cmake

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>

* Update version

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>

* [libraw] Add feature openmp and fix usage (#22336)

* [libraw] Add feature openmp and fix usage

* version

* Add missing code

* version

* [glibmm] no absolute paths (#22337)

* [vulkan-headers/vulkan-hpp] update  to v1.2.203 (#22364)

* update vulkan-headers and vulkan-hpp to v1.2.203

* change 'version-string' to 'version'

* version-semver -> version

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [fmt] update to 8.1.0 (#22349)

* [fmt] Upgrade to v8.1.0

* update version

* version-semver -> version

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [marble] no absolute paths (#22346)

* [openxr-loader] no absolute paths (#22351)

* [openxr-loader] no absolute paths

* [openxr-loader] no absolute paths

* [open62541] no absolute paths (#22352)

* [mygui] no absolute paths (#22355)

* [libmodman] no absolute paths (#22357)

* [clfft] no absolute paths (#22359)

* [clrng] no absolute paths (#22360)

* [clblas] no absolute paths (#22361)

* [libuvc] no absolute paths (#22362)

* [wxwidgets] no absolute paths (#22334)

* [teemo] Update to v2.6 (#22384)

* [teemo] Update to v2.6

* [teemo] Update version.

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [igraph] update to 0.9.6 (#22379)

* [igraph] update to 0.9.6

* [igraph] x-add-version

* [igraph] fix using internal PLFIT

* [igraph] x-add-version

* [refl-cpp] Update to 0.12.2 (#22374)

* Update refl-cpp to 0.12.2

* Update CI baseline

* [glfw3] update to version 3.3.6 (#22366)

* [GLFW3] update to 3.3.6

* update version

* [numactl] no absolute paths (#22356)

* [qtdeclarative] no absolute paths (#22327)

* [qtdeclarative] no absolute paths

* add comment

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [soqt] no absolute paths (#22325)

* [security development lifecycle] comply by adding security guidance. (#19834)

Resolves https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1336590

Drive-by: remove useless build status icon.

* [colmap] Fix LNK2019 in x64-windows-static triplet (#21937)

* [colmap] Fix LNK2019 in x64-windows-static triplet

* [libraw] Add find lcms2 in the cmake wrapper file

Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>

* [boost-modular-build-helper] Use boost's correct .jam file. (#22274)

* Use boost's correct .jam file.

Use boost's clang-win.jam configuration file when using Clang-cl to allow cross-compilation for Windows.

* Update port-version.

* Clang seems fine here.

* Run vcpkg x-add-version boost-modular-build-helper

* Apply suggestions from code review

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* Run vcpkg x-add-version --overwrite-version boost-modular-build-helper

Co-authored-by: Nemirtingas <nanaki89@hotmail.fr>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* [libgwenhywfar] no absolute paths (#22358)

* [freerdp] no absolute paths (#22335)

* [docs] Update docs with full release of manifests, registries, and versioning (#21929)

* [docs] Update docs with full release of manifests, registries, and versioning

* [docs] CR changes

* [botan] no absolute paths (#22343)

* [baseline] as of 2.0.2, portmidi:x64-windows-static-md passes (#22397)

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [openssl] Update to 1.1.1m (#22376)

* [openssl] Update to 1.1.1m

* run x-add-version --all for openssl 1.1.1m

* switch to 4 spaces to standardize instead of 2

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [boost-modular-build-helper] Add missing dependency (#20842)

* [arrow] Fix CMake link error (#22387)

* [arrow] Fix CMake link error

* update version

* [arrow] update vcpkg-cmake-wrapper.cmake

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [urdfdom][sdformat9] Re-fix build (#22367)

* [urdfdom][sdformat9] Re-fix build

* version

* Remove empty folder

* version

* [dartsim] Fix build issue

* version

* Update version name

* version

* Apply suggestions

* version

* Add PKG_EXPORTS

* version

* Update ports/sdformat9/fix-dependency-urdfdom.patch

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* [plf-colony] Update to 6.33 - [plf-hive] Add new port (#22389)

* [plf-colony-hive] Update to 6.33

* [plf-hive] Add new port

* [plf-colony][plf-hive] Update version files

* [plf-colony][plf-hive] Add quotes to paths

* [plf-colony][plf-hive] Update version files

* [plf-hive] Add version file

Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>

* [uriparser] update to 0.9.6 (#22398)

* [sobjectizer] Update to v.5.7.3 (#22399)

* sobjectizer updated to v5.7.3.

* so5extra updated to v1.5.0.

* so5extra-1.5.0 added to baseline.

* Fixes for old cmake commands.

* Update baseline for sobjectizer/so5extra.

* modernize cmake functions

* update version

* modernize cmake functions

* update version

* udpate version

Co-authored-by: Jonliu1993 <13720414433@163.com>

* [oatpp] v1.3.0 for oatpp and associated oatpp modules

* [oatpp] sets OATPP_MSVC_LINK_STATIC_RUNTIME compile option

* [oatpp] version db update

* [oatpp-websocket] sets OATPP_MSVC_LINK_STATIC_RUNTIME option

* [oatpp-swagger] sets OATPP_MSVC_LINK_STATIC_RUNTIME option

* [oatpp-ssdp] builds on x64-udp

* [boost] update to 1.78.0 (#21928)

* [scripts] update scripts

* [boost-*] generate ports

* update versions

* [scripts] update boost version in boost-modular-headers.cmake

* [scripts] add post source stubs for boost-json and boost-nowide ports and re-generate Boost ports

* update versions

* [boost-asio] make OpenSSL optional #20718

* update versions

* [boost] [boost-mpi] [boost-python] disable python for iOS and Android, fixes #21474

* update versions

* [boost-fiber] add NUMA support, fixes #16507

* update version

* [boost-build] apply patch https://github.com/bfgroup/b2/pull/113 for fix build boost-fiber and boost-stacktrace

* update version

* [boost-atomic] fix compilation for uwp

* update version

* ignore mapnik's fail on arm64-windows

* [boost-python] support ARM on Windows

* update versions

* Boost features testing within CI

* [boost-modular-build-helper] fix boost_python file name in Jamroot.jam

* [boost-mpi] fix build with python2 or python3

* update versions

* [boost-fiber] fix build with numa=on

* update version

* [boost-multiprecision] fix build with MSVC on ARM

* update version

* [boost-mpi] try to fix build on linux and osx

* update versions

* exclude static

* guarantee the same result across platforms

* minor changes to boost-modular-build-helper's CMake

* correct versions

* [boost-modular-build-helper] install Python extensions on Windows

* [boost-mpi] add patch to fix build Python extension on Windows

* update versions

* [boost-mpi] remove python2 by request @BillyONeal @strega-nil-ms

* update version

* update versions

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>

* [proj4]: Make the tiff specific features configurable and don't requi… (#22402)

* [proj4]: Make the tiff specific features configurable and don't require the lossy jpeg compression that isn't used by the proj Data and/or CDN

* [proj4]: Add version

* [cppgraphqlgen] Update from v4.0.0 to v4.1.0 (#22411)

* Bump version from 4.0.0 to 4.1.0

* vcpkg x-add-version cppgraphqlgen

* [mman] only windows (#22453)

* [vlpp] fix mac build (#22452)

* [s2n] disable -Werror for gcc 11 build (#22446)

s2n fails to build with gcc 11 (see
https://github.com/aws/s2n-tls/issues/2989) due to problematic type
declarations which generate compiler warnings, coupled with the fact
that s2n builds with -Werror by default. The underlying bug is not yet
fixed upstream.

Building with -Werror is not helpful for an end user trying to use s2n
from vcpkg, since a build failure like this is not actionable. This
change therefore uses the UNSAFE_TREAT_AS_ERRORS=OFF option to disable
-Werror.

* [sdl2-image] Support x64-uwp (#22437)

* fixed 22434

* Clean baseline

* update version

* version

* add supports field since the upstream doesn't support uwp

* improve code

* version

* version

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>

* [openblas] Upgrade to latest version 0.03.19 (#22435)

* [#22423]: Upgrade Openblas to latest version 0.03.19

* Clean-up ports/openblas. Removing patch no longer needed

* Formatting ports/openblas/vcpkg.json

* vcpkg x-add-version openblas

* [simbody] no absolute paths (#22420)

* [macos ci] update to 2022-01-03 (#22314)

* [macos ci] update to 2022-01-03

* update the instructions

* forgot to update azure-pipelines-osx.yml

* install parallels in Install-Prerequisites.ps1

* oops

* fix ace, libsoundio, and libpqxx

* tensorflow doesn't yet support macOS 12

* [drogon] Fix libmariadb import/export and usage (#22426)

* Add canonical usage

* Use unofficial-libmariadb

* Update versions

* [getdns] Disable install COPYING in cmakelist (#22475)

Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>

* [pybind11] Update to 2.9.0 (#22460)

Co-authored-by: Heiko Thiel <heiko.thiel@hpi.de>

* [wintoast] only windows (#22441)

* [chakracore] Add flag to use all available CPUs (#22439)

* Update portfile.cmake

* Update vcpkg.json

* Update baseline.json

* Update chakracore.json

* Update portfile.cmake

* Update chakracore.json

* Update portfile.cmake

* Update portfile.cmake

* Update chakracore.json

* Update portfile.cmake

* Update chakracore.json

* Update ports/chakracore/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update chakracore.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* [luasocket] only work on windows (#22432)

* [vcpkg_execute_build_process] Catch ld signal 9 (#22417)

* [vcpkg_execute_build_process] Catch ld signal 9

* Update message output

* [realsense2] Update to 2.50.0 (#22416)

* Update realsense2

* Update versions

* strega-nil CRs

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [pdal] Revise and update (#21275)

* Modernize portfile, use vcpkg_from_github

* Revise cleanup and tool installation

* Fix static linkage with gdal

* Fix static linkage with PostgreSQL

* Fix compiler options

* Fix APPLE linker flags

* Don't use /usr/local/include

* Remove pdal failure from CI baseline

* Remove outdated FindICONV.cmake

* Simplify geos package lookup

* Separate boost patch from other dependencies

* Simplify boost patching

* Update to 2.3.0

* PDAL supports only dynamic linkage

* Normalize find_library

* Dependencies, features and plugins

* Update pdalboost fixup

* Fixup pkgconfig

"Requires" in pc file is incomplete, and not needed for dynamic linkage in vcpkg.

* Override absolute plugin path

* Don't set RPATH

* Add usage

* [pdal-c] Update portfile

* [pdal-c] Don't enforce pdal features

* [pdal-c] Update to v2.1.0

* Update versions

* Convert tabs

* Update versions

* Patch NOMINMAX definition

* Update versions

* Use project include instead of patch

* Update versions

* Update 'supports' field

* Update versions

* [vcpkg] z_vcpkg_get_cmake_vars(): Use build-type-specific cache variable if VCPKG_BUILD_TYPE is defined (#22461)

* z_vcpkg_get_cmake_vars(): Use build-type-specific cache variable
if VCPKG_BUILD_TYPE is defined

Some ports (e.g. gettext) execute debug and release builds manually
(with different options). If a globally cached copy of cmake vars file
is used, the second build type has no cmake vars defined (e.g. CFLAGS is empty)
because generated and globally cached cmake vars file includes only cmake vars
for the first build type

* Apply suggestions from code review

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* [azure-identity-cpp] Update to 1.1.1 (#22493)

## 1.1.1 (2022-01-11)

### Bugs Fixed

- [2741](https://github.com/Azure/azure-sdk-for-cpp/issues/2741) Fixed linking problem when Azure SDK is built as DLL.

* [opencolorio/lcms] Fix dependency (#21960)

* [NCCL] Fix usage, add wrapper and install Find module file (#22031)

* fix-find_ncclConfig.cmake

* update version

* change port-version

* update version

* update version

* update version

* update port version

* update version

Co-authored-by: Frank-Xie <Frank-Xie@Email.com>

* [libuuid] disallow on osx (#22306)

The `uuid/uuid.h` header conflicts with system libraries on osx; some system headers include `<uuid/uuid.h>`, intending to get the macOS system headers.

* [protobuf] fix protobuf-3.18 mingw build failure (#22369)

* fix protobuf-3.18 mingw build

* fix protobuf-3.18 mingw build

* [boost-modular-headers] download the license file only once (#22462)

* [boost-modular-headers] download license file only once for every header-only library

* update version

* [wxwidgets] Fix debug-/release-only build (#22464)

Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>

* [buck-yeh-bux] Fix error C7595 (#22471)

* [buck-yeh-bux] Fix error C7595

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [Starlink-ast] update to 9.2.7 (#22382)

* updated to v9.2.6

* git hash update

* update to AST 9.2.7

* hash update

* Update versions/s-/starlink-ast.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* starlink-ast doesn't use semver

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [fontconfig] don't build font cache in case of crosscompile (#22483)

* [netcdf-c] fix installation on windows when hdf5[parallel] is installed (#22488)

fixes #21646

* [gettext] Fix uwp "tools" build (#22489)

* [many ports] Update HTTP to HTTPS links where it can be done safely. (#20464)

* Update HTTP to HTTPS links where it can be done safely.

This means that the HTTP-based link gave a 200 response with identical
content to the HTTPS version of the link. For links containing
variables, we checked the interpolated (real) link.

* Bump relevant vcpkg.json versions.

* Use version-date for cello.

* update version

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>

* [vtk] no absolute paths (#22330)

* [CppXaml] Add new port (#22414)

* Add CppXaml package

* format

* version

* 0.0.16

* update version

* Update ports/cppxaml/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update version

* add double quotes

* update version

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>

* [antlr4] update to 4.9.3 (#22438)

* Fixing Tracy Port (#22510)

* Adding tracy port

* Formatting tracy port

* Tidying up the port

* Formatting again

* Making sure git-tree is correct

* Adding correct vcpkg dependencies

* Newline at file end again

* Update version database

* Making sure to mark tracy as not supporting x86 at all

* Updating version again

* Responding to feedback and double checking which builds will work

* Updating versions

* Tidying up some loose ends

* Updating port version again

* Removing port-version 1

* Removing tracy from ci baseline

* Removing unnecessary include copy

* Updating version

* Resolving feedback

* Updating version and formatting

* Version for the version god

* tweaking tracy supports

* Formatting and version

* Version

* Adding pthreads dependency to tracy for non-windows platforms

* Version

* Fixing tracy port

* Fixing version

* TRACY_IMPORTS should be an INTERFACE define

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [openxr-loader] Update to 1.0.22 (#22512)

* [openxr-loader] Update to 1.0.22

* [openxr-loader] Update version files

Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>

* [libmicrohttpd] update to v0.9.75 (#22514)

* update libmicrohttpd to v0.9.75

* delete useless patch file

Co-authored-by: Mengna-Li <you@example.com>

* [speex] fix build on osx by disableing example binaries (#22458)

* [speex] disable building of example programs to avoid libogg dependency

* [speex] don't use deprecated vcpkg functions

* [vcpkg_find_fortran] Update the mingw-w64-i686-mpc* (#22519)

* [vcpkg_find_fortran] Update the mingw-w64-i686-mpc*

* Update the version for x64

* [icu] Fix pc files (#22388)

* [icu] Fix pc files

* Patch the issue in configure.ac

* Update VMs for Patch Tuesday and fix pwsh CVE. (#22494)

* [glslang] Restore version removed in #15719 (#22538)

* [crow] update to 0.3.4 (v0.3+4) (#22500)

Signed-off-by: Luca Schlecker <luca.schlecker@hotmail.com>

* [wxWidgets] Fix issue introduced in 9b654a1f21 (#22509)

Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>

* [tiff] Fix -lm on android (#22137)

* [oatpp] has modernized vcpkg portfile+manifest

Co-authored-by: Vitaly <v31337@gmail.com>
Co-authored-by: An Tao <antao2002@gmail.com>
Co-authored-by: Rémy Tassoux <contact@rt2.fr>
Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
Co-authored-by: Michael R. P. Ragazzon <mikke89@users.noreply.github.com>
Co-authored-by: eao197 <eao197@users.noreply.github.com>
Co-authored-by: Sheen Tian <5869938+tishion@users.noreply.github.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: sean <43609023+spnda@users.noreply.github.com>
Co-authored-by: Billy O'Neal <bion@microsoft.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: Joachim Gehweiler <44170764+jgehw@users.noreply.github.com>
Co-authored-by: Joachim Gehweiler <joachim@Joachims-iMac.local>
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
Co-authored-by: Lars Glud <larshg@gmail.com>
Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
Co-authored-by: Kai Pastor <dg0yt@darc.de>
Co-authored-by: Daniel Schürmann <daschuer@mixxx.org>
Co-authored-by: Angus Comrie <accomrie@gmail.com>
Co-authored-by: Li Zeyang <a.banknote@gmail.com>
Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: yuehua.jia <3423893+jiayuehua@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: IronsDu <irons.du@gmail.com>
Co-authored-by: Josue Andrade Gomes <josuegomes@gmail.com>
Co-authored-by: Clayton Wheeler <cswheeler@gmail.com>
Co-authored-by: Christian Fillion <cfillion@users.noreply.github.com>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: X.ZhaoMa <ma@arch.ethz.ch>
Co-authored-by: Dawid Wróbel <me@dawidwrobel.com>
Co-authored-by: Stefano Sinigardi <stesinigardi@hotmail.com>
Co-authored-by: Yury Bura <yurybura@gmail.com>
Co-authored-by: Jonathan Guzmán <jonguz5@hotmail.com>
Co-authored-by: klaus triendl <klaus@triendl.eu>
Co-authored-by: klaus triendl <klaus.triendl@firedaemon.com>
Co-authored-by: Bill Avery <wravery@users.noreply.github.com>
Co-authored-by: Adam Johnson <AdamJohnso@gmail.com>
Co-authored-by: KOGA Mitsuhiro <shiena.jp@gmail.com>
Co-authored-by: Ian Cook <ianmcook@gmail.com>
Co-authored-by: Marten Hentschel <marten.junga@rwth-aachen.de>
Co-authored-by: Hentschel, Marten <marten.hentschel@schoenhofer.de>
Co-authored-by: winsoft666 <46803815+winsoft666@users.noreply.github.com>
Co-authored-by: Adrian Bibby Walther <adrianbibbywalther@gmail.com>
Co-authored-by: Arsen Tufankjian <amt3824@g.rit.edu>
Co-authored-by: Vladimir Voronin <evaldemar2@gmail.com>
Co-authored-by: Sewon Park <sphawk@users.noreply.github.com>
Co-authored-by: Dmitry Baryshev <dmitrymq@gmail.com>
Co-authored-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
Co-authored-by: Matthias Kuhn <matthias@opengis.ch>
Co-authored-by: Mengna Li <95600143+Adela0814@users.noreply.github.com>
Co-authored-by: Daniel Marshall <xandan@gmail.com>
Co-authored-by: antao <antao@heart-forever.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
Co-authored-by: Alonso Schaich <alonsoschaich@fastmail.fm>
Co-authored-by: Schaich <alonso.schaich@sodgeit.de>
Co-authored-by: Nick <nlogozzo225@gmail.com>
Co-authored-by: Charles Milette <charles.milette@gmail.com>
Co-authored-by: yemreinci <18687880+yemreinci@users.noreply.github.com>
Co-authored-by: wtywtykk <163.wty@163.com>
Co-authored-by: zekoz <zeko@freeciv.xyz>
Co-authored-by: kreuzerkrieg <829317+kreuzerkrieg@users.noreply.github.com>
Co-authored-by: Johannes Schönberger <johannes.schonberger@microsoft.com>
Co-authored-by: Erwan BERNARD <edmBernard@users.noreply.github.com>
Co-authored-by: Fabien Castan <fabcastan@gmail.com>
Co-authored-by: Thomas Willecomme <thomas.willecomme@free.fr>
Co-authored-by: Thomas Willecomme <thomas.willecomme@teledyne.com>
Co-authored-by: wangao <wa17@mails.tsinghua.edu.cn>
Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
Co-authored-by: Laurent Rineau <Laurent.Rineau@cgal.org>
Co-authored-by: Matthew Oliver <protogonoi@gmail.com>
Co-authored-by: Koby Kahane <kobykahane@gmail.com>
Co-authored-by: Be <be@mixxx.org>
Co-authored-by: Neel Raiyani <nraiyani+github@gmail.com>
Co-authored-by: Max Khon <fjoe@samodelkin.net>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
Co-authored-by: GU <jiyupark618@gmail.com>
Co-authored-by: Pierre Bisaillon <73765924+pierrebizz@users.noreply.github.com>
Co-authored-by: bisaillonp <Pierre.Bisaillon@ixiasoft.com>
Co-authored-by: kkzi <34122458+kkzi@users.noreply.github.com>
Co-authored-by: xuan.guo@atomdatatech.com <xuan.guo@atomdatatech.com>
Co-authored-by: Carlos O'Ryan <coryan@google.com>
Co-authored-by: Akash <Ace314159@users.noreply.github.com>
Co-authored-by: 双草酸酯 <17663689+kotori2@users.noreply.github.com>
Co-authored-by: Szabolcs Horvát <szhorvat@gmail.com>
Co-authored-by: Veselin Karaganev <vesko.karaganev@gmail.com>
Co-authored-by: Nemirtingas <9432037+Nemirtingas@users.noreply.github.com>
Co-authored-by: Nemirtingas <nanaki89@hotmail.fr>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Co-authored-by: Guillaume Racicot <gufideg@gmail.com>
Co-authored-by: Bert Huijben <rhuijben@users.noreply.github.com>
Co-authored-by: Clayton Wheeler <cwheeler@genomenon.com>
Co-authored-by: Felipe Wannmacher <fwannmacher@gmail.com>
Co-authored-by: hm <hwill@acm.org>
Co-authored-by: SunBlack <SunBlack@users.noreply.github.com>
Co-authored-by: Heiko Thiel <heiko.thiel@hpi.de>
Co-authored-by: Leonid Pospelov <pospelovlm@yandex.ru>
Co-authored-by: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com>
Co-authored-by: Frank-Xie <Frank-Xie@Email.com>
Co-authored-by: Liu Chenxin <chenxinleo@163.com>
Co-authored-by: Michael Scovetta <michael.scovetta@microsoft.com>
Co-authored-by: Alexander Sklar <asklar@microsoft.com>
Co-authored-by: Yue <niyue.com@gmail.com>
Co-authored-by: Mengna-Li <you@example.com>
Co-authored-by: Luca Schlecker <luca.schlecker@hotmail.com>
2022-01-20 14:14:57 -08:00
Giovanni A. Zuliani
e4bcda2ee3
[FLTK] Update to 1.3.8 (#22487)
* [FLTK] Update to 1.3.8

* [FLTK] Update to 1.3.8 - fixups

* Update versions/f-/fltk.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2022-01-20 14:05:41 -08:00
Long Huan
bc4b12f517
[flann] Fix missing hdf5 dependency in flann-config.cmake (#22153)
* add find_package hdf5 in flann-config.cmake

* update versions

* Update flann.json

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-01-20 13:49:58 -08:00
al-sabr
9e50a7c8c3
[FlashRuntimeExtensions] Add new port (#22171)
* Initial commit with a working port on Windows.

* Added version file.

* Update ports/flash-runtime-extensions/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update ports/flash-runtime-extensions/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update ports/flash-runtime-extensions/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update ports/flash-runtime-extensions/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update ports/flash-runtime-extensions/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Fixed address.

* Fixed url for original port.

* format vcpkg.json

* update version

* Removed comma.

* add supports

* update version

* Removing folder fixing vcpkg build.

* Changed hash value and version.

* Fixed baseline hash an version.

* Update ports/flash-runtime-extensions/portfile.cmake

* Update ports/flash-runtime-extensions/portfile.cmake

* added vcpkg x-add-version flash-runtime-extensions --overwrite-version

* update veersion

* update supports

* update version

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2022-01-20 11:01:04 -08:00
LilyWangLL
1028f966a3
[irrlicht] Add the remind of libraries which needed by Linux (#21511)
* [irrlicht] Add the remind of libraries which needed by Linux

* update version

* [irrlicht] update mesa

* update version

* update version

* update portfile.cmake

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-01-20 10:30:30 -08:00
Jonathan Sweemer
0a3b3d462d
[quantlib] update to v1.25 (#21430) 2022-01-20 10:29:37 -08:00
Daniel Lundborg
5ef52b5b75
[google-cloud-cpp] Support abseil[cxx17] (#21942)
* [google-cloud-cpp] Support abseil[cxx17]

Signed-off-by: Daniel Lundborg <daniel.lundborg@sandvik.com>

* [google-cloud-cpp] add version

Signed-off-by: Daniel Lundborg <daniel.lundborg@sandvik.com>
2022-01-19 10:48:18 -08:00
autoantwort
be39f6aaf9
[nayuki-qr-code-generator] new port (#22615) 2022-01-19 09:38:54 -08:00
Sang Ha
4d3628a2a5
[qt5-3d] Support Visual Studio 2022 (#22624)
The error shows related to the qt5-3d module when I'm compiling COLMAP 3.6 by vcpkg on Windows 10 with Visual Studio 2022 installed. After tracing the logs, I realized that only assimp-vc143-mt.lib available in VCPKG_ROOT\installed\x64-windows\lib
2022-01-19 09:35:59 -08:00
Kai Pastor
08bb6e106e
[curl] Update to 7.81.0 (#22445)
* Update to 7.81.0

* Revise curl wrapper, fix `COMPONENTS`

* Update versions

* Add fix for multi-ssl config

* [skip actions] CI feature test

* Refactor lib export fixup

Handle Debug/Release/IMPORTED_*...

* Fix libssh2 lookup

* Fix libidn2.pc for windows

* Fix libidn2 import

* Fix mbedtls import

* Simplify options

* [skip actions] CI feature test

* Revert CI feature test configuration

* Update versions

* Limit import lib fixup to WIN32

* Update versions
2022-01-19 09:15:16 -08:00
Semphriss
aa155bb022
[boost-build] Fix boost-exception for wasm32-emscripten (#22497)
* Fix boost-exception for wasm32-emscripten

* Updated port version for boost-exception

* Updated boost-exception with x-add-version

* Fixed patch

* Boost-build x-add-version

* Increment boost-build version again

* x-add-version for boost-build

* Fixed boost-build port version

* x-add-version for boost-build

Co-authored-by: Semphris <semphris@protonmail.com>
2022-01-19 09:09:48 -08:00
Henrik Gaßmann
291b84e651
[llfio] Support static linkage triplets (#22504)
* [quickcpplib] Avoid deprecated helper functions

* [quickcpplib] Update to version @0.0.0-cad832c8

fixup quickcpplib ref

* [quickcpplib] Add cxx17 and cxx20 feature levels

* [quickcpplib] Update port version information

* [llfio] Update to version @2.0-20220112

* [llfio] Avoid deprecated helper functions

* [llfio] Add cxx17 and cxx20 feature levels

* [llfio] Support static linkage triplets

* [llfio] Always install ntkernel-error-category

ntkernel-error-category sources have been recorded as part of
`headers.cmake` which are added to the library targets. Therefore cmake
configure fails if they aren't  available.

* [llfio] Fix msvc crt linkage specification

`quickcpplib` parses `CMAKE_MSVC_RUNTIME_LIBRARY` and cannot support the
default crt linkage generator expression from vcpkg. Therefore we need
to manually specify a valid option.

* [llfio] Update port version information
2022-01-18 15:58:04 -08:00
autoantwort
66765fd0f2
[mhook] only windows (#22559) 2022-01-18 15:47:52 -08:00
Jack·Boos·Yu
372e8d146b
[mesa] Update hash (#22573)
* [mesa] Update hash

* version

* add FILE_DISAMBIGUATOR

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-18 15:45:42 -08:00
Kyle Benesch
c0b44ddb14
[libtcod] Update to 1.20.1 (#22524)
* [libtcod] Update to 1.20.1

* Current versions do not follow semantic versioning.

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2022-01-18 13:55:44 -08:00
Nemirtingas
49be0f8071
[LibJuice][Libdatachannel] Update v0.9.6 / Update v0.16.4 (#22531)
* Update libjuice to 0.9.6

* Update baseline.

* Update to 0.16.4.

* Update baseline.

Co-authored-by: Nemirtingas <Nemirtingas@noreply.com>
2022-01-18 13:50:36 -08:00
Rémy Tassoux
bcbd5f9676
[robin-hood-hashing] Update to 3.11.5 (#22537)
* [robin-hood-hashing] Update to 3.11.5

* [robin-hood-hashing] Update version files

Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
2022-01-18 13:47:31 -08:00
Daniel Schürmann
68a8531c63
[ffmpeg] fix Crosscompiling on osx (#22543) 2022-01-18 13:46:26 -08:00
autoantwort
71aad81390
[winsock2] only windows (#22554) 2022-01-18 13:45:05 -08:00
autoantwort
4995dcbb09
[wincrypt] only windows (#22555) 2022-01-18 13:44:30 -08:00
autoantwort
771d1e429f
[unicorn] only windows (#22556) 2022-01-18 13:44:04 -08:00
autoantwort
0e37bdac70
[readline-win32] only windows (#22557) 2022-01-18 13:43:38 -08:00
autoantwort
3554581458
[minhook] only windows (#22558) 2022-01-18 13:42:39 -08:00
autoantwort
9ae782c08c
[libxmp-lite] only windows (#22560) 2022-01-18 13:39:50 -08:00
autoantwort
b1fe832714
[libdshowcapture] only windows (#22562) 2022-01-18 13:37:28 -08:00
Ahmed Yarub Hani Al Nuaimi
eecbe2a571
[libwebsockets] Fix building with Emscripten (#22563)
* Do not use pkg-config for finding OpenSSL
Do not use libuv when building for Emscripten

(cherry picked from commit f541d3265a00f31a91a56ed25096a0ad476fd2a9)

* Remove redundant flag

* Update versions

* Update versions

* Fix patch

* Update versions

Co-authored-by: Ahmed Yarub Hani Al Nuaimi <ahmed.alnuaimi@zwift.com>
2022-01-18 13:34:49 -08:00
Jack·Boos·Yu
956fae3977
[gherkin-c] Fix UNIX build, fix install path (#22578)
* [gherkin-c] Fix UNIX build, fix install path

* version

* manifest

* version

* should be a `-` not an `_`

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-18 13:26:14 -08:00
autoantwort
f56752f4a8
[crossguid] fix mac build (#22587) 2022-01-18 13:07:55 -08:00
autoantwort
6bb5aa3b97
[guetzli] fix mac build (#22588) 2022-01-18 13:07:13 -08:00
autoantwort
15f50770ea
[milerius-sfml-imgui] fix mac build (#22596) 2022-01-18 13:05:22 -08:00
autoantwort
888d8c0468
[piex] fix mac build (#22600) 2022-01-18 13:03:27 -08:00
Kai Pastor
ce2ca4cd46
[aws-c-mqtt] Fix dependencies (#22611)
* Fix dependencies

* Update versions
2022-01-18 13:02:51 -08:00
Mengna Li
42bda4d340
[scylla wrapper] only windows (#22612)
* scylla-wrapper only support windows

* update

* add port version

* update
2022-01-18 12:42:29 -08:00
Guillaume Racicot
93d397cb69
[boost-modular-build-helper] Fix boost build gcc macos (#22410)
* Allow gcc on macos on boost-build

* Remove libc++ flag for GCC on MacOs

* Bumped port version

* Ran x-add-version
2022-01-18 12:32:18 -08:00
Mengna Li
5d642f7f38
[zstd] update to 1.5.2 (#22492) 2022-01-18 12:28:16 -08:00
ryuukk
fff05c8e5f
[mongoose] update to v7.5 (#22385)
* Update mongoose to v7.5

* Update portfile.cmake

* [mongoose] update to v7.5

* udpate version

Co-authored-by: Jonliu1993 <13720414433@163.com>
2022-01-18 12:17:59 -08:00
Kai Pastor
837f3aecf1
[gdal] Update to 3.4.1 (#22370)
* Update gdal to 3.4.1

* Update versions

* Explicitly disable PCRE2

* Update versions

* Revise nmake dependency import and export

* Use pkg-config for spatialite with autotools

* Update versions
2022-01-18 12:15:31 -08:00
Ahson Khan
fd30db7298
Remove lingering artifacts from the beta release of the azure-security-keyvault-common-cpp as it is no longer necessary. (#22491)
* Remove the beta release of the azure-security-keyvault-common-cpp as it
is no longer necessary.

* revert delete operator, set this port as depreciate

* format, version

* Update versions/a-/azure-security-keyvault-common-cpp.json

* Revert "Update versions/a-/azure-security-keyvault-common-cpp.json"

This reverts commit 8b9e666f8e.

* Revert "format, version"

This reverts commit bb7d882f12.

* Revert "revert delete operator, set this port as depreciate"

This reverts commit 8916a559d6.

* Add back the old versions file for keyvault-common.

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2022-01-18 10:47:32 -08:00
Phoebe
4184491f07
[vcpkg baseline][rtabmap] Set WITH_PDAL to OFF (#22534) 2022-01-17 22:54:54 -08:00
Matthias Kuhn
bba8794b82
[tiff] Fix -lm on android (#22137) 2022-01-14 16:12:41 -08:00
Vitalii Koshura
371be89c1e
[wxWidgets] Fix issue introduced in 9b654a1f21 (#22509)
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
2022-01-14 16:01:13 -08:00
Luca Schlecker
e1e6a004f2
[crow] update to 0.3.4 (v0.3+4) (#22500)
Signed-off-by: Luca Schlecker <luca.schlecker@hotmail.com>
2022-01-14 15:30:43 -08:00
Phoebe
e0315fe85c
[icu] Fix pc files (#22388)
* [icu] Fix pc files

* Patch the issue in configure.ac
2022-01-13 13:23:44 -08:00
Daniel Schürmann
0e8f0ceefd
[speex] fix build on osx by disableing example binaries (#22458)
* [speex] disable building of example programs to avoid libogg dependency

* [speex] don't use deprecated vcpkg functions
2022-01-13 10:52:19 -08:00
Mengna Li
a0886ef838
[libmicrohttpd] update to v0.9.75 (#22514)
* update libmicrohttpd to v0.9.75

* delete useless patch file

Co-authored-by: Mengna-Li <you@example.com>
2022-01-13 10:50:47 -08:00
Rémy Tassoux
1a19b0eb3c
[openxr-loader] Update to 1.0.22 (#22512)
* [openxr-loader] Update to 1.0.22

* [openxr-loader] Update version files

Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
2022-01-13 10:49:53 -08:00
Arsen Tufankjian
89ed213031
Fixing Tracy Port (#22510)
* Adding tracy port

* Formatting tracy port

* Tidying up the port

* Formatting again

* Making sure git-tree is correct

* Adding correct vcpkg dependencies

* Newline at file end again

* Update version database

* Making sure to mark tracy as not supporting x86 at all

* Updating version again

* Responding to feedback and double checking which builds will work

* Updating versions

* Tidying up some loose ends

* Updating port version again

* Removing port-version 1

* Removing tracy from ci baseline

* Removing unnecessary include copy

* Updating version

* Resolving feedback

* Updating version and formatting

* Version for the version god

* tweaking tracy supports

* Formatting and version

* Version

* Adding pthreads dependency to tracy for non-windows platforms

* Version

* Fixing tracy port

* Fixing version

* TRACY_IMPORTS should be an INTERFACE define

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-13 10:49:26 -08:00
Yue
218ea21905
[antlr4] update to 4.9.3 (#22438) 2022-01-13 09:23:06 -08:00
Alexander Sklar
59706ba512
[CppXaml] Add new port (#22414)
* Add CppXaml package

* format

* version

* 0.0.16

* update version

* Update ports/cppxaml/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update version

* add double quotes

* update version

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2022-01-13 09:17:25 -08:00
autoantwort
a511f26aec
[vtk] no absolute paths (#22330) 2022-01-13 09:14:32 -08:00
Michael Scovetta
b47d6ce6e3
[many ports] Update HTTP to HTTPS links where it can be done safely. (#20464)
* Update HTTP to HTTPS links where it can be done safely.

This means that the HTTP-based link gave a 200 response with identical
content to the HTTPS version of the link. For links containing
variables, we checked the interpolated (real) link.

* Bump relevant vcpkg.json versions.

* Use version-date for cello.

* update version

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2022-01-12 12:13:55 -08:00
Max Khon
d2b1baa953
[gettext] Fix uwp "tools" build (#22489) 2022-01-12 12:02:05 -08:00
nicole mazzuca
e9734e1805
[netcdf-c] fix installation on windows when hdf5[parallel] is installed (#22488)
fixes #21646
2022-01-12 12:00:16 -08:00
Daniel Schürmann
95c1b6fe50
[fontconfig] don't build font cache in case of crosscompile (#22483) 2022-01-12 11:59:55 -08:00
Angus Comrie
7180c62fd9
[Starlink-ast] update to 9.2.7 (#22382)
* updated to v9.2.6

* git hash update

* update to AST 9.2.7

* hash update

* Update versions/s-/starlink-ast.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* starlink-ast doesn't use semver

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-12 11:59:20 -08:00
LilyWangLL
6df2ad9771
[buck-yeh-bux] Fix error C7595 (#22471)
* [buck-yeh-bux] Fix error C7595

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-01-12 11:48:45 -08:00
Vitalii Koshura
9b654a1f21
[wxwidgets] Fix debug-/release-only build (#22464)
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
2022-01-12 11:43:30 -08:00
Yury Bura
9e0e9762e6
[boost-modular-headers] download the license file only once (#22462)
* [boost-modular-headers] download license file only once for every header-only library

* update version
2022-01-12 11:39:19 -08:00
Liu Chenxin
e16a8ac6dc
[protobuf] fix protobuf-3.18 mingw build failure (#22369)
* fix protobuf-3.18 mingw build

* fix protobuf-3.18 mingw build
2022-01-12 11:34:24 -08:00
autoantwort
b13e043b70
[libuuid] disallow on osx (#22306)
The `uuid/uuid.h` header conflicts with system libraries on osx; some system headers include `<uuid/uuid.h>`, intending to get the macOS system headers.
2022-01-12 11:33:38 -08:00
Frank
d7e919b978
[NCCL] Fix usage, add wrapper and install Find module file (#22031)
* fix-find_ncclConfig.cmake

* update version

* change port-version

* update version

* update version

* update version

* update port version

* update version

Co-authored-by: Frank-Xie <Frank-Xie@Email.com>
2022-01-12 11:32:50 -08:00
Phoebe
c7ea63043c
[opencolorio/lcms] Fix dependency (#21960) 2022-01-12 11:32:27 -08:00
Azure SDK Bot
8f11bd8962
[azure-identity-cpp] Update to 1.1.1 (#22493)
## 1.1.1 (2022-01-11)

### Bugs Fixed

- [2741](https://github.com/Azure/azure-sdk-for-cpp/issues/2741) Fixed linking problem when Azure SDK is built as DLL.
2022-01-12 11:29:50 -08:00
Kai Pastor
25eb51a36b
[pdal] Revise and update (#21275)
* Modernize portfile, use vcpkg_from_github

* Revise cleanup and tool installation

* Fix static linkage with gdal

* Fix static linkage with PostgreSQL

* Fix compiler options

* Fix APPLE linker flags

* Don't use /usr/local/include

* Remove pdal failure from CI baseline

* Remove outdated FindICONV.cmake

* Simplify geos package lookup

* Separate boost patch from other dependencies

* Simplify boost patching

* Update to 2.3.0

* PDAL supports only dynamic linkage

* Normalize find_library

* Dependencies, features and plugins

* Update pdalboost fixup

* Fixup pkgconfig

"Requires" in pc file is incomplete, and not needed for dynamic linkage in vcpkg.

* Override absolute plugin path

* Don't set RPATH

* Add usage

* [pdal-c] Update portfile

* [pdal-c] Don't enforce pdal features

* [pdal-c] Update to v2.1.0

* Update versions

* Convert tabs

* Update versions

* Patch NOMINMAX definition

* Update versions

* Use project include instead of patch

* Update versions

* Update 'supports' field

* Update versions
2022-01-11 14:56:08 -08:00
Akash
d1d48ccffe
[realsense2] Update to 2.50.0 (#22416)
* Update realsense2

* Update versions

* strega-nil CRs

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-11 14:50:36 -08:00
autoantwort
ccdb2089ce
[luasocket] only work on windows (#22432) 2022-01-11 14:28:39 -08:00
Leonid Pospelov
73e1ed0263
[chakracore] Add flag to use all available CPUs (#22439)
* Update portfile.cmake

* Update vcpkg.json

* Update baseline.json

* Update chakracore.json

* Update portfile.cmake

* Update chakracore.json

* Update portfile.cmake

* Update portfile.cmake

* Update chakracore.json

* Update portfile.cmake

* Update chakracore.json

* Update ports/chakracore/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update chakracore.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2022-01-11 14:28:06 -08:00
autoantwort
ca5930fae4
[wintoast] only windows (#22441) 2022-01-11 14:27:35 -08:00
SunBlack
b8b1217bda
[pybind11] Update to 2.9.0 (#22460)
Co-authored-by: Heiko Thiel <heiko.thiel@hpi.de>
2022-01-11 14:09:57 -08:00
Cheney Wang
f820cdd2a7
[getdns] Disable install COPYING in cmakelist (#22475)
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2022-01-11 14:04:18 -08:00
Kai Pastor
9f04533f30
[drogon] Fix libmariadb import/export and usage (#22426)
* Add canonical usage

* Use unofficial-libmariadb

* Update versions
2022-01-10 21:48:15 -08:00
nicole mazzuca
5edd518dc3
[macos ci] update to 2022-01-03 (#22314)
* [macos ci] update to 2022-01-03

* update the instructions

* forgot to update azure-pipelines-osx.yml

* install parallels in Install-Prerequisites.ps1

* oops

* fix ace, libsoundio, and libpqxx

* tensorflow doesn't yet support macOS 12
2022-01-10 16:08:51 -08:00
autoantwort
964e75806b
[simbody] no absolute paths (#22420) 2022-01-10 13:18:05 -08:00
hm
b39db0cf4b
[openblas] Upgrade to latest version 0.03.19 (#22435)
* [#22423]: Upgrade Openblas to latest version 0.03.19

* Clean-up ports/openblas. Removing patch no longer needed

* Formatting ports/openblas/vcpkg.json

* vcpkg x-add-version openblas
2022-01-10 13:17:40 -08:00
Felipe Wannmacher
e3c42b4418
[sdl2-image] Support x64-uwp (#22437)
* fixed 22434

* Clean baseline

* update version

* version

* add supports field since the upstream doesn't support uwp

* improve code

* version

* version

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2022-01-10 13:15:07 -08:00
Clayton Wheeler
9f69089cb9
[s2n] disable -Werror for gcc 11 build (#22446)
s2n fails to build with gcc 11 (see
https://github.com/aws/s2n-tls/issues/2989) due to problematic type
declarations which generate compiler warnings, coupled with the fact
that s2n builds with -Werror by default. The underlying bug is not yet
fixed upstream.

Building with -Werror is not helpful for an end user trying to use s2n
from vcpkg, since a build failure like this is not actionable. This
change therefore uses the UNSAFE_TREAT_AS_ERRORS=OFF option to disable
-Werror.
2022-01-10 13:12:17 -08:00
autoantwort
4c570f2b8d
[vlpp] fix mac build (#22452) 2022-01-10 13:09:22 -08:00
autoantwort
0e96f76e01
[mman] only windows (#22453) 2022-01-10 13:07:18 -08:00
Bill Avery
9e7de58738
[cppgraphqlgen] Update from v4.0.0 to v4.1.0 (#22411)
* Bump version from 4.0.0 to 4.1.0

* vcpkg x-add-version cppgraphqlgen
2022-01-10 12:59:06 -08:00
Bert Huijben
8b72840039
[proj4]: Make the tiff specific features configurable and don't requi… (#22402)
* [proj4]: Make the tiff specific features configurable and don't require the lossy jpeg compression that isn't used by the proj Data and/or CDN

* [proj4]: Add version
2022-01-10 12:33:36 -08:00
Yury Bura
76d4836f3b
[boost] update to 1.78.0 (#21928)
* [scripts] update scripts

* [boost-*] generate ports

* update versions

* [scripts] update boost version in boost-modular-headers.cmake

* [scripts] add post source stubs for boost-json and boost-nowide ports and re-generate Boost ports

* update versions

* [boost-asio] make OpenSSL optional #20718

* update versions

* [boost] [boost-mpi] [boost-python] disable python for iOS and Android, fixes #21474

* update versions

* [boost-fiber] add NUMA support, fixes #16507

* update version

* [boost-build] apply patch https://github.com/bfgroup/b2/pull/113 for fix build boost-fiber and boost-stacktrace

* update version

* [boost-atomic] fix compilation for uwp

* update version

* ignore mapnik's fail on arm64-windows

* [boost-python] support ARM on Windows

* update versions

* Boost features testing within CI

* [boost-modular-build-helper] fix boost_python file name in Jamroot.jam

* [boost-mpi] fix build with python2 or python3

* update versions

* [boost-fiber] fix build with numa=on

* update version

* [boost-multiprecision] fix build with MSVC on ARM

* update version

* [boost-mpi] try to fix build on linux and osx

* update versions

* exclude static

* guarantee the same result across platforms

* minor changes to boost-modular-build-helper's CMake

* correct versions

* [boost-modular-build-helper] install Python extensions on Windows

* [boost-mpi] add patch to fix build Python extension on Windows

* update versions

* [boost-mpi] remove python2 by request @BillyONeal @strega-nil-ms

* update version

* update versions

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
2022-01-10 11:47:12 -08:00
eao197
03ca9b59af
[sobjectizer] Update to v.5.7.3 (#22399)
* sobjectizer updated to v5.7.3.

* so5extra updated to v1.5.0.

* so5extra-1.5.0 added to baseline.

* Fixes for old cmake commands.

* Update baseline for sobjectizer/so5extra.

* modernize cmake functions

* update version

* modernize cmake functions

* update version

* udpate version

Co-authored-by: Jonliu1993 <13720414433@163.com>
2022-01-07 14:58:29 -08:00
Mengna Li
d52bb6fbff
[uriparser] update to 0.9.6 (#22398) 2022-01-07 14:57:55 -08:00
Rémy Tassoux
d616af7c86
[plf-colony] Update to 6.33 - [plf-hive] Add new port (#22389)
* [plf-colony-hive] Update to 6.33

* [plf-hive] Add new port

* [plf-colony][plf-hive] Update version files

* [plf-colony][plf-hive] Add quotes to paths

* [plf-colony][plf-hive] Update version files

* [plf-hive] Add version file

Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
2022-01-07 14:57:24 -08:00
Jack·Boos·Yu
d4acfe76d1
[urdfdom][sdformat9] Re-fix build (#22367)
* [urdfdom][sdformat9] Re-fix build

* version

* Remove empty folder

* version

* [dartsim] Fix build issue

* version

* Update version name

* version

* Apply suggestions

* version

* Add PKG_EXPORTS

* version

* Update ports/sdformat9/fix-dependency-urdfdom.patch

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
2022-01-07 14:47:34 -08:00
LilyWangLL
6d27dc93f7
[arrow] Fix CMake link error (#22387)
* [arrow] Fix CMake link error

* update version

* [arrow] update vcpkg-cmake-wrapper.cmake

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-01-07 13:57:16 -08:00
Phoebe
5e96edc23c
[boost-modular-build-helper] Add missing dependency (#20842) 2022-01-07 13:39:58 -08:00
Guillaume Racicot
b25cb779e5
[openssl] Update to 1.1.1m (#22376)
* [openssl] Update to 1.1.1m

* run x-add-version --all for openssl 1.1.1m

* switch to 4 spaces to standardize instead of 2

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-07 10:22:37 -08:00
autoantwort
3c3cce612b
[botan] no absolute paths (#22343) 2022-01-06 16:09:29 -08:00
autoantwort
c9b9ea80f1
[freerdp] no absolute paths (#22335) 2022-01-06 15:35:44 -08:00
autoantwort
98b9ea03f8
[libgwenhywfar] no absolute paths (#22358) 2022-01-06 13:59:29 -08:00
Nemirtingas
5be51c9516
[boost-modular-build-helper] Use boost's correct .jam file. (#22274)
* Use boost's correct .jam file.

Use boost's clang-win.jam configuration file when using Clang-cl to allow cross-compilation for Windows.

* Update port-version.

* Clang seems fine here.

* Run vcpkg x-add-version boost-modular-build-helper

* Apply suggestions from code review

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* Run vcpkg x-add-version --overwrite-version boost-modular-build-helper

Co-authored-by: Nemirtingas <nanaki89@hotmail.fr>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
2022-01-06 13:55:02 -08:00
Cheney Wang
9117f195fa
[colmap] Fix LNK2019 in x64-windows-static triplet (#21937)
* [colmap] Fix LNK2019 in x64-windows-static triplet

* [libraw] Add find lcms2 in the cmake wrapper file

Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2022-01-06 13:46:36 -08:00
autoantwort
1067658476
[soqt] no absolute paths (#22325) 2022-01-06 13:35:56 -08:00
autoantwort
eb21a77630
[qtdeclarative] no absolute paths (#22327)
* [qtdeclarative] no absolute paths

* add comment

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-06 13:34:16 -08:00
autoantwort
a091e59775
[numactl] no absolute paths (#22356) 2022-01-06 13:34:00 -08:00
JonLiu1993
9291a56c9f
[glfw3] update to version 3.3.6 (#22366)
* [GLFW3] update to 3.3.6

* update version
2022-01-06 13:23:30 -08:00
Veselin Karaganev
1ea0b48ddd
[refl-cpp] Update to 0.12.2 (#22374)
* Update refl-cpp to 0.12.2

* Update CI baseline
2022-01-06 13:23:10 -08:00
Szabolcs Horvát
ada85a50ea
[igraph] update to 0.9.6 (#22379)
* [igraph] update to 0.9.6

* [igraph] x-add-version

* [igraph] fix using internal PLFIT

* [igraph] x-add-version
2022-01-06 13:17:47 -08:00
winsoft666
18bf5235ee
[teemo] Update to v2.6 (#22384)
* [teemo] Update to v2.6

* [teemo] Update version.

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2022-01-06 13:16:54 -08:00
autoantwort
bafaf75be9
[wxwidgets] no absolute paths (#22334) 2022-01-06 13:05:08 -08:00
autoantwort
408ffb232c
[libuvc] no absolute paths (#22362) 2022-01-05 20:23:33 -08:00
autoantwort
bd930a1488
[clblas] no absolute paths (#22361) 2022-01-05 20:22:40 -08:00
autoantwort
26272a0c2f
[clrng] no absolute paths (#22360) 2022-01-05 20:22:16 -08:00
autoantwort
efd1d76b22
[clfft] no absolute paths (#22359) 2022-01-05 20:21:59 -08:00
autoantwort
17c788531c
[libmodman] no absolute paths (#22357) 2022-01-05 20:21:40 -08:00
autoantwort
e15bfe6867
[mygui] no absolute paths (#22355) 2022-01-05 20:21:18 -08:00
autoantwort
e902600fb9
[open62541] no absolute paths (#22352) 2022-01-05 20:20:41 -08:00
autoantwort
1c971e5be3
[openxr-loader] no absolute paths (#22351)
* [openxr-loader] no absolute paths

* [openxr-loader] no absolute paths
2022-01-05 20:20:25 -08:00
autoantwort
6127446f25
[marble] no absolute paths (#22346) 2022-01-05 20:19:52 -08:00
双草酸酯
b87c730e96
[fmt] update to 8.1.0 (#22349)
* [fmt] Upgrade to v8.1.0

* update version

* version-semver -> version

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-05 19:28:29 -08:00
Mengna Li
5c09112d26
[vulkan-headers/vulkan-hpp] update to v1.2.203 (#22364)
* update vulkan-headers and vulkan-hpp to v1.2.203

* change 'version-string' to 'version'

* version-semver -> version

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-05 18:42:59 -08:00
autoantwort
97f1cc1997
[glibmm] no absolute paths (#22337) 2022-01-05 18:42:21 -08:00
Jack·Boos·Yu
7de32f0237
[libraw] Add feature openmp and fix usage (#22336)
* [libraw] Add feature openmp and fix usage

* version

* Add missing code

* version
2022-01-05 18:22:05 -08:00
Akash
4bd3a11e79
[simbody] new port (#20565)
* Add simbody port

* Use newer vcpkg functions

* Fix cmake config path for unix

* Use patch file instead

* Fix tools path for unix

* Hard-code tools path

* Add freeglut dep

* Link to GLUT::GLUT

* Don't build visualization

* Fix static

* Fix static

* Update versions

* Fail for uwp

* Update baseline

* Apply suggestions from code review

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Add !uwp to vcpkg.json

* Fix static

* Test simbody PR on CI

* Try new ref

* Fix hash

* Fix osx

* Fix

* Update ref after upstream merge

* Update ports/simbody/portfile.cmake

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>

* Update version

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
2022-01-05 18:21:10 -08:00
Carlos O'Ryan
e0ac4450e4
[google-cloud-cpp] update to v1.35.0 (#22348) 2022-01-05 18:10:59 -08:00
Frank
b934807c79
[openImageIO] update to 2.3.10.1 (#22316)
* [openImageIO] update to 2.3.10.1

* update versions

* update version

* update patch

* update version

* update patch

* update patch

* update version
2022-01-04 20:09:28 -08:00
Be
f25991f650
[libkeyfinder] update to 2.2.6 (#22299)
This fixes a few issues with the pkgconfig and CMake package
config files.
2022-01-04 20:01:21 -08:00
Be
407bda38c1
[portmidi] update to 2.0.2 (#22312)
This removes the need for the patch to get portmidi to build on
macOS.
2022-01-04 20:00:50 -08:00
Mengna Li
f73ca51564
update boolinq to v3.0.4 (#22315) 2022-01-04 19:58:12 -08:00
Jack·Boos·Yu
b68f3cc7ec
[vcpkg baseline][urho3d] Fix dependency readline (#22321)
* [vcpkg baseline][urho3d] Fix dependency readline-osx

* format manifest

* version

* Add port readline-unix, convert build type to makefile, set readline-osx as a empty package

* version

* change dependency to readline-unix on non-Windows

* version

* Update ports/readline-unix/vcpkg.json

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
2022-01-04 19:57:18 -08:00
LilyWangLL
f2fa2feb0c
[hidapi] Fix cmake error (#22320)
* [hidapi] Fix cmake error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-01-04 19:56:55 -08:00
autoantwort
00b791920a
[kf5attica] no absolute paths (#22324) 2022-01-04 19:48:16 -08:00
autoantwort
f9b2095ff6
[sail] no absolute paths (#22326) 2022-01-04 19:48:02 -08:00
Kai Pastor
18816d8194
[gdal] Fix configuration bug (#22322)
* Fix configuration bug

* Update versions
2022-01-04 19:45:59 -08:00
autoantwort
a720cf5eba
[opencolorio] no absolute paths (#22332) 2022-01-04 16:55:56 -08:00
autoantwort
8f929a6212
[kf5windowsystem] no absolute paths (#22333) 2022-01-04 16:54:36 -08:00
kkzi
044f9b891f
[minio-cpp] add new port (#22242)
* [new port] minio-cpp v0.0.1

* fix with vcpkg x-add-version --all

* Update version database

* fix deprecated functions

* Update version database

* Update ports/minio-cpp/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* minio-cpp:x64-osx=fail

* Update version database

* add patch file

* Update version database

* Revert "minio-cpp:x64-osx=fail"

This reverts commit e296a672f5.

* we still want to install pkgconfig file

* fix version

Co-authored-by: xuan.guo@atomdatatech.com <xuan.guo@atomdatatech.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-04 15:31:36 -08:00
Pierre Bisaillon
f596d1656f
[ace] Modifications to generate the correct build files for x64-linux configuration (#22091)
* Update portfile.cmake

Modifications to generate the correct build files for x64-linux configuration

* Update portfile.cmake

* Modifications to generate the correct build files for x64-linux configuration

* Corrected version hash

* Update portfile.cmake

Tabs replaced by spaces

* Update ace.json

Update version database

* Apply suggestions from code review

* update versions

Co-authored-by: bisaillonp <Pierre.Bisaillon@ixiasoft.com>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2022-01-04 15:02:48 -08:00
Matthias Kuhn
aac7c6588b
[qca] new feature botan (#22227) 2022-01-04 15:02:13 -08:00
nicole mazzuca
7e3f9817bc
Revert "[qt-advanced-docking-system] update and use qt6 (#21998)" (#22350)
This reverts commit 91e1ce34a5.
2022-01-04 14:45:21 -08:00
Alexander Neumann
91e1ce34a5
[qt-advanced-docking-system] update and use qt6 (#21998)
* update port

* format-manifest

* version stuff

* version stuff

* fix arm windows

* version stuff
2022-01-04 14:42:55 -08:00
Max Khon
e2a2317755
[gettext] Fix tools build: (#22211)
msginit-msginit.obj : error LNK2019: unresolved external symbol __imp_optarg_a referenced in function main
.libs\msginit.exe : fatal error LNK1120: 1 unresolved externals
2022-01-04 12:24:50 -08:00
autoantwort
abf52dd1ad
[unixodbc] no absolute paths (#21572)
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2022-01-03 14:57:47 -08:00
Max Khon
c662463c24
[python3] Install pkg-config files on Windows platforms (#22198) 2022-01-03 14:24:11 -08:00
Neel Raiyani
c3dfd6ade0
[ftxui] update to 0.11 (#22293)
* update ftxui version

* update sha512

* update port vcpkg.json version-string

* remove redundant version string

* fix git-tree sha in version\ftxui.json

* Remove unnecessary port-version.

Co-authored-by: Billy O'Neal <bion@microsoft.com>
2022-01-03 14:13:03 -08:00
Kai Pastor
ee6c3f1bd5
[proj4] Update to 8.2.1 (#22283)
* Update proj to 8.2.1

* Fix formatting

* Use new BUILD_APPS option

* Update versions

* Add explicit nlohmann-json dependency

* Update versions

* Enforce consistent definition of PROJ_DLL

* Update versions

* [skip actions] CI
2022-01-03 13:56:02 -08:00
Be
4cd4324b91
[hidapi] update to 0.11.2 (#22304)
This implements hid_get_input_report with the Linux hidraw backend
plus fixes a few bugs on Windows.
2022-01-03 13:42:13 -08:00
Yury Bura
719254050a
[catch2] update to v2.13.8 (#22310)
* [catch2] update to v2.13.8

* update versions
2022-01-03 13:41:45 -08:00
LilyWangLL
2e18a52428
[magnum] Fix feature glfwapplication find glfw failed (#22272)
* [magnum] Fix feature glfwapplication find glfw failed

* update version

* update portfile.cmake

* update version

* update portfile.cmake

* update version

* update version

* update version

* More double quotes

* version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2022-01-03 13:24:17 -08:00
Be
c849f331d8
[portmidi] update to 2.0.1; add Linux support (#22256)
The original PortMidi author moved it to GitHub and made the first
release in many years. The build system now works without hacks.
2022-01-03 13:23:35 -08:00
Kai Pastor
cccfe836db
[gdal] Add features for hdf5, netcdf, postgresql (#21231)
* Revise configuration, avoid hidden dependencies

* Expose hdf5 and netcdf feature, fix static linkage

* Fix hdf5 pc files

* Add spatialite flag

* Update versions

* Expose feature platform dependencies

* Update versions

* Configure gdal for windows arm and arm64

* Add postgresql feature

* Update versions

* Update wrapper

* Update versions

* Update baseline

* [skip actions] CI

* Use pkgconfig for expat

* Update versions

* uwp is unsupported (comsuppw.lib, atls.lib)

* Update versions
2022-01-03 13:08:39 -08:00
Laurent Rineau
f4e258ac88
[cgal ] Update to 5.3.1 (#22235)
* Update to 5.3.1

* Add version

* Apply suggestions from the CI

* After `vcpkg format-manifest ports/cgal/vcpkg.json`

* add version

* Update versions

* Fix after suggestions from JonLiu1993

* Fix versions
2021-12-30 15:22:10 -08:00
autoantwort
46896e719f
[tensorflow(-cc)] no absolute paths (#22159) 2021-12-30 11:03:07 -08:00
klaus triendl
80f5b51ef5
[sqlite-orm] Update to 1.7.1 (#21996) (#22253)
Co-authored-by: klaus triendl <klaus.triendl@firedaemon.com>
2021-12-30 10:28:48 -08:00
Vitaly
303bac3e4c
[libgcrypt] Fix release only build (#22250)
* [libgcrypt] Fix release only build

* Update version database

* Removed deprecated call

* Update version database
2021-12-30 10:28:33 -08:00
Koby Kahane
7139d6c222
[rocksdb] Update to 6.27.3 (#22246)
* [rocksdb] Update to 6.27.3.

* delete PREFER_NINJA

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-12-30 10:27:59 -08:00
winsoft666
4446d54ab5
[teemo] Fix string replace error. (#22244)
* [cpp-ipc] Update 1.0.1

* [cpp-ipc] Update version and ci.baseline

* [cpp-ipc] Remove cpp-ipc from ci.baseline.txt

* [teemo] Update to v2.3

* [teemo] Run `vcpkg x-add-version --all`

* [teemo] Update vcpkg.json

* [teemo] Run vcpkg `x-add-version teemo --overwrite-version`

* Remove excess teemo.json

* [teemo] Update to v2.4

* [teemo] run ./vcpkg x-add-version --all

* [teemo] Update to v2.5

* [teemo] Update versions/t-/teemo.json

* [teemo] Fix string replace error.

* [teemo] Update port version.

* [teemo] Use port-version instead of appending #2.

* [teemo] Run 'vcpkg x-add-version --all'

* [teemo] Add maintainers.

* Update versions/t-/teemo.json

* Update versions/t-/teemo.json

* Update ports/teemo/vcpkg.json

* [teemo] Format vcpkg.json

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2021-12-30 09:52:00 -08:00
Kai Pastor
c943da1f0d
[vcpkg-cmake] Fix parallel cmake (#22124)
* New version

* Refactor build dir setup

* Start parallel cmake from build directory

* Update versions

* [skip actions] CI
2021-12-30 09:45:20 -08:00
Matthew Oliver
25a3fb2969
[ffmpeg] Update dependency support for recent changes. (#21980)
* [ffmpeg] Update dependency support for recent changes.

Updates for changes in commits:
7bb175e [aom/libavif] Add support for ARM and UWP
a8204d9 [fribidi] Support new platform

* update

* [ffmpeg] update x264 supports.

* Fix version database.

* update

* Update all platform checks and error messages

* Update vcpkg.json

* Update ffmpeg.json

* fixup osx.

* another osx fixup

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-30 09:41:58 -08:00
Laurent Rineau
95d4d067f0
[vcpkg] Fix vcpkg_cmake_config_fixup.cmake (#22236)
* Fix vcpkg_cmake_config_fixup.cmake

The PR #22235 exposed a bug in `vcpkg_cmake_config_fixup.cmake`, that
incorrectly preprends a string without a end-of-line. That creates
CMake syntax errors, like this one:

```
get_filename_component(VCPKG_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_DIR}/../../" ABSOLUTE)set(CGAL_ROOT ${VCPKG_IMPORT_PREFIX})
```

The fix is simple: add a `\n` at the end of the prepended string.

* format manifest

* Update versions
2021-12-29 13:19:10 -08:00
Cheney Wang
b11941140c
[libwebm] Install the public header files (#22189)
* [libwebm] Remove port's internal headers from installed folder

* [libwebm] Install public headers

* [libwebm] Resetting the file structure of libwebm/include and adding additional headers

Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-12-29 12:01:35 -08:00
autoantwort
dcb54b2af0
[fluidsynth] no absolute paths (#21715)
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-29 11:59:55 -08:00
wangao
363892de9c
fix(ports): use lib/cmake/mimalloc config path in mimalloc port file (#22238)
* fix(ports): use lib/cmake/mimalloc config path in vcpkg_cmake_config_fixup in mimalloc portfile.cmake

* chore(versions): update mimalloc port version

* chore(versions): update versions database
2021-12-29 11:29:15 -08:00
Thomas Willecomme
d54131d520
[libtiff] Switch to vcpkg_from_gitlab function (#22181)
Gitlab tends to be more reliable for some customers.

Co-authored-by: Thomas Willecomme <thomas.willecomme@teledyne.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-29 11:28:03 -08:00
Fabien Castan
5d44acbb91
[openimageio] do not install deprecated FindOpenImageIO (#21162)
* [openimageio] do not install deprecated FindOpenImageIO

OpenImageIO provides cmake Config/Target files, so there is no more need for a FindOpenImageIO.cmake.
This hides openimageio modules like OpenImageIO_Util.

* Remove wrapper

Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
2021-12-29 11:22:28 -08:00
NancyLi1013
df62d5cb36
[fluidsynth] Update to 2.2.4 (#20978)
* [fluidsynth] Update to 2.2.3

* Update patch

* EOL

* Change tool as a new feature

* version

* Remove code about CMAKE_EXECUTABLE_SUFFIX to fix linux build

* version

* update to 2.2.4, cleanup baseline, add supports keyword

* version

* Fix osx build

* version

* restore FEATURE_OPTIONS

* version

* Apply suggestions

* version

* Restore add_to_path in host triplet

* version

* Preserve log files for the build of make_tables.

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-29 11:20:49 -08:00
Erwan BERNARD
05c411da66
[libtess2] add libtess2 port (#22225)
* [libtess2] add port

* [libtess2] add version

* [libtess2] forgot project name

* [libtess2] case sensitive in paths

* [libtess2] update version with last sha

* Modernize with target_sources, add missing quotes, and add vcpkg_check_linkage since the port only makes a static output.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-28 19:00:10 -08:00
Johannes Schönberger
d843856f29
[libjpeg-turbo] Upgrade to 2.1.2 (#22156)
* Upgrade libjpeg-turbo to 2.1.2

* Update version files

* Update to latest vcpkg functions

* Format/version

* Fix

* Update ports/libjpeg-turbo/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* CR

* Fix version

* Update patch

* Fix

* Version

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-12-28 18:38:36 -08:00
yuehua.jia
92f4679cbd
[s2geometry] Add new port (#22107)
* [abseil] Upgrade to 2021.1102

* revert portfile.cmake

* update version

* update portfile.cmake

* update version

* [s2geometry] google s2 for for manipulating geometric shapes

* [libevent] no absolute paths (#21179)

* [Pcre2] Check if files exists before call vcpkg_replace_string. (#22003)

* Check if files exists before call vcpkg_replace_string.

* Update per comments.

Only guard debug.

* Update ports/pcre2/portfile.cmake

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* Bump port-version.

Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [lodepng] Fix cannot open include file "lodepng.h" (#22007)

* [lodepng] Fix cannot open include file "lodepng.h"

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [MyGUI] update to 3.4.1 (#22015)

* [MyGUI] update to 3.4.1

* update version

* [s2n] Update, add openssl dependency (#21484)

* Update to 1.3.0, add openssl dependency

* Add 'tests' feature

* Update versions

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* Libpq update and VCPKG_OSX_SYSROOT fix (#21583)

* [libpq] Update to 12.9

* [libpq] Use VCPKG_OSX_SYSROOT if set

otherwise configure set the default sysroot in addition, ignoring the
sysroot set by vcpkg_configure_cmake.

* [libpq] remove comment only chunks from patches

* [libpq] update version registry

* [qhttpengine] New port (#22009)

* [qhttpengine] New port

* Update version database

* Fix the format of portfile.cmake

* Fix the format of portfile.cmake

* update version

* Remove duplicate build_shared_libs setting.

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ xtensor-io ] Fix wrong hash (#22018)

* [xtensor-io] Fix wrong hash

* update version

* [vcpkg] Update VMs for December 2021 Patch Tuesday (#22013)

* Add Microsoft.VisualStudio.ComponentGroup.UWP.VC.BuildTools to VS as requested by https://github.com/microsoft/vcpkg/issues/19554

* Cherry pick python changes from https://github.com/microsoft/vcpkg/pull/21912

* Update linux pool.

* Update windows pool.

* [starlink] Veggiesaurus/starlink ast cminpack fix (#20559)

* add CMINPACK_NO_DLL flag back

* bump port version

* updated versions JSON

* quotation mark adjustment

* git-tree update

* adjusted c flags configuration

* hash update

* whitespace fix

* git-tree hash update

* updated to ast 9.2.5, added external-cminpack flag

* updated version hash

* removed old version entry

* removed $schema element from json

* updated port git-tree hash

* [libunifex] Update to 2021-12-07 (#21995)

* updated libunifex version

* remove comment

* run x-add-versions --all

* Update ports/libunifex/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* rerun x-add-version libunifex

* Update versions/l-/libunifex.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update libunifex to 12-07

* x-add-version

* libunifex port update

force cpp20 as cpp17 build doesn't work with msvc. added a compile fix for externConstexpr and removed warnings with /EHsc

* Update libunifex.json

version update

* Update fix-compile-error.patch

relax clang warnings

* Update libunifex.json

git x-add-version libunifex

* remove unused

* x-add-versions

* remove old version log

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [tensorflow] update to 2.7, including bazel latest 4.x update (#22022)

* Revert "incorporate changes from microsoft:master"

* Revert "Revert "incorporate changes from microsoft:master""

* update tensorflow to 2.7 and bazel to latest 4.x

* Update version database.

Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [hiredis] Fix static build (#22038)

* [hiredis] Fix static build

* Update version database

* [vcpkg baseline] Fix mpg123 build failed on Linux (#22028)

* [baseline] Fix mpg123 build failed on Linux

* update version

* Fix misspelled "module".

* Actually fix the misspelling this time Bill.

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [qt5-base] no _debug lib suffixes on macOS (#14225) (#21695)

* [qt5-base] no _debug lib suffixes on macOS (#14225)

* [qt5-base] patch qt5-base to remove _debug postfix on osx

* Apply suggestions from code review

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [qt5-base] create link to _debug.pc file from .pc file without _debug

* update version

* [qt5-base] create forward pkgconfig file

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [python3] Support arm (#21528)

* [python3] Support arm on non Windows

* Support arm on all platform, add host dependency

* version

* [pybind11] Add supports

* version

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>

* [openmvg] update to 2.0 (#22020)

* [openmvg] update to 2.0

* update version

* update patch

* update version

* [brynet] Update to 1.11.1 (#22021)

* brynet: upgrade to 1.11.1

* Update portfile.cmake

* Update brynet.json

* [graphicsmagick] update to version 1.3.37 (#22024)

* [graphicsmagick] update to version 1.3.37

* [graphicsmagick] manifest format

* [graphicsmagick] version database update

* [graphicsmagick] version-string -> version

* [graphicsmagick] version database update

* [meson] fix windows linker detection (#22032)

* fix meson linker detection .....

* bit of code cleanup in vcpkg_configure_meson

* forgot the version stuff

* put cmake back on path because meson is buggy as hell

* [libgpg-error] Release-only build support (#22036)

* [libgpg-error] Release-only build support

* Update version database

* Fix protfile spaces

* Update version database

* [elfutils] provide static or shared libraries correctly (#22055)

The logic for keeping the static or shared libraries according to
VCPKG_LIBRARY_LINKAGE was backwards, and it was providing shared
libraries when they should have been static, and vice versa.

* [gl3w] Use khrplatform.h from the egl-registry port (#22056)

* [gl3w] use khrplatform.h from the egl-registry port

The file was changed yesterday, invalidating the hash: KhronosGroup/EGL-Registry@57b4876de0.

* [gl3w] migrate to new functions from vcpkg-cmake{,-config}

* [gl3w] bump port version

* [caf] Update to 0.18.5 (#22046)

* [caf] Update to 0.18.5

* Remove setting of BUILD_SHARED_LIBS already handled by vcpkg_cmake_configure.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [gmsh] Add new port (#21896)

* add: gmsh

* add: versioning for gmsh.

* [gmsh] Re-factory code

* Fix install, remove some features due to lack required dependencies.

* version

* Do not support uwp officially

* version

* Update ports/gmsh/portfile.cmake

* Update versions/g-/gmsh.json

* Group the options

* version

* version

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [kf5] upgrade to 5.89 (#21890)

* [kf5*] Update to 5.89

* [kf5*] Update versions

* [kf5kio] update tag to rc2

* [kf5kio] update versions

* [kf5*] final 5.89 released

* [kf5*] update versions

* Clean up trailing whitespace and add quotes when naming .clang-format.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ompl] Add vcpkg_check_linkage (#21659)

* [ompl] Add vcpkg_check_linkage

* version

* version

* [pcl] Add feature apps, visualization, simulation, examples and add usage (#21788)

* [pcl] Add feature apps, visualization and examples

* version

* Add simulation

* Enable more apps, install examples, add usage

* format manifest file

* version

* set feature vtk as a alias for feature visualization

* version

* [activemq-cpp] Added missing libuuid dependency (#22059)

This is a mandatory dependency according to
https://github.com/apache/activemq-cpp/blob/master/README.txt

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++ (#22025)

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++

* Changed reference

* Update version database

* Fix hash

* Update version database

* Review changes and update lib version

* fixver

* Update version database

* Update version database 2

* Fix vcpkg deps

* Update version database

* [tensorflow-common] remove single quotes from vcpkg flags (#21869)

* [vcpkg_acquire_msys] Update bzip2 to 1.0.8-2

* [tensorflow-common] remove single quotes from vcpkg flags

They are escaped like '\'-mtune=native\''  which leads to a compiler error:
cc: error: unrecognized command line option '-mtune=native'
Set via: set(VCPKG_CXX_FLAGS "-mtune=native")

* [sdl2-mixer] Fix link mpg123 error (#22049)

* [sdl2-mixer] Fix link mpg123 error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [s2geometry]: new port

* [s2geometry]: new port

* [s2geometry]: new port

* [s2geometry]: new port

* [s2geometry] new port

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
Co-authored-by: Lars Glud <larshg@gmail.com>
Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
Co-authored-by: Kai Pastor <dg0yt@darc.de>
Co-authored-by: Daniel Schürmann <daschuer@mixxx.org>
Co-authored-by: Vitaly <v31337@gmail.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Angus Comrie <accomrie@gmail.com>
Co-authored-by: Li Zeyang <a.banknote@gmail.com>
Co-authored-by: Joachim Gehweiler <44170764+jgehw@users.noreply.github.com>
Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: IronsDu <irons.du@gmail.com>
Co-authored-by: Josue Andrade Gomes <josuegomes@gmail.com>
Co-authored-by: Clayton Wheeler <cswheeler@gmail.com>
Co-authored-by: Christian Fillion <cfillion@users.noreply.github.com>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: X.ZhaoMa <ma@arch.ethz.ch>
Co-authored-by: Dawid Wróbel <me@dawidwrobel.com>
2021-12-28 18:35:33 -08:00
kreuzerkrieg
7cbac84503
[eve] add eve library (#22179)
* add eve library

* add eve library

* add eve library

* Reindent portfile.cmake, use version-date, and rebuild version database.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-28 18:27:01 -08:00
Kai Pastor
3edde7d925
[plplot] Disable all language bindings but C++ (#22224)
* Disable all language bindings but C++

* Update versions
2021-12-28 17:59:01 -08:00
zekoz
7862c10c37
[readline] readline port builds for MacOS (#22000)
* [readline] New readline-osx port for MacOS

* Bump port-version of readline and fix version database.

* Remove unnecessary -D_CRT_SECURE_NO_WARNINGS.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-28 17:44:34 -08:00
wtywtykk
9502b2044d
[mathgl] Update to v2.5 (#22081)
* [mathgl] Update to v2.5 and apply fixes

* Update CI baseline
2021-12-28 15:11:14 -08:00
Jack·Boos·Yu
52f690ecc4
[mlpack] Add dependency boost-format to feature tools (#22210)
* [mlpack] Add dependency boost-format to feature tools

* version
2021-12-28 15:05:51 -08:00
yemreinci
8fd0679a9d
[rtaudio] update to v5.2.0 (#22205)
* update rtaudio to v5.2.0

* run x-add-versions
2021-12-28 15:05:29 -08:00
Charles Milette
1695bf690b
[wil] update (#22192)
* [wil] update

* [wil] update versions
2021-12-28 15:05:09 -08:00
JonLiu1993
d0920bbf7a
[live555] Fix install head failed (#22190)
* [live555] Fix install head failed

* update version

* update live555 to the latest version

* update version
2021-12-28 15:04:54 -08:00
Nick
31b4b855b1
[Gtkmm ] Update to 4.4.0 (#22187)
* Update Gtkmm to 4.4.0

Solves #22185

* Fixed Gtkmm Version Json

* [Gtkmm ] Update to 4.4.0

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-12-28 15:04:20 -08:00
Mengna Li
bb57cc63d3
[openvdb] update to 8.2.0 (#22184)
* update openvdb to 8.2.0

* merge fix-case-sensitive.patch to 0003-fix-cmake.patch

* update

* Add double quotes for the path
2021-12-28 15:04:06 -08:00
autoantwort
432ca4a275
[x264] builds on arm (#22182) 2021-12-28 15:03:23 -08:00
JonLiu1993
45358fa12a
[boolinq] update to 3.0.3 (#22177)
* [boolinq] update to 3.0.3

* update version
2021-12-28 15:03:05 -08:00
Alonso Schaich
76975f7381
[pango][pangomm] update to 1.50.3 and 1.50.0 (#22176)
* [pango] Update pango to 1.50.3 (microsoft#22174)

* [pangomm] Update pangomm to 1.50.0 (microsoft#22175)

Co-authored-by: Schaich <alonso.schaich@sodgeit.de>
2021-12-28 15:02:50 -08:00
autoantwort
511eee8ec6
[libpmemobj-cpp] no absolute paths (#21703) 2021-12-28 14:13:36 -08:00
autoantwort
29cc5024ae
[armadillo] no absolute paths (#21663) 2021-12-28 14:12:41 -08:00
Jack·Boos·Yu
2689f785c9
[vcpkg baseline][llvm] Fix feature tools (#22230)
* [vcpkg baseline][llvm] Fix feature tools

* Trigger CI test

* version

* Trigger CI

* Clean up
2021-12-28 13:25:38 -08:00
Jack·Boos·Yu
e1aaeb2356
[vcpkg baseline][many ports] Fix build failures (#22180)
* [vcpkg baseline][omplapp] Fix dependencies, add features

* version

* [sdformat9] Add the required dependency urdfdom-headers

* [ignition-math6] Fix build error

* version

* [botan] Fix the pkgconfig again

* version
2021-12-28 13:24:18 -08:00
LilyWangLL
ae91542c8e
[vcpkg baseline][uchardet] Fix download error (#22218)
* [vcpkg baseline][uchardet] Fix build error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2021-12-27 13:04:01 -08:00
Stefano Sinigardi
772fe6cbce
[giflib] use a vcpkg wrapper for cmake to circumvent bad cmake integrated module (#22141)
* [giflib] create wrapper to circumvent cmake module problems with giflib v5

* [giflib] fix references

* [giflib] remove unnecessary REQUIRED tags

* [giflib] fix references

* reduce wrapper to the minimum

* fix references
2021-12-22 22:55:57 -05:00
yuehua.jia
8d968a76e8
[Breakpad] fix cmake include install (#22130)
* [abseil] Upgrade to 2021.1102

* revert portfile.cmake

* update version

* update portfile.cmake

* update version

* [s2geometry] google s2 for for manipulating geometric shapes

* [libevent] no absolute paths (#21179)

* [Pcre2] Check if files exists before call vcpkg_replace_string. (#22003)

* Check if files exists before call vcpkg_replace_string.

* Update per comments.

Only guard debug.

* Update ports/pcre2/portfile.cmake

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* Bump port-version.

Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [lodepng] Fix cannot open include file "lodepng.h" (#22007)

* [lodepng] Fix cannot open include file "lodepng.h"

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [MyGUI] update to 3.4.1 (#22015)

* [MyGUI] update to 3.4.1

* update version

* [s2n] Update, add openssl dependency (#21484)

* Update to 1.3.0, add openssl dependency

* Add 'tests' feature

* Update versions

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* Libpq update and VCPKG_OSX_SYSROOT fix (#21583)

* [libpq] Update to 12.9

* [libpq] Use VCPKG_OSX_SYSROOT if set

otherwise configure set the default sysroot in addition, ignoring the
sysroot set by vcpkg_configure_cmake.

* [libpq] remove comment only chunks from patches

* [libpq] update version registry

* [qhttpengine] New port (#22009)

* [qhttpengine] New port

* Update version database

* Fix the format of portfile.cmake

* Fix the format of portfile.cmake

* update version

* Remove duplicate build_shared_libs setting.

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ xtensor-io ] Fix wrong hash (#22018)

* [xtensor-io] Fix wrong hash

* update version

* [vcpkg] Update VMs for December 2021 Patch Tuesday (#22013)

* Add Microsoft.VisualStudio.ComponentGroup.UWP.VC.BuildTools to VS as requested by https://github.com/microsoft/vcpkg/issues/19554

* Cherry pick python changes from https://github.com/microsoft/vcpkg/pull/21912

* Update linux pool.

* Update windows pool.

* [starlink] Veggiesaurus/starlink ast cminpack fix (#20559)

* add CMINPACK_NO_DLL flag back

* bump port version

* updated versions JSON

* quotation mark adjustment

* git-tree update

* adjusted c flags configuration

* hash update

* whitespace fix

* git-tree hash update

* updated to ast 9.2.5, added external-cminpack flag

* updated version hash

* removed old version entry

* removed $schema element from json

* updated port git-tree hash

* [libunifex] Update to 2021-12-07 (#21995)

* updated libunifex version

* remove comment

* run x-add-versions --all

* Update ports/libunifex/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* rerun x-add-version libunifex

* Update versions/l-/libunifex.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update libunifex to 12-07

* x-add-version

* libunifex port update

force cpp20 as cpp17 build doesn't work with msvc. added a compile fix for externConstexpr and removed warnings with /EHsc

* Update libunifex.json

version update

* Update fix-compile-error.patch

relax clang warnings

* Update libunifex.json

git x-add-version libunifex

* remove unused

* x-add-versions

* remove old version log

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [tensorflow] update to 2.7, including bazel latest 4.x update (#22022)

* Revert "incorporate changes from microsoft:master"

* Revert "Revert "incorporate changes from microsoft:master""

* update tensorflow to 2.7 and bazel to latest 4.x

* Update version database.

Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [hiredis] Fix static build (#22038)

* [hiredis] Fix static build

* Update version database

* [vcpkg baseline] Fix mpg123 build failed on Linux (#22028)

* [baseline] Fix mpg123 build failed on Linux

* update version

* Fix misspelled "module".

* Actually fix the misspelling this time Bill.

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [qt5-base] no _debug lib suffixes on macOS (#14225) (#21695)

* [qt5-base] no _debug lib suffixes on macOS (#14225)

* [qt5-base] patch qt5-base to remove _debug postfix on osx

* Apply suggestions from code review

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [qt5-base] create link to _debug.pc file from .pc file without _debug

* update version

* [qt5-base] create forward pkgconfig file

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [python3] Support arm (#21528)

* [python3] Support arm on non Windows

* Support arm on all platform, add host dependency

* version

* [pybind11] Add supports

* version

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>

* [openmvg] update to 2.0 (#22020)

* [openmvg] update to 2.0

* update version

* update patch

* update version

* [brynet] Update to 1.11.1 (#22021)

* brynet: upgrade to 1.11.1

* Update portfile.cmake

* Update brynet.json

* [graphicsmagick] update to version 1.3.37 (#22024)

* [graphicsmagick] update to version 1.3.37

* [graphicsmagick] manifest format

* [graphicsmagick] version database update

* [graphicsmagick] version-string -> version

* [graphicsmagick] version database update

* [meson] fix windows linker detection (#22032)

* fix meson linker detection .....

* bit of code cleanup in vcpkg_configure_meson

* forgot the version stuff

* put cmake back on path because meson is buggy as hell

* [libgpg-error] Release-only build support (#22036)

* [libgpg-error] Release-only build support

* Update version database

* Fix protfile spaces

* Update version database

* [elfutils] provide static or shared libraries correctly (#22055)

The logic for keeping the static or shared libraries according to
VCPKG_LIBRARY_LINKAGE was backwards, and it was providing shared
libraries when they should have been static, and vice versa.

* [gl3w] Use khrplatform.h from the egl-registry port (#22056)

* [gl3w] use khrplatform.h from the egl-registry port

The file was changed yesterday, invalidating the hash: KhronosGroup/EGL-Registry@57b4876de0.

* [gl3w] migrate to new functions from vcpkg-cmake{,-config}

* [gl3w] bump port version

* [caf] Update to 0.18.5 (#22046)

* [caf] Update to 0.18.5

* Remove setting of BUILD_SHARED_LIBS already handled by vcpkg_cmake_configure.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [gmsh] Add new port (#21896)

* add: gmsh

* add: versioning for gmsh.

* [gmsh] Re-factory code

* Fix install, remove some features due to lack required dependencies.

* version

* Do not support uwp officially

* version

* Update ports/gmsh/portfile.cmake

* Update versions/g-/gmsh.json

* Group the options

* version

* version

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [kf5] upgrade to 5.89 (#21890)

* [kf5*] Update to 5.89

* [kf5*] Update versions

* [kf5kio] update tag to rc2

* [kf5kio] update versions

* [kf5*] final 5.89 released

* [kf5*] update versions

* Clean up trailing whitespace and add quotes when naming .clang-format.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ompl] Add vcpkg_check_linkage (#21659)

* [ompl] Add vcpkg_check_linkage

* version

* version

* [pcl] Add feature apps, visualization, simulation, examples and add usage (#21788)

* [pcl] Add feature apps, visualization and examples

* version

* Add simulation

* Enable more apps, install examples, add usage

* format manifest file

* version

* set feature vtk as a alias for feature visualization

* version

* [activemq-cpp] Added missing libuuid dependency (#22059)

This is a mandatory dependency according to
https://github.com/apache/activemq-cpp/blob/master/README.txt

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++ (#22025)

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++

* Changed reference

* Update version database

* Fix hash

* Update version database

* Review changes and update lib version

* fixver

* Update version database

* Update version database 2

* Fix vcpkg deps

* Update version database

* [tensorflow-common] remove single quotes from vcpkg flags (#21869)

* [vcpkg_acquire_msys] Update bzip2 to 1.0.8-2

* [tensorflow-common] remove single quotes from vcpkg flags

They are escaped like '\'-mtune=native\''  which leads to a compiler error:
cc: error: unrecognized command line option '-mtune=native'
Set via: set(VCPKG_CXX_FLAGS "-mtune=native")

* [sdl2-mixer] Fix link mpg123 error (#22049)

* [sdl2-mixer] Fix link mpg123 error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [breakpad] fix include cmake install

* [breakpad] fix cmake include

* [breakpad] fix cmake include

* [breakpad] fix cmake include install

* [breakpad] fix cmake include install

* [breakpad]: fix cmake include install

* [breakpad]: fix cmake install include

* Function modernization

* update version

* update vcpkg.json

* update version

* update portfile.cmake

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
Co-authored-by: Lars Glud <larshg@gmail.com>
Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
Co-authored-by: Kai Pastor <dg0yt@darc.de>
Co-authored-by: Daniel Schürmann <daschuer@mixxx.org>
Co-authored-by: Vitaly <v31337@gmail.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Angus Comrie <accomrie@gmail.com>
Co-authored-by: Li Zeyang <a.banknote@gmail.com>
Co-authored-by: Joachim Gehweiler <44170764+jgehw@users.noreply.github.com>
Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: IronsDu <irons.du@gmail.com>
Co-authored-by: Josue Andrade Gomes <josuegomes@gmail.com>
Co-authored-by: Clayton Wheeler <cswheeler@gmail.com>
Co-authored-by: Christian Fillion <cfillion@users.noreply.github.com>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: X.ZhaoMa <ma@arch.ethz.ch>
Co-authored-by: Dawid Wróbel <me@dawidwrobel.com>
2021-12-22 22:55:05 -05:00
LilyWangLL
055684d93a
[libmysql] Fix could not find package config files (#22062)
* [libmysql] Fix could not find package config files

* update version

* [poco] Fix install PocoDataMySQL.lib

* update version

* [poco] Update portfile.cmake

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2021-12-22 22:53:44 -05:00
Jack·Boos·Yu
cfcd2fe2da
[highfive] Fix usage (#22150)
* [highfive] Fix usage

* version

* Re-fix

* version
2021-12-22 22:52:44 -05:00
autoantwort
b036464fef
[mlpack] no absolute paths (#22160) 2021-12-22 22:52:12 -05:00
Jack·Boos·Yu
93114e5776
[activemq-cpp] Add platform for dependency libuuid (#22151)
* [activemq-cpp] Add platform for dependency libuuid

* version
2021-12-22 22:51:25 -05:00
An Tao
6afdd9388b
[drogon] Update to 1.7.4 (#22016)
* [drogon] Update to 1.7.4

* add fs.patch

* fix redis feature

Co-authored-by: antao <antao@heart-forever.com>
2021-12-22 22:50:20 -05:00
Rémy Tassoux
db08f21cf3
[imgui] Update to 1.86 (#22161)
* [imgui] Update to 1.86

* [imgui] Update version files

Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
2021-12-22 22:49:45 -05:00
Kai Pastor
67e4272121
[pdcurses] Revise portfile (#22092)
* Use vcpkg_build_nmake

* Update versions

* Use INSTALLDIR

* Update versions
2021-12-22 00:03:46 -05:00
yuehua.jia
2c5479aac4
[mvfst ] : Add new port (#22111)
* [abseil] Upgrade to 2021.1102

* revert portfile.cmake

* update version

* update portfile.cmake

* update version

* [s2geometry] google s2 for for manipulating geometric shapes

* [libevent] no absolute paths (#21179)

* [Pcre2] Check if files exists before call vcpkg_replace_string. (#22003)

* Check if files exists before call vcpkg_replace_string.

* Update per comments.

Only guard debug.

* Update ports/pcre2/portfile.cmake

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* Bump port-version.

Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [lodepng] Fix cannot open include file "lodepng.h" (#22007)

* [lodepng] Fix cannot open include file "lodepng.h"

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [MyGUI] update to 3.4.1 (#22015)

* [MyGUI] update to 3.4.1

* update version

* [s2n] Update, add openssl dependency (#21484)

* Update to 1.3.0, add openssl dependency

* Add 'tests' feature

* Update versions

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* Libpq update and VCPKG_OSX_SYSROOT fix (#21583)

* [libpq] Update to 12.9

* [libpq] Use VCPKG_OSX_SYSROOT if set

otherwise configure set the default sysroot in addition, ignoring the
sysroot set by vcpkg_configure_cmake.

* [libpq] remove comment only chunks from patches

* [libpq] update version registry

* [qhttpengine] New port (#22009)

* [qhttpengine] New port

* Update version database

* Fix the format of portfile.cmake

* Fix the format of portfile.cmake

* update version

* Remove duplicate build_shared_libs setting.

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ xtensor-io ] Fix wrong hash (#22018)

* [xtensor-io] Fix wrong hash

* update version

* [vcpkg] Update VMs for December 2021 Patch Tuesday (#22013)

* Add Microsoft.VisualStudio.ComponentGroup.UWP.VC.BuildTools to VS as requested by https://github.com/microsoft/vcpkg/issues/19554

* Cherry pick python changes from https://github.com/microsoft/vcpkg/pull/21912

* Update linux pool.

* Update windows pool.

* [starlink] Veggiesaurus/starlink ast cminpack fix (#20559)

* add CMINPACK_NO_DLL flag back

* bump port version

* updated versions JSON

* quotation mark adjustment

* git-tree update

* adjusted c flags configuration

* hash update

* whitespace fix

* git-tree hash update

* updated to ast 9.2.5, added external-cminpack flag

* updated version hash

* removed old version entry

* removed $schema element from json

* updated port git-tree hash

* [libunifex] Update to 2021-12-07 (#21995)

* updated libunifex version

* remove comment

* run x-add-versions --all

* Update ports/libunifex/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* rerun x-add-version libunifex

* Update versions/l-/libunifex.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update libunifex to 12-07

* x-add-version

* libunifex port update

force cpp20 as cpp17 build doesn't work with msvc. added a compile fix for externConstexpr and removed warnings with /EHsc

* Update libunifex.json

version update

* Update fix-compile-error.patch

relax clang warnings

* Update libunifex.json

git x-add-version libunifex

* remove unused

* x-add-versions

* remove old version log

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [tensorflow] update to 2.7, including bazel latest 4.x update (#22022)

* Revert "incorporate changes from microsoft:master"

* Revert "Revert "incorporate changes from microsoft:master""

* update tensorflow to 2.7 and bazel to latest 4.x

* Update version database.

Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [hiredis] Fix static build (#22038)

* [hiredis] Fix static build

* Update version database

* [vcpkg baseline] Fix mpg123 build failed on Linux (#22028)

* [baseline] Fix mpg123 build failed on Linux

* update version

* Fix misspelled "module".

* Actually fix the misspelling this time Bill.

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [qt5-base] no _debug lib suffixes on macOS (#14225) (#21695)

* [qt5-base] no _debug lib suffixes on macOS (#14225)

* [qt5-base] patch qt5-base to remove _debug postfix on osx

* Apply suggestions from code review

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [qt5-base] create link to _debug.pc file from .pc file without _debug

* update version

* [qt5-base] create forward pkgconfig file

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [python3] Support arm (#21528)

* [python3] Support arm on non Windows

* Support arm on all platform, add host dependency

* version

* [pybind11] Add supports

* version

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>

* [openmvg] update to 2.0 (#22020)

* [openmvg] update to 2.0

* update version

* update patch

* update version

* [brynet] Update to 1.11.1 (#22021)

* brynet: upgrade to 1.11.1

* Update portfile.cmake

* Update brynet.json

* [graphicsmagick] update to version 1.3.37 (#22024)

* [graphicsmagick] update to version 1.3.37

* [graphicsmagick] manifest format

* [graphicsmagick] version database update

* [graphicsmagick] version-string -> version

* [graphicsmagick] version database update

* [meson] fix windows linker detection (#22032)

* fix meson linker detection .....

* bit of code cleanup in vcpkg_configure_meson

* forgot the version stuff

* put cmake back on path because meson is buggy as hell

* [libgpg-error] Release-only build support (#22036)

* [libgpg-error] Release-only build support

* Update version database

* Fix protfile spaces

* Update version database

* [elfutils] provide static or shared libraries correctly (#22055)

The logic for keeping the static or shared libraries according to
VCPKG_LIBRARY_LINKAGE was backwards, and it was providing shared
libraries when they should have been static, and vice versa.

* [gl3w] Use khrplatform.h from the egl-registry port (#22056)

* [gl3w] use khrplatform.h from the egl-registry port

The file was changed yesterday, invalidating the hash: KhronosGroup/EGL-Registry@57b4876de0.

* [gl3w] migrate to new functions from vcpkg-cmake{,-config}

* [gl3w] bump port version

* [caf] Update to 0.18.5 (#22046)

* [caf] Update to 0.18.5

* Remove setting of BUILD_SHARED_LIBS already handled by vcpkg_cmake_configure.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [gmsh] Add new port (#21896)

* add: gmsh

* add: versioning for gmsh.

* [gmsh] Re-factory code

* Fix install, remove some features due to lack required dependencies.

* version

* Do not support uwp officially

* version

* Update ports/gmsh/portfile.cmake

* Update versions/g-/gmsh.json

* Group the options

* version

* version

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [kf5] upgrade to 5.89 (#21890)

* [kf5*] Update to 5.89

* [kf5*] Update versions

* [kf5kio] update tag to rc2

* [kf5kio] update versions

* [kf5*] final 5.89 released

* [kf5*] update versions

* Clean up trailing whitespace and add quotes when naming .clang-format.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>

* [ompl] Add vcpkg_check_linkage (#21659)

* [ompl] Add vcpkg_check_linkage

* version

* version

* [pcl] Add feature apps, visualization, simulation, examples and add usage (#21788)

* [pcl] Add feature apps, visualization and examples

* version

* Add simulation

* Enable more apps, install examples, add usage

* format manifest file

* version

* set feature vtk as a alias for feature visualization

* version

* [activemq-cpp] Added missing libuuid dependency (#22059)

This is a mandatory dependency according to
https://github.com/apache/activemq-cpp/blob/master/README.txt

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++ (#22025)

* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++

* Changed reference

* Update version database

* Fix hash

* Update version database

* Review changes and update lib version

* fixver

* Update version database

* Update version database 2

* Fix vcpkg deps

* Update version database

* [tensorflow-common] remove single quotes from vcpkg flags (#21869)

* [vcpkg_acquire_msys] Update bzip2 to 1.0.8-2

* [tensorflow-common] remove single quotes from vcpkg flags

They are escaped like '\'-mtune=native\''  which leads to a compiler error:
cc: error: unrecognized command line option '-mtune=native'
Set via: set(VCPKG_CXX_FLAGS "-mtune=native")

* [sdl2-mixer] Fix link mpg123 error (#22049)

* [sdl2-mixer] Fix link mpg123 error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>

* [mvfst]: New port: a client and server implementation of IETF QUIC protocol in C++ by Facebook

* [mvfst]: New port: a client and server implementation of IETF QUIC protocol in C++ by Facebook

* [mvfst] new port

* [mvfst] New port

* Update ports/mvfst/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* [mvfst] new port

* [mvfst]: new port

* [mvfst] new port

* [mvfst] new port

* [mvfst]: new port

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
Co-authored-by: Lars Glud <larshg@gmail.com>
Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
Co-authored-by: Kai Pastor <dg0yt@darc.de>
Co-authored-by: Daniel Schürmann <daschuer@mixxx.org>
Co-authored-by: Vitaly <v31337@gmail.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Angus Comrie <accomrie@gmail.com>
Co-authored-by: Li Zeyang <a.banknote@gmail.com>
Co-authored-by: Joachim Gehweiler <44170764+jgehw@users.noreply.github.com>
Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: IronsDu <irons.du@gmail.com>
Co-authored-by: Josue Andrade Gomes <josuegomes@gmail.com>
Co-authored-by: Clayton Wheeler <cswheeler@gmail.com>
Co-authored-by: Christian Fillion <cfillion@users.noreply.github.com>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: X.ZhaoMa <ma@arch.ethz.ch>
Co-authored-by: Dawid Wróbel <me@dawidwrobel.com>
2021-12-21 23:26:45 -05:00
Daniel Marshall
c3d2f29edb
[entt] Update to 3.9.0 (#22147)
* [entt] Update to 3.9.0

* Update version files

* Migrate to new functions

* Update version
2021-12-21 23:20:36 -05:00
winsoft666
bfacc7c206
[teemo] Update to v2.5 (#22136)
* [cpp-ipc] Update 1.0.1

* [cpp-ipc] Update version and ci.baseline

* [cpp-ipc] Remove cpp-ipc from ci.baseline.txt

* [teemo] Update to v2.3

* [teemo] Run `vcpkg x-add-version --all`

* [teemo] Update vcpkg.json

* [teemo] Run vcpkg `x-add-version teemo --overwrite-version`

* Remove excess teemo.json

* [teemo] Update to v2.4

* [teemo] run ./vcpkg x-add-version --all

* [teemo] Update to v2.5

* [teemo] Update versions/t-/teemo.json

Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-12-21 23:20:09 -05:00
Mengna Li
2fee3d30d0
update cpr version to 1.7.2 (#22133) 2021-12-21 23:18:29 -05:00
Adrian Bibby Walther
0a365adc6e
[rapidcheck ] Update to 2021-12-20. (#22125)
* Updated rapidcheck to 2021-12-20.

* Updated version files.
2021-12-21 23:13:07 -05:00
Matthias Kuhn
1cd11e2ce7
[sqlite3] Fix .pc (#22121)
Android does not have -lpthread
2021-12-21 23:12:49 -05:00
Vitalii Koshura
16be0b49c8
[sentry-native] Update to 0.4.13 (#22119)
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
2021-12-21 23:11:16 -05:00
Dmitry Baryshev
769c6c15c7
[sail] Update to 0.9.0-pre19 (#22118)
* [sail] Update to 0.9.0-pre19

* [sail] vcpkg x-add-version --all --overwrite-version

* [sail] Remove vcpkg_fail_port_install

* [sail] vcpkg x-add-version --all --overwrite-version
2021-12-21 23:10:58 -05:00
Sewon Park
92adeffbce
[libsodium] Fix cross compile build (#22117) 2021-12-21 23:10:25 -05:00
Vladimir Voronin
4c820a2c33
[libdatachannel] update to 0.16.0 (#22048)
* update libdatachannel to 0.16.0

* update libdatachannel to 0.16.0

* delete port-version

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-12-21 23:06:10 -05:00
autoantwort
51fd3a879b
[libzen,libmediainfo] update and no absolute paths (#21171) 2021-12-21 23:05:32 -05:00
Jack·Boos·Yu
0fd31b9dbb
[vcpkg baseline][ffmpeg] Fix dependency alsa (#22110)
* [vcpkg baseline][ffmpeg] Fix dependency alsa

* version

* fix option name

* version

* Apply suggestion

* version
2021-12-20 23:55:52 -08:00
Arsen Tufankjian
cf43cf71c8
[Tracy Profiler] Add new port (#21826)
* Adding tracy port

* Formatting tracy port

* Tidying up the port

* Formatting again

* Making sure git-tree is correct

* Adding correct vcpkg dependencies

* Newline at file end again

* Update version database

* Making sure to mark tracy as not supporting x86 at all

* Updating version again

* Responding to feedback and double checking which builds will work

* Updating versions

* Tidying up some loose ends

* Updating port version again

* Removing port-version 1

* Removing tracy from ci baseline

* Removing unnecessary include copy

* Updating version

* Resolving feedback

* Updating version and formatting

* Version for the version god

* tweaking tracy supports

* Formatting and version

* Version

* Adding pthreads dependency to tracy for non-windows platforms

* Version
2021-12-20 11:43:09 -05:00
Josue Andrade Gomes
fc5cf19727
[ graphicsmagick ] Add Webp support feature (#22061)
* [graphicsmagick] add support to WebP format

* [graphicsmagick] port version update
2021-12-20 11:40:13 -05:00
autoantwort
2dc795b4e5
[libunifex] no absolute paths (#22098) 2021-12-20 11:37:23 -05:00
Adrian Bibby Walther
38b19b5718
[rapidcheck] Update rapidcheck to 2021-10-10 (#22100)
* Updated rapidcheck port to 2021-10-10.

* Further updated rapidcheck for pull request.

* Apparently I `x-add-version`ed wrong the first time.
2021-12-20 11:37:07 -05:00
winsoft666
7d561d789b
[teemo] Update to v2.4 (#22105)
* [cpp-ipc] Update 1.0.1

* [cpp-ipc] Update version and ci.baseline

* [cpp-ipc] Remove cpp-ipc from ci.baseline.txt

* [teemo] Update to v2.3

* [teemo] Run `vcpkg x-add-version --all`

* [teemo] Update vcpkg.json

* [teemo] Run vcpkg `x-add-version teemo --overwrite-version`

* Remove excess teemo.json

* [teemo] Update to v2.4

* [teemo] run ./vcpkg x-add-version --all

Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-12-20 11:36:34 -05:00
Marten Hentschel
ab2c9eadd3
[log4cxx] Update to 0.12.1 (#22065)
* [log4cxx] Update to 0.12.1

* Use version rather than version-string.

Co-authored-by: Hentschel, Marten <marten.hentschel@schoenhofer.de>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-20 11:36:17 -05:00
Ian Cook
0fcee5a2ab
[arrow] Update to 6.0.1 (#22084)
* Bump version to 6.0.1

* Update versions files
2021-12-20 11:35:39 -05:00
Kai Pastor
390f987093
[ncurses] Update (#22087)
* Update to 6.3

* Fix mingw

* Add ncurses usage

* Update versions
2021-12-20 11:35:06 -05:00
KOGA Mitsuhiro
be468cca75
[sqlcipher] bump version to 4.5.0 (#22089)
* [sqlcipher] bump version to 4.5.0

* fix hash
2021-12-20 11:34:29 -05:00
Adam Johnson
6dbe00f6c4
[python3] Fix feature deprecated-win7-support. (#22090)
* [python3] Fix deprecated-win7-support patch.

* x-add-version
2021-12-20 11:33:29 -05:00
Bill Avery
bc85a6310b
[cppgraphqlgen] Update to latest 4.0.0 release (#22071)
* [cppgraphqlgen] Update to latest 4.0.0 release

* [cppgraphqlgen] vcpkg x-add-version cppgraphqlgen

* [cppgraphqlgen] Replace deprecated vcpkg functions

* [cppgraphqlgen] Re-run vcpkg x-add-version

* Flag the x64-linux CI pipeline as known failure
2021-12-20 11:30:04 -05:00
autoantwort
9143670385
[cutelyst2] no absolute paths (#21574) 2021-12-20 11:26:58 -05:00
autoantwort
f2149f09f1
[qca] no absolute paths (#21571) 2021-12-20 11:26:20 -05:00
autoantwort
9205eec995
[quazip] no absolute paths (#21570) 2021-12-20 11:26:10 -05:00
Yury Bura
099507df39
[llvm] update to 13.0.0 (#20749)
* [llvm] update to 13.0.0

* add version

* [llvm] rework processing of the CMake packages

* update versions

* [llvm] return patch to fix config paths

* update version

* [llvm] allow to build Flang on Windows

* add version

* [llvm] temporary enable Flang by default for test

* update version

* [llvm] fix Flang installation

* update version

* [llvm] try to fix Flang build

* update version

* [llvm] remove Flang from defaults and use Perl path

* [halide] update to 13.0.0

* update versions

* [mesa] update to v21.2.5 and fix build with LLVM 13

* [llvm] use version

* update versions

* [opencv4] fix build with Halide 13

* update version

* update ci.baseline

* [halide] update usage file

* [llvm] update supports

* update versions

* [vcpkg-ci-llvm] add test port

* [vcpkg-ci-llvm] rework test port

* [vcpkg-ci-llvm] test more features

* [halide] update to v13.0.1

* update version

* [mesa] recover port version

* update versions

* [opencv4] update version

* update version

* Update opencv4.json

* [halide] update to v13.0.2 and fix usage

* update version

* Update ports/halide/portfile.cmake

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>

* update version

* enable LLVM ABI breaking checks to avoid Halide build fail

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2021-12-20 11:21:15 -05:00
Stefano Sinigardi
eff88baadc
[x64-windows-release] add a single config community triplet based on x64-windows and make it work on some ports (#15983)
* add a single config community triplet based on x64-windows

* add a failed port, otherwise mechanism does not support empty list

* add failures to baseline

* remove duplicate entry

* second round of failures added to baseline

* third round of regressions added to CI

* [ade] fix single-config builds

* [ade] update refs

* remove duplicate entries

* [unix2dos] restore eol in script file

* add even more ports now failing in singleConfig...

* [libjpeg-turbo] remove unnecessary check

* [libjpeg-turbo] fix references

* [baseline] restore check for ports that were added recently

* [libmodplug] enable single config triplets

* [tensorflow-common] enable single config triplets

* update baseline

* fix references

* remove wrong check for single config triplets

* fix references

* [ogre] fix single config builds

* [ogre] fix references

* [untested] force x64-windows-release as host triplet when testing x64-windows-release in CI

* fix

* [x264] fix for single config

* [x264] update refs

* [libffi] enable single config builds

* [libffi] update refs

* remove cli broken arguments

* [calceph] enable single-config builds

* [calceph] fix references

* [kf5config] enable single-config builds

* [kf5config] fix references

* [detours] enable single-config builds

* [detours] fix references

* [kf5*] enable single-config builds

* [kf5*] fix references

* fix

* kf5config fix reference

* trying again to force host triplet in CI

* [boost] fix for single-config builds

* [boost] update references

* fix

* [boost] update refs

* disable host triplet in ci because it's not necessary

* retrigger a build for ports previously failing

* remove host triplet in ci, not necessary anymore?

* make PR dry

* [tensorflow-common] bump version

* [tensorflow-common] fix references

* Fix version database for boost-modular-build-helper.

* fix references

* restore CRLF on some ports

* bump versions

* fix references

* bump port versions

* fix references

* boost-modular-build-helper: Reverted due to no changes.

detours, kf5config, kf5holidays, libbacktrace: Reverted due to only whitespace changes.
libffi: bumped port-version
libmodplug: reverted due to no functional changes
ogre, ogre-next: reverted due to incorrect case of "Debug" vs. "Release" already fixed in master.

And rebuilt version database.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-20 10:50:45 -05:00
LilyWangLL
50fd3d9957
[sdl2-mixer] Fix link mpg123 error (#22049)
* [sdl2-mixer] Fix link mpg123 error

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2021-12-17 13:39:42 -05:00
Daniel Schürmann
1bca1f0203
[tensorflow-common] remove single quotes from vcpkg flags (#21869)
* [vcpkg_acquire_msys] Update bzip2 to 1.0.8-2

* [tensorflow-common] remove single quotes from vcpkg flags

They are escaped like '\'-mtune=native\''  which leads to a compiler error:
cc: error: unrecognized command line option '-mtune=native'
Set via: set(VCPKG_CXX_FLAGS "-mtune=native")
2021-12-17 13:22:50 -05:00
Vitaly
ae163065b2
[optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++ (#22025)
* [optimus-cpp] New port: ID hashing and Obfuscation using Knuth's Algorithm for C++

* Changed reference

* Update version database

* Fix hash

* Update version database

* Review changes and update lib version

* fixver

* Update version database

* Update version database 2

* Fix vcpkg deps

* Update version database
2021-12-17 13:21:55 -05:00
Daniel Schürmann
d7208019fe
[activemq-cpp] Added missing libuuid dependency (#22059)
This is a mandatory dependency according to
https://github.com/apache/activemq-cpp/blob/master/README.txt
2021-12-17 12:09:39 -05:00
Jack·Boos·Yu
bacb25364e
[pcl] Add feature apps, visualization, simulation, examples and add usage (#21788)
* [pcl] Add feature apps, visualization and examples

* version

* Add simulation

* Enable more apps, install examples, add usage

* format manifest file

* version

* set feature vtk as a alias for feature visualization

* version
2021-12-17 12:07:21 -05:00
Jack·Boos·Yu
da94bc3ffc
[ompl] Add vcpkg_check_linkage (#21659)
* [ompl] Add vcpkg_check_linkage

* version

* version
2021-12-17 02:30:54 -05:00
Dawid Wróbel
ae01527798
[kf5] upgrade to 5.89 (#21890)
* [kf5*] Update to 5.89

* [kf5*] Update versions

* [kf5kio] update tag to rc2

* [kf5kio] update versions

* [kf5*] final 5.89 released

* [kf5*] update versions

* Clean up trailing whitespace and add quotes when naming .clang-format.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-17 02:29:39 -05:00
X.ZhaoMa
9dea7a60d6
[gmsh] Add new port (#21896)
* add: gmsh

* add: versioning for gmsh.

* [gmsh] Re-factory code

* Fix install, remove some features due to lack required dependencies.

* version

* Do not support uwp officially

* version

* Update ports/gmsh/portfile.cmake

* Update versions/g-/gmsh.json

* Group the options

* version

* version

Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2021-12-17 02:22:33 -05:00
Phoebe
a91bc0c2d4
[caf] Update to 0.18.5 (#22046)
* [caf] Update to 0.18.5

* Remove setting of BUILD_SHARED_LIBS already handled by vcpkg_cmake_configure.

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-16 23:03:43 -08:00
Christian Fillion
42ef1e94f0
[gl3w] Use khrplatform.h from the egl-registry port (#22056)
* [gl3w] use khrplatform.h from the egl-registry port

The file was changed yesterday, invalidating the hash: KhronosGroup/EGL-Registry@57b4876de0.

* [gl3w] migrate to new functions from vcpkg-cmake{,-config}

* [gl3w] bump port version
2021-12-16 22:57:45 -08:00
Clayton Wheeler
36e3205c67
[elfutils] provide static or shared libraries correctly (#22055)
The logic for keeping the static or shared libraries according to
VCPKG_LIBRARY_LINKAGE was backwards, and it was providing shared
libraries when they should have been static, and vice versa.
2021-12-16 22:56:56 -08:00
Vitaly
d31b8a6fe3
[libgpg-error] Release-only build support (#22036)
* [libgpg-error] Release-only build support

* Update version database

* Fix protfile spaces

* Update version database
2021-12-16 22:48:10 -08:00
Alexander Neumann
8060230922
[meson] fix windows linker detection (#22032)
* fix meson linker detection .....

* bit of code cleanup in vcpkg_configure_meson

* forgot the version stuff

* put cmake back on path because meson is buggy as hell
2021-12-16 22:47:16 -08:00
Josue Andrade Gomes
7267752414
[graphicsmagick] update to version 1.3.37 (#22024)
* [graphicsmagick] update to version 1.3.37

* [graphicsmagick] manifest format

* [graphicsmagick] version database update

* [graphicsmagick] version-string -> version

* [graphicsmagick] version database update
2021-12-16 22:45:50 -08:00
IronsDu
81c0acae22
[brynet] Update to 1.11.1 (#22021)
* brynet: upgrade to 1.11.1

* Update portfile.cmake

* Update brynet.json
2021-12-16 22:45:25 -08:00
Frank
904933339b
[openmvg] update to 2.0 (#22020)
* [openmvg] update to 2.0

* update version

* update patch

* update version
2021-12-16 22:45:03 -08:00
NancyLi1013
4b35e71e92
[python3] Support arm (#21528)
* [python3] Support arm on non Windows

* Support arm on all platform, add host dependency

* version

* [pybind11] Add supports

* version

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2021-12-16 22:20:11 -08:00
yuehua.jia
aa24b585e1
[abseil] Upgrade to 2021.1102 (#22017)
* [abseil] Upgrade to 2021.1102

* revert portfile.cmake

* update version

* update portfile.cmake

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-12-16 15:52:45 -08:00
autoantwort
0d0547a3d8
[qt5-base] no _debug lib suffixes on macOS (#14225) (#21695)
* [qt5-base] no _debug lib suffixes on macOS (#14225)

* [qt5-base] patch qt5-base to remove _debug postfix on osx

* Apply suggestions from code review

Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>

* [qt5-base] create link to _debug.pc file from .pc file without _debug

* update version

* [qt5-base] create forward pkgconfig file

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
2021-12-16 09:00:16 -08:00
LilyWangLL
24c6283930
[vcpkg baseline] Fix mpg123 build failed on Linux (#22028)
* [baseline] Fix mpg123 build failed on Linux

* update version

* Fix misspelled "module".

* Actually fix the misspelling this time Bill.

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-16 01:16:32 -05:00
Vitaly
977c4b612d
[hiredis] Fix static build (#22038)
* [hiredis] Fix static build

* Update version database
2021-12-15 10:58:34 -08:00
Joachim Gehweiler
e92dfa5c01
[tensorflow] update to 2.7, including bazel latest 4.x update (#22022)
* Revert "incorporate changes from microsoft:master"

* Revert "Revert "incorporate changes from microsoft:master""

* update tensorflow to 2.7 and bazel to latest 4.x

* Update version database.

Co-authored-by: jgehw <Joachim_Gehweiler@McAfee.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-15 10:09:54 -08:00
Li Zeyang
4ffe8b020f
[libunifex] Update to 2021-12-07 (#21995)
* updated libunifex version

* remove comment

* run x-add-versions --all

* Update ports/libunifex/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* rerun x-add-version libunifex

* Update versions/l-/libunifex.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update libunifex to 12-07

* x-add-version

* libunifex port update

force cpp20 as cpp17 build doesn't work with msvc. added a compile fix for externConstexpr and removed warnings with /EHsc

* Update libunifex.json

version update

* Update fix-compile-error.patch

relax clang warnings

* Update libunifex.json

git x-add-version libunifex

* remove unused

* x-add-versions

* remove old version log

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-14 20:56:53 -08:00
Angus Comrie
6b82b233cd
[starlink] Veggiesaurus/starlink ast cminpack fix (#20559)
* add CMINPACK_NO_DLL flag back

* bump port version

* updated versions JSON

* quotation mark adjustment

* git-tree update

* adjusted c flags configuration

* hash update

* whitespace fix

* git-tree hash update

* updated to ast 9.2.5, added external-cminpack flag

* updated version hash

* removed old version entry

* removed $schema element from json

* updated port git-tree hash
2021-12-14 20:56:11 -08:00
JonLiu1993
40a560655a
[ xtensor-io ] Fix wrong hash (#22018)
* [xtensor-io] Fix wrong hash

* update version
2021-12-14 12:57:42 -08:00
Vitaly
a0a866ac68
[qhttpengine] New port (#22009)
* [qhttpengine] New port

* Update version database

* Fix the format of portfile.cmake

* Fix the format of portfile.cmake

* update version

* Remove duplicate build_shared_libs setting.

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-14 11:27:43 -08:00
Daniel Schürmann
01a065a970
Libpq update and VCPKG_OSX_SYSROOT fix (#21583)
* [libpq] Update to 12.9

* [libpq] Use VCPKG_OSX_SYSROOT if set

otherwise configure set the default sysroot in addition, ignoring the
sysroot set by vcpkg_configure_cmake.

* [libpq] remove comment only chunks from patches

* [libpq] update version registry
2021-12-14 10:59:38 -08:00
Kai Pastor
4c6a7e590d
[s2n] Update, add openssl dependency (#21484)
* Update to 1.3.0, add openssl dependency

* Add 'tests' feature

* Update versions

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-14 10:49:00 -08:00
Frank
a674f79ce9
[MyGUI] update to 3.4.1 (#22015)
* [MyGUI] update to 3.4.1

* update version
2021-12-14 10:47:59 -08:00
LilyWangLL
dcde522901
[lodepng] Fix cannot open include file "lodepng.h" (#22007)
* [lodepng] Fix cannot open include file "lodepng.h"

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2021-12-14 10:47:00 -08:00
Lars Glud
404819d78f
[Pcre2] Check if files exists before call vcpkg_replace_string. (#22003)
* Check if files exists before call vcpkg_replace_string.

* Update per comments.

Only guard debug.

* Update ports/pcre2/portfile.cmake

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* Bump port-version.

Co-authored-by: GLUD Lars <lars.glud@leica-geosystems.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-14 10:46:50 -08:00
autoantwort
1e1ed5d16b
[libevent] no absolute paths (#21179) 2021-12-14 10:46:37 -08:00
Joachim Gehweiler
a9ff505c5b
[vcpkg baseline][tensorflow] setup python venv and update Linux VMs (#21912)
* Revert "incorporate changes from microsoft:master"

* Revert "Revert "incorporate changes from microsoft:master""

* preliminary approach to solve pip issue

* fix python venv

* fix macOS build command again

* bump version

* x-add-version

* Fix spelling of prerequisites.

* Add python3-venv

* Update linux pool.

Co-authored-by: Joachim Gehweiler <joachim@Joachims-iMac.local>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-13 17:46:40 -08:00
Billy O'Neal
d31efec576
[osgearth] Change blend2d dependency to use the blend2d target (#21977)
* [osgearth] Change blend2d dependency to use the blend2d target and add missing dependency.

* Add quotes around 'dynamic', as requested by dg0yt

* Use CONFIG for blend2d, and combine with make-all-find-packages-required patch, as requested by @JackBoosY.
2021-12-13 17:21:14 -08:00
Alexander Neumann
f9bcf2e650
[kddockwidgets] new port (#21989)
* add kddockwidgets

* format manifest

* version stuff

* switch to vcpkg_cmake_*  and add patch

* version stuff

* add crosscompiliation code for arm windows

* version stuff

* remove prefer ninja

* version stuff
2021-12-13 13:00:20 -08:00
sean
7c2cbf1f53
[vk-bootstrap] New port (#21949) 2021-12-13 12:49:27 -08:00
Sheen Tian
633f3e0c13
[mmloader]Update mmloader to v1.0.1 (#22004)
* Update mmloader to v1.0.1

* Update mmloader version

- fixed compile errors of tools project

* Add version data

* Update ports/mmloader/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update version data

* update mmloader.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-12-13 12:29:05 -08:00
eao197
d55bb700e5
[json_dto] Update to v.0.3.0 (#22002)
* json-dto updated to v.0.3.0

* json-dto v.0.3.0 added to the mainline.
2021-12-13 12:28:32 -08:00
Michael R. P. Ragazzon
3948e3db40
[rmlui] Update to version 4.3 (#21987) 2021-12-13 12:28:08 -08:00
Vitaly
2abab10a08
[libuuid] Fix wrong pkg-config installation (#21970) (#21972)
* [libuuid] Fix wrong pkg-config installation (#21970)

* update port version

* Update version database
2021-12-13 12:23:30 -08:00
Rémy Tassoux
c5c3764a54
[robin-hood-hashing] Update to 3.11.4 (#21971)
* [robin-hood-hashing] Update to 3.11.4

* [robin-hood-hashing] Update version files

Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
2021-12-13 12:22:51 -08:00
An Tao
209e254d54
[trantor] Update to 1.5.4 (#21969)
* [trantor] Update to 1.5.4

* format
2021-12-13 12:22:33 -08:00
Vitaly
3989093626
[qtkeychain] Support to build with less dependencies (#21965)
* [qtkeychain] Support to build with less dependencies

* Update version database
2021-12-13 12:22:14 -08:00
Taiguara Tupinambás
20baa6a5c2
[xtensor-io ] updates to 0.13.0 (#21946)
* updates xtensor-io to 0.13.0

* Update ports/xtensor-io/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* update version

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-12-13 11:56:08 -08:00
Frank
4c77ec5486
[exiv2] update to 0.27.5 (#21941)
* [exiv2] update to 0.27.5

* update version

* update version

* update patch

* update version

* update fix-ninja-error.patch

* update version

* delete the patch

* update version

* Fix find_expat of xmp in feature

* update version

* update name

* update version

* update patch

* update version
2021-12-13 11:55:50 -08:00
Jack·Boos·Yu
1ac3a7f078
[wil] Fix usage (#21151)
* [wil] Fix usage

* version

* Apply suggestions

* version
2021-12-13 11:47:30 -08:00
JonLiu1993
18bd17c0f2
[dlib] update to <19.22> (#17301)
* [dlib] update to <19.22>

* update version

* update version

* revert patch format

* update version

* Use cmake new functions

* update version
2021-12-13 11:26:16 -08:00
Billy O'Neal
fdb170fda2
[rsocket] Use C++17. (#21978)
Resolves CI failure:

```
C:\PROGRA~2\MICROS~3\2019\ENTERP~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe   /TP -DBOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE -DDEBUG -DFMT_LOCALE -DGFLAGS_DLL_DECLARE_FLAG="" -DGFLAGS_DLL_DEFINE_FLAG="" -DGFLAGS_IS_A_DLL=0 -DGLOG_NO_ABBREVIATED_SEVERITIES -DGOOGLE_GLOG_DLL_DECL="" -DNOMINMAX -DWIN32_LEAN_AND_MEAN -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_SCL_SECURE_NO_WARNINGS -D_STL_EXTRA_DISABLED_WARNINGS="4774 4987" -ID:\buildtrees\rsocket\src\3daa230e14-e3a6381b1c.clean -ID:\buildtrees\rsocket\src\3daa230e14-e3a6381b1c.clean\yarpl\.. -ID:\installed\x64-windows-static\include /nologo /DWIN32 /D_WINDOWS /W3 /utf-8 /GR /EHsc /MP  /D_DEBUG /MTd /Z7 /Ob0 /Od /RTC1  /EHs /GF /Zc:referenceBinding /Zc:rvalueCast /Zc:implicitNoexcept /Zc:strictStrings /Zc:threadSafeInit /Zc:throwingNew /permissive- /std:c++17 /wd4191 /wd4291 /wd4309 /wd4310 /wd4366 /wd4587 /wd4592 /wd4628 /wd4723 /wd4724 /wd4868 /wd4996 /wd4068 /wd4091 /wd4146 /wd4800 /wd4018 /wd4365 /wd4388 /wd4389 /wd4100 /wd4459 /wd4505 /wd4701 /wd4702 /wd4061 /wd4127 /wd4200 /wd4201 /wd4296 /wd4316 /wd4324 /wd4355 /wd4371 /wd4435 /wd4514 /wd4548 /wd4571 /wd4574 /wd4582 /wd4583 /wd4619 /wd4623 /wd4625 /wd4626 /wd4643 /wd4647 /wd4668 /wd4706 /wd4710 /wd4711 /wd4714 /wd4820 /wd5026 /wd5027 /wd5031 /wd5045 /we4099 /we4129 /we4566 -std:c++14 /showIncludes /FoCMakeFiles\ReactiveSocket.dir\rsocket\internal\ScheduledSingleSubscription.cpp.obj /FdCMakeFiles\ReactiveSocket.dir\ReactiveSocket.pdb /FS -c D:\buildtrees\rsocket\src\3daa230e14-e3a6381b1c.clean\rsocket\internal\ScheduledSingleSubscription.cpp
cl : Command line warning D9025 : overriding '/std:c++17' with '/std:c++14'
D:\installed\x64-windows-static\include\folly/portability/Windows.h(42): warning C4005: '_CRT_INTERNAL_NONSTDC_NAMES': macro redefinition
C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt\corecrt.h(401): note: see previous definition of '_CRT_INTERNAL_NONSTDC_NAMES'
D:\installed\x64-windows-static\include\range/v3/detail/config.hpp(225): fatal error C1189: #error:  range-v3 requires Visual Studio 2019 with the /std:c++17 (or /std:c++latest) and /permissive- options.
ninja: build stopped: subcommand failed.
```
2021-12-12 19:31:37 -08:00
David Federman
48bba4f9c3
[python3] Fix SHA512 hash for v3.10.1 (#21979) 2021-12-10 20:48:52 -08:00
zhiqiang
a8204d987c
[fribidi] Support new platform (#21948)
* [fribidi] use vcpkg_configure_make instead of vcpkg_configure_meson

* [fribidi] support platform `arm`

* [fribidi] remove dependency `vcpkg-tool-meson`

* [fribidi] vcpkg x-add-version --all --overwrite-version

* Revert "[fribidi] vcpkg x-add-version --all --overwrite-version"

This reverts commit c824e8e6ca.

* [fribidi] update port-version to 2

* [fribidi] vcpkg x-add-version --all --overwrite-version
2021-12-10 15:57:46 -08:00
JonLiu1993
5420dab932
[highfive] Add eigen3 feature option (#21897)
* [highfive] Add eigen3 feature option

* update version

* update version

* dd double quotes to the paths

* update version

* apply review suggestion

* update version

* update review suggesstion

* update version

* update patches

* update version

* update patches

* update version
2021-12-10 14:06:16 -08:00
Jack·Boos·Yu
d3cb28e98e
[mongo-cxx-driver] Fix installation (#21958)
* [mongo-cxx-driver] Fix installation

* version
2021-12-10 14:05:01 -08:00
LilyWangLL
c6e208fccf
[mpfr] Add warning message on Linux (#21940)
* [mpfr] Add warning message on Linux

* update version

* Update portfile.cmake

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2021-12-10 14:01:15 -08:00
LiarMaiq
31bf0e4a36
[co] update to version v2.0.3 (#21915)
* Update vcpkg.json

* Update portfile.cmake

* Update baseline.json

* Update co.json

* Update ports/co/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Update ports/co/vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Run ”x-add-version co“ command

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-12-10 14:00:45 -08:00
David Federman
ec316f8fac
[python3] Update to 3.10.1 (#21927) 2021-12-10 13:58:11 -08:00
Kai Pastor
207af1c995
[vcpkg-cmake] Fix windows toolchain chainloading for uwp (#21857)
* Fix uwp toolchain chainloading

* Use common definitions

* Update versions

* [netcdf-c] Fix uwp compiler flags

* Update versions

* [skip actions] CI

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-10 13:55:24 -08:00
Jack·Boos·Yu
f315deab8d
[tesseract] Fix non-Windows build (#21320)
* [tesseract] Fix non-Windows build

* version

* apply suggestion

* version
2021-12-10 13:51:47 -08:00
NancyLi1013
36c0baf755
[mlpack] Fix supports (#21316)
* [mlpack] fix supports

* Update ports/mlpack/portfile.cmake

* fix typo

* version

Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2021-12-10 13:51:15 -08:00
LilyWangLL
5c54cc0655
[v8] Fix link error (#21933)
* [v8] Fix link error

* update version

* [v8]Update portfile.cmake

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2021-12-09 21:01:18 -08:00