| Age | Commit message (Collapse) | Author |
|
* Update usockets to 0.8.1
* Update CI baseline
* Minor tweaks
* Update git-tree hash
Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
* Update uwebsockets to 20.5.0
* Update CI baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
September 2021 release (#20457)
* Update for September 2021 GitHub releases
* Update directx tool kit ports
* Update versions
* Convert directxmesh and uvatlas to vcpkg-cmake
* Refresh version hash
|
|
* Update uwebsockets to 19.9.0
* Update CI baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
|
|
* [uchardet] Update to 2021-09-03
* [uchardet] Bump version
* [uchardet] Fix UWP build
* [uchardet] Overwrite version
* [uchardet] Add version
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
|
|
|
* [uthash] Add new port
* [uthash] Version stuffs
|
|
```
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
```
|
|
|
|
* [uriparser] Update to 0.9.5
* [uriparser] Add new version
* Small changes
Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
|
|
* [urho3d] Add features, fix usage
* update version stuff
* fix typo
* Correct installation
* fix installation
* update version
* Re-fix install
* Fix tools install
* typo
* Update versions/u-/urho3d.json
|
|
* [utf8proc] Export cmake targets
* Update the baseline version
|
|
* [uvatlas, spectra] ports updated
* Update versions
* Minor code review
* Update version
* Code review feedback
* Update baseline
|
|
* [uwebsockets] update to <v19.2.0>
* update version
|
|
June 2021 releases (#18366)
* [directxtk, directxtk12, directxmesh, directxtex, uvatlas] ports updated for June 2021 release
* added versions
|
|
* [utfcpp] Update to 3.2.1 version
* [utfcpp] Update version files
Co-authored-by: Rémy Tassoux <rt2@rasterizedworld.com>
|
|
* [unittest-cpp] fix config.cmake file
* update version
* update vcpkg.json
* update version
|
|
* [urho3d] Add new port
* [urho3d] Build master branch
* [urho3d] Fix osx build
* [urho3d] Fix windows build
* [urho3d] Update to newest version
* [urho3d] Add versions info
* [urho3d] arm and uwp are not supported
* [urho3d] Update versions info
* [urho3d] Convert CONTROL to vcpkg.json
* [urho3d] Update portfile.cmake to use newer cmake functions
* [urho3d] Fix ExternalProject_Add error
* [urho3d] Update versions info
|
|
* Update to CUDA 11.3 on Windows.
* Update PowerShell to 7.1.3.
* Update CUDA to 11.3 on Linux.
* "Explode" VM provisioning scripts for more consistent feedback during deploy. This resolves the deployment script often hanging with no feedback as to why.
* [libdatachannel] Fix use of deprecated result_type typedef.
Submitted upstream as https://github.com/paullouisageneau/libdatachannel/pull/413
* [libvpx] Get the libvpx outputs from the correct place.
(Perhaps VS2019 version 16.10 moved where these are placed? I've been defensive and left an attempt to find from the old location in place.)
* [chromaprint] Support implementations where lrintf is an intrinsic.
* Add provision-entire-image script.
* [cudnn] Disable download-on-the-fly due to licensing concerns.
* Add libnccl to Linux VMs.
* [wangle] Disable x64-windows due to an ICE.
* [cmake] Update cmake to 3.20.1 to avoid https://gitlab.kitware.com/cmake/cmake/-/issues/21571 race
* [libudis86] Fix passing a bogus working directory which fails on CMake 3.20.x
* [dartsim] Disable unit tests, examples, and tutorials, some of which have CMake authoring errors rejected by 3.20.1.
* Add thrust to the cuda installees.
* [tensorflow] Put .bzl in CURRENT_BUILDTREES_DIR to avoid running out of disk space in CI and to respect --clean-after-build.
* [dimcli] Skip port broken by changes in VS2019 project system.
* [upb] Disable an additional warning.
* [libhv] Fix typo DISABLE_PARALLEL => DISABLE_PARALLEL_CONFIGURE
* Update pools
|
|
* [gRPC] 1.36.4
* [upb] update to 2020-12-19
* update version
* [upb] Fix config.cmake file
* [grpc] Restore using system upb
* [grpc][upb] Version db changes
* [grpc][upb] Fix building upbdefs in grpc
Co-authored-by: Jeong YunWon <jeong@youknowone.org>
Co-authored-by: Jonliu1993 <13720414433@163.com>
|
|
2021 releases (#17123)
* directxmesh, directxtex, directxtk, directxtk12, uvatlas updated for April 2021 release
* Updated versions
|
|
* [uWebSockets] updated to 19.0.0 alpha 5
* versions db update
* Versions db update
|
|
* [usockets] Updated to version 0.7.1
* [usockets] Updated to version 0.7.1
* [usockets] Updated to version 0.7.1
* [usockets] Updated to version 0.7.1
* Diff patch applied
* Version DB update
|
|
* [uWebSockets] update to 19.0.0
* update versdion
* modify vcpkg.json
* update version
|
|
|