vcpkg/versions/n-/ned14-internal-quickcpplib.json

60 lines
1.5 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "e9c41d87d7d3dc77a9d7dfaddef8571574721f0d",
"version-date": "2022-09-08",
"port-version": 1
},
{
"git-tree": "89d5a8630a97d2e3a7cae1a56253de75014a0738",
"version-date": "2022-09-08",
"port-version": 0
},
{
"git-tree": "081192c8586e086ef1fe8beb576255f86dc9458e",
"version-date": "2022-07-04",
"port-version": 0
},
{
"git-tree": "3ab059ed3893e5635482409f22bd73cdbcec2166",
"version-date": "2022-06-17",
"port-version": 0
},
{
"git-tree": "be7fa7b222ea2c080583b12ad2f203d63c7ed55c",
"version": "0.0.0-cad832c8",
"port-version": 1
},
{
"git-tree": "af77893b0d87106812194f8bc866ecfbc6ade24a",
"version-string": "0.0.0-cad832c8",
"port-version": 0
},
{
"git-tree": "e27f2efe92a17e1c67c5115c9ef15e7e63b1f3e8",
"version-string": "0.0.0-8089a948",
"port-version": 0
},
{
"git-tree": "801be68901e5e7e84e4069015346fc457e72953c",
"version-string": "0.0.0-e691a6dc",
"port-version": 0
},
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 16:24:04 +08:00
{
"git-tree": "3cd8528057f78bdbc43616bbe7349acd5cc41c77",
"version-string": "0.0.0-7cb75d4e",
"port-version": 1
},
{
"git-tree": "22e381237aadb997367803430ddb3f4290acc88c",
"version-string": "0.0.0-7cb75d4e",
"port-version": 0
},
{
"git-tree": "d71cb92f85e0f089d1d2f4161be4f08be9de26d1",
"version-string": "0.0.0-24d92c71",
"port-version": 0
}
]
}