aboutsummaryrefslogtreecommitdiff
path: root/ports/signalrclient
AgeCommit message (Collapse)Author
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-08-05[signalrclient]Update homepage URL (#19256)Brennan
* Fix incorrect homepage URL https://github.com/aspnet/SignalR-Client-Cpp is for the newer microsoft-signalr package. * update version * add Port-Version * update version Co-authored-by: Jonliu1993 <13720414433@163.com>
2020-10-28Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065)Billy O'Neal
2020-05-23[Baseline] Fix boost-*:arm-uwp failure and resolve conflicts in CI (#11496)Phoebe
* [baseline] Fix boost-*:arm-uwp failure and resolve conflicts in CI * Remove itk:x64-osx=fail in CI * Resolve conflicts * Rebase the changes
2020-03-20[cpprestsdk] Disable websockets by default. (#10478)Billy O'Neal
* [cpprestsdk] Disable websockets by default. The websockets backend cpprestsdk uses is websocketpp, which was last committed to in late 2018 and appears defunct. Additionally, the websockets feature brings an otherwise unnecessary Boost dependency on Windows which takes a relatively long time to build. Customers who still want the websockets bits can turn on the optional feature. * Add dependency to signalr.
2019-07-31Add PREFER_NINJA to many ports (#7468)Phoebe
* Add PREFER_NINJA to many ports
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-05-24[signalrclient] fix cpprestsdk linkage (#6606)Alexander Neumann
2019-03-29 [signalrclient]Fix build error (#5868)JackBoosY
* [signalrclient]Fix build error: LNK2019 with openssl
2018-07-03Fix glfw3:x64-linux producing incorrect target (#3803)Qi-rui Chen
* Fix glfw3 creating incorrect target glfw3Target.cmake uses a semicolon seperated list which needs to be escaped with quotes on write * Fix semicolon stripping * Fix typo * [dlib][glfw3][libodb][signalrclient] Bump versions
2018-03-19[signalrclient] Use vcpkg_from_githubAlexander Karatarakis
2017-10-28[signalrclient] Update to handle cpprestsdk 2.10Robert Schumacher
2017-09-25Fix more port hashes due to github tar.gz changeAlexander Karatarakis
Related: cb239b92 It looks like github changed the version (or the generally the way) they do tars, causing some hash mismatches. This fixes the affected ports.
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2016-11-15[signalrclient] Enable static buildsRobert Schumacher
2016-11-15Add signalrclient.sdcb