Billy O'Neal
b295670e4b
Bulk convert control files. ( #19986 )
...
```
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-09 01:24:04 -07:00
Brennan
0d9bf61ed3
[microsoft-signalr] Update port ( #19420 )
...
* Update microsoft-signalr port
* x-add-version
2021-08-09 09:08:38 -07:00
Brennan
be656b22a4
[microsoft-signalr] Update port with new version and find_package support ( #16885 )
...
* Update microsoft-signalr port with new version and find_package support
* version
2021-03-26 11:10:47 -07:00
NancyLi1013
ecba240490
[microsoft-signalr] Fix build error on Linux ( #14872 )
...
* [microsoft-signalr] Fix build failed on Linux
* Nicole CRs
Co-authored-by: Nicole Mazzuca <mazzucan@outlook.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-12-03 13:56:56 -08:00
Phoebe
2ac2b5f3da
[Baseline] Fix boost-*:arm-uwp failure and resolve conflicts in CI ( #11496 )
...
* [baseline] Fix boost-*:arm-uwp failure and resolve conflicts in CI
* Remove itk:x64-osx=fail in CI
* Resolve conflicts
* Rebase the changes
2020-05-23 12:39:26 -07:00
Brennan
b5a2581976
[microsoft-signalr] Add new port ( #10833 )
...
* Add microsoft-signalr package
* fb
* websockets
* remove supports
* depends
* uwp
* update
* fb
Co-authored-by: wangli28 <wangli28@beyondsoft.com>
2020-05-15 12:05:14 -07:00