mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 06:51:48 +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 ```
35 lines
824 B
JSON
35 lines
824 B
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "cf316e67e451a6b08bb44ff11854f613f32c7484",
|
|
"version-string": "2017-9",
|
|
"port-version": 6
|
|
},
|
|
{
|
|
"git-tree": "77cdb68aa3749064891548794658a76eba09ded1",
|
|
"version-string": "2017-9-5",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "ae5e32271800728bc6b12cf1b7e0fa1791b6062b",
|
|
"version-string": "2017-9-4",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "5f60fba4e7fe72f82d33c1bc137ccfeb443ad3cf",
|
|
"version-string": "2017-9-3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "1ee114f27983ab995d8b79e4591ab6cbd923338d",
|
|
"version-string": "2017-9-02",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "f6dc1bf3360d37b7582d005bc073543bf80bdafd",
|
|
"version-string": "",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|