aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-09-10[fontconfig] update to 2.13.94 (#19285)autoantwort
2021-09-09[civetweb] Update to version 1.15 (#20078)Gregor Jasny
2021-09-09[functions-framework-cpp] update to latest version (v1.0.0) (#20071)Carlos O'Ryan
2021-09-09[approval-tests-cpp] Update to 10.12.0 (#20058)Llewellyn Falco
* [approval-tests-cpp] Update to 10.12.0 * [approval-tests-cpp] Update to 10.12.0
2021-09-09[sail] Update to 0.9.0-pre16 (#20046)Dmitry Baryshev
* [sail] Update to v0.9.0-pre16 * [sail] vcpkg x-add-version --all * [sail] Update git REPO * [sail] vcpkg x-add-version --all --overwrite-version
2021-09-09[azure-sdk-for-cpp] Storage Sept Release (#20037)Azure SDK Bot
* [azure-storage-blobs-cpp] Update to 12.2.0 ## 12.2.0 (2021-09-08) ### Breaking Changes - `StartsOn` and `ExpiresOn` in `SignedIdentifier` were changed to nullable. ### Bugs Fixed - Fixed a bug where prefix cannot contain `&` when listing blobs. ### Other Changes - Create less threads if there isn't too much data to transfer. * [azure-storage-files-datalake-cpp] Update to 12.2.0 ## 12.2.0 (2021-09-08) ### Breaking Changes - `StartsOn` and `ExpiresOn` in `SignedIdentifier` were changed to nullable. ### Bugs Fixed - Fixed a bug where prefix cannot contain `&` when listing files. ### Other Changes - Create less threads if there isn't too much data to transfer. * [azure-storage-files-shares-cpp] Update to 12.2.0 ## 12.2.0 (2021-09-08) ### Breaking Changes - `AccessPolicy::StartsOn` and `AccessPolicy::ExpiresOn` are now nullable values. ### Bugs Fixed - Fixed a bug where prefix cannot contain `&` when listing files. ### Other Changes - Create less threads if there isn't too much data to transfer. * [azure-storage-queues-cpp] Update to 12.0.0-beta.1 ## 12.0.0-beta.1 (2021-09-08) ### New Features - Added support for Queue features: - QueueServiceClient::ListQueues - QueueServiceClient::SetProperties - QueueServiceClient::GetProperties - QueueServiceClient::GetStatistics - QueueServiceClient::CreateQueue - QueueServiceClient::DeleteQueue - QueueClient::Create - QueueClient::Delete - QueueClient::GetProperties - QueueClient::SetMetadata - QueueClient::GetAccessPolicy - QueueClient::SetAccessPolicy - QueueClient::EnqueueMessage - QueueClient::ReceiveMessages - QueueClient::PeekMessages - QueueClient::UpdateMessage - QueueClient::DeleteMessage - QueueClient::ClearMessages - Added support for queue SAS. * [azure-storage-common-cpp] Update to 12.2.0 ## 12.2.0 (2021-09-08) ### Features Added - Used new xml library on Windows, dropped dependency for libxml2. ### Bugs Fixed - Fixed a bug that may cause crash when parsing XML.
2021-09-09[usrsctp] update to 0.9.5.0 (#20028)autoantwort
2021-09-09[kf5i18n] static builds fixes (#20016)Dawid Wróbel
* [kf5i18n] fix libiconv transient dependency * [kf5i18n] update versions
2021-09-09[nng] Update to v1.5.1 (#19478)myd7349
* [nng] Update to v1.5.1 * [nng] Bump version * [nng] Quote source path * [nng] Bump version
2021-09-09[uthash] Add new port (#19823)myd7349
* [uthash] Add new port * [uthash] Version stuffs
2021-09-09[sqlite3] update to 3.36.0 (#19847)JonLiu1993
* [sqlite3] update to 3.36.0 * update version
2021-09-09[openimageio] Fix find and use dependencies (#19916)Jack·Boos·Yu
* [openimageio] Fix find and use dependencies * version * Restore FindOpenEXR.cmake * version * Update ports/openimageio/portfile.cmake * Update versions/o-/openimageio.json * Re-make patch * version * Update versions/o-/openimageio.json * Update ports/openimageio/portfile.cmake * version
2021-09-09[freeimage] Enable version information in FreeImage.dll (#19610)NancyLi1013
* [freeimage] Add version in FreeImage.dll * Add version files Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-09[meson] fix cross compiling from linux to windows (#18927)autoantwort
* [meson] fix cross compiling from linux to windows * Fix mingw system name * Omit empty fields from standard libraries * Use VCPKG_CROSSCOMPILING * vcpkg_configure_meson: do not double escape include paths * vcpkg_configure_meson: set winres instead of rc * vcpkg_configure_meson: do not always cross build * Apply suggestions from code review * fix the issue I made * [meson] error when gcc uses a different linker executeable * [meson] apply code review from strega-nil * [meson] more verbose error messages * [meson] remove wrong check Co-authored-by: Kai Pastor <dg0yt@darc.de> Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com> Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2021-09-09[angle] Enable ANGLE's desktop GL backend (#19891)Chris Djali
* Enable ANGLE's desktop GL backend Only the D3D and GLES backends were available, but getting desktop GL to work is trivial. The Vulkan backend would be a much bigger task, unfortunately. * x-add-version Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` function Convert-Control { Param($full) .\vcpkg.exe format-manifest $full $root = $full.Substring(0, $full.Length - 7) # CONTROL $new = $root + 'vcpkg.json' $content = Get-Content -Raw $new $asJson = ConvertFrom-Json $content -AsHashtable -Depth 100 $oldVersion = $asJson['port-version'] if ($null -eq $oldVersion) { $oldVersionFull = $asJson['version-string'] Write-Host "Got version $oldVersionFull" $match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$') if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) { $newFullVersion = [string]$match.Groups[1].Value $oldVersion = [int]$match.Groups[2].Value Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion" $newVersion = $oldVersion + 1 $asJson['version-string'] = $newFullVersion Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion" } else { Write-Host "No previous version for $full -- setting 1" $newVersion = 1 } } else { $newVersion = [int]$oldVersion + 1 Write-Host "New version for $full : $newVersion" } $asJson['port-version'] = $newVersion $content = ConvertTo-Json $asJson -Depth 100 Set-Content -Path $new -Value $content .\vcpkg.exe format-manifest $new } Get-ChildItem ports\CONTROL -Recurse | Foreach-Object { Convert-Control $_.FullName } git commit -am "this message" .\vcpkg.exe x-add-version -all git commit -a --amend ```
2021-09-08[azure-core-cpp] Update to 1.2.1 (#19943)Azure SDK Bot
## 1.2.1 (2021-09-02) ### Bugs Fixed - [2785](https://github.com/Azure/azure-sdk-for-cpp/issues/2785) Fix to build on g++ 5.5. ### Other Changes - Fixed compilation error on POSIX platforms where OpenSSL was not available. - Support CMake version 3.12 Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-08[libjpeg-turbo] Update wrapper to correctly find debug/release variant (#19319)Kai Pastor
* Format manifest * Fix cmake wrapper * Drop windows debug lib renaming * Fix build warnings * x-add-version * Consolidate azure-kinect-sensor-sdk patches * Fix jpegturbo dependency * x-add-version * Fix wrapper message * x-add-version
2021-09-08[aubio] Add support for find_package (#19996)autoantwort
* [aubio] Add support for find_package * Add include(CMakeFindDependencyMacro) * x-add-version Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-08[msbuild] add vcpkg to <Lib> search path (#20054)autoantwort
2021-09-08[libbson, mongo-c-driver] Convert to vcpkg.json. (#20039)Billy O'Neal
* Fixes source writes rather than using DISABLE_PARALLEL_CONFIGURE * Fixes to use modern vcpkg helpers. * Fixes to install to the correct include path rather than moving the resulting includes after the fact. * Remove do-nothign renames. * Fixes to make static cmake configs find the correct bits.
2021-09-08[fftw3/libwebsockets/uwebsockets] Update to latest release (#20051)Phoebe
2021-09-08[simdjson] Update to v1.0.0 (#20052)myd7349
* [simdjson] Update to 1.0.0 * [simdjson] Bump version
2021-09-08[h3/jaeger-client-cpp] Update to the latest version (#20008)NancyLi1013
* [h3/jaeger-client-cpp] Update to the latest version * Remove CONTROL files * Update version files * Update patch * Update versions/j-/jaeger-client-cpp.json
2021-09-08[glew/openvdb/xtensor-io] Update to latest release version (#20022)Phoebe
* [glew/openvdb/xtensor-io] Update to latest release version * [glew] Update patch * [xtensor-io] Update version
2021-09-08[libfort/libgit2/cli11] update to the latest version (#20024)JonLiu1993
* [libfort/libgit2/cli11] update to the latest version * update version * delete useless dependencies * update version
2021-09-08[rappture] Update port to use vcpkg.json instead of CONTROL (#20049)Vitalii Koshura
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
2021-09-08[imgui] update to 1.84.2 (#20012)Mathis
* update imgui * version * use correct ref for docking * version * update commit for dockiung * version
2021-09-08[so5extra] Update to 1.4.1.1 (#20004)eao197
* so5extra updated to the latest version. * Fix for so5extra's manifest format. * so5extra version added to baseline. * Accepting suggestion for so5extra's manifest. * Update for so5extra version in baseline.
2021-09-08[vamp-sdk] fix library filenames to match upstream build systems (#20002)Be
* [vamp-sdk] fix library filenames to match upstream build systems There were two problems: 1. The port added a `d` suffix for debug builds that upstream did not. This caused `find_library(VampHostSDK_LIBRARY NAMES vamp-sdk)` to fail to find the debug library. 2. The port used the same file name for libraries on every OS but that is not what upstream does. * [vamp-sdk] fix capitalization of Vamp Vamp is not an acronym.
2021-09-08[libhsplasma/libpcap/lv2/libcrafter] Update to the latest version (#19965)NancyLi1013
* [libhsplasma/libpcap/lv2] Update to the latest version * [libpcap] Remove unused comments * Update version files * [lv2] Fix usage [libpcap] Update ci.baseline.txt * [libhsplasma] Remove x64-windows-static=fail from ci.baseline.txt * [libcrafter] Update to 1.0 * [libcrafter] Add vcpkg.json * Update version files * Add CRT check for libpcap and update version as versin-semver for libpcap * Update version files Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-07[libsamplerate] Update 0.2.1 -> 0.2.2 (#20003)evpobr
2021-09-07[libharu] Fix renaming library when one of the build type is selected (#19979)Jafar Abdi
* libharu: Fix renaming library when build type is either release or debug Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com> * Run vcpkg x-add-version --all * Small changes Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2021-09-07[arcus/any-lite/aixlog] Update to the latest version (#19977)JonLiu1993
* [arcus/any-lite/aixlog] Update to the latest version * update version * Apply requested changes * update version * update vcpkg.json * update version
2021-09-07[libuv/librsync/libqrencode] Update to latest release version (#19972)Phoebe
* [libuv/librsync/libqrencode] Update to latest release version * Update the baseline version * [libuv] Add new source file epoll.c * Update the source * Small changes
2021-09-07[openimageio] update version to 2.3.7.2 (#19961)Cheney Wang
* [openimageio] update version to 2.3.7.2 * Disable the test in vcpkg Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-09-07[ms-gltf] Update to latest release r1.9.5.4 (#19958)Phoebe
* [ms-gltf] Fix the wrong homepage * Update pdb file path * Pass WINDOWS_USE_MSBUILD to vcpkg_cmake_configure * Update to latest release r1.9.5.4
2021-09-07[google-cloud-cpp] update to latest release (v1.31.1) (#19957)Carlos O'Ryan
2021-09-07[libmediainfo/glslang] Update to the latest version (#19917)NancyLi1013
* [libmediainfo/glslang] Update to the latest version * Update version files Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-07[uriparser] Update to v0.9.5 (#19820)myd7349
* [uriparser] Update to 0.9.5 * [uriparser] Add new version * Small changes Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
2021-09-07[harfbuzz] update to 2.9.0 (#19817)JonLiu1993
* [harfbuzz] update to 2.9.0 * update version * update version to version-semver * update version * remove fontconfig option * update version
2021-09-07proj4 uwp improvments (#18323)Geoff Evans
* Remove prior arm/uwp patch since host dependencies now allow for proj database generation, and add a new patch that repairs Win32 API calls to use UWP counterparts in UWP builds * Update ci baseline for port changes * Update port version * Fix patch list for PR * Bump port-version, disable some broken downstream libs * Update port version commit
2021-09-07[icu] Fix tool path (#19726)Phoebe
* [icu] Fix tool path * Update the baseline version * Apply the review suggestions Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-07[lcms] Update to 2.12 (#19551)Wolfgang Stöggl
In addition to updating the version to 2.12, the following modifications were applied to the port: - Use the name lcms2 for the library, as it is called upstream since version 2 of Little-CMS. Remark: In the past, the library has already been called lcms2 for a while in vcpkg (1e53c60 until 726c111). The ports in vcpkg, which currently require the port lcms (devil, libraw and opencolorio), use and support lcms2 include/lib. - Add generating a pkg-config file - Add quotes to file commands in portfile.cmake
2021-09-07[yaml-cpp] fix cmake and pkgconfig files (#19703)autoantwort
2021-09-07[buck-yeh-bux] add port (#19670)Buck Yeh
* [bux] Add new port * Corrections according to Create Pull Request suggested questions * SHA512 * Mark fails into .\scripts\ci.baseline.txt * Mark fails into .\scripts\ci.baseline.txt * No need of "port-version": 1 in vcpkg.json * Update version database * Update ports/bux/portfile.cmake Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * Update ports/bux/portfile.cmake Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * Update ports/bux/portfile.cmake Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * Update ports/bux/vcpkg.json Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * Update bux.json * Update ports/bux/vcpkg.json * update version * Update scripts/ci.baseline.txt Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> * update bux support * update version * update version * Rename bux to buck-yeh-bux * Update version database Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-09-07[cpp-ipc] Add new port (#19360)winsoft666
* [teemo] Update version to v2.3. * [teemo] Modify version to v2.2 * [teemo] Run `vcpkg x-add-version teemo` to add version info. * [teemo] Update Build-Depends. * Update versions/t-/teemo.json * [libipc] Add new library. * [libipc] Run ./vcpkg x-add-version --all * [libipc] Fix compile error. * update version * Update ports/libipc/CONTROL * update version * Update ports/libipc/portfile.cmake Co-authored-by: Billy O'Neal <bion@microsoft.com> * Update ports/libipc/portfile.cmake Co-authored-by: Billy O'Neal <bion@microsoft.com> * [cpp-ipc] rename libipc to cpp-ipc * [cpp-ipc] Run vcpkg x-add-version --all * [cpp-ipc] Remove old libipc * update cpp-ipc * update version * delet libipc.json Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com> Co-authored-by: Jonliu1993 <13720414433@163.com> Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> Co-authored-by: Billy O'Neal <bion@microsoft.com>
2021-09-07[kealib] Update, revise features (#19118)Kai Pastor
* Convert manifest to JSON * Remove purely transitive dependencies * Parallel is unsupported with HDF5 C++ * Revise portfile * Update to 1.4.14 * x-add-version
2021-09-07[fmt] update to 8.0.1 (#18581)JonLiu1993
* [fmt] update to 8.0.0 * update version * revert patch foramt * update version * update version * [fmt] update to 8.0.0 * update version * [fmt] update to 8.0.1 * update version * Apply suggested change * update version
2021-09-05[sentencepiece] v0.1.95 (#19858)7FrogTW