mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 20:19:06 +08:00
b295670e4b
``` 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 ```
65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "3173c9bf7aca150b6b7859a4c055ac778c157f58",
|
|
"version-string": "14.2.1",
|
|
"port-version": 1
|
|
},
|
|
{
|
|
"git-tree": "8f42086781fc869cc35be1abd9b64641c27028f7",
|
|
"version-string": "14.2.1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "0af11f9791915f437e8d25a8c7df32684656a34d",
|
|
"version-string": "14.1.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "48b46ba0a0f1ad902474126ef8f04a28e3aeae2a",
|
|
"version-string": "12.0.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "51b6aa4072bbbcacaf8de6c25112a74193d16fc0",
|
|
"version-string": "11.0.1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "aa6510c4c8c74137d514e1db6b8da02c101f2ab1",
|
|
"version-string": "10.0.3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "03570aaa0c722c48d5f02ba504f7ac7b4b9651b8",
|
|
"version-string": "9.0.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "37e74f8a83cbcbdb5016fb7df6d8e1fc91b08cff",
|
|
"version-string": "8.0.1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "28d841c1d8d986bffbf1cbd696ab1f3e584fef1d",
|
|
"version-string": "6.0.0-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "e772dc0359ef25c84c3fed842f3f18cd1ee45f6a",
|
|
"version-string": "6.0.0-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "f70b8a3a6f2481ccc507349949b2cf526b9da4f4",
|
|
"version-string": "6.0.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "dedda182a552e6517f6ec5fd8ce63b624117aecc",
|
|
"version-string": "v1.0.0",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|