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 |
|
Phoebe
|
891426b94c
|
[vcpkg baseline] Remove passing port from Ci baseline (#11692)
|
2020-06-01 18:32:41 -07:00 |
|
Samuel Marks
|
687cff42ce
|
[ppconsul] Upgrade to latest version (#9713)
Co-authored-by: Raed Romanov <raid-7@users.noreply.github.com>
|
2020-01-22 12:26:35 -08:00 |
|
SeekingMeaning
|
11be3cd2b7
|
[ppconsul] Add missing boost dependencies (#9752)
* [ppconsul] Possible fix for CI
* Update CONTROL
* Update
|
2020-01-20 09:28:16 -08:00 |
|
Samuel Marks
|
e4524f656b
|
[ppconsul] Upgrade to latest version (#9104)
|
2019-11-26 16:54:48 -08:00 |
|
Phil Christensen
|
17b8cd9d05
|
[ppconsul] remove conflict with json11 (#6967)
* [ppconsol] remove conflict with json11
|
2019-06-22 23:30:45 -07:00 |
|
Samuel Marks
|
783fa14d0b
|
[ppconsul] Add new port (#6911)
|
2019-06-17 10:46:34 -07:00 |
|