mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 15:49:07 +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 ```
40 lines
955 B
JSON
40 lines
955 B
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "d65f4f38c50754c208cb959e3d1b0c6956d2bf94",
|
|
"version-string": "3.2.0",
|
|
"port-version": 3
|
|
},
|
|
{
|
|
"git-tree": "4338494afcc9385f4e4fb804faaef19e96c11843",
|
|
"version-string": "3.2.0-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "041ec46b9970f1dc145922fb8464e42745d8c1f4",
|
|
"version-string": "3.2.0-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "c0d6f171dd1efc86648f3ad550cd6e3c296bdd66",
|
|
"version-string": "3.2.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "2efc5937a28a36241c6dbbd12c158c798350ca87",
|
|
"version-string": "2.4.1-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "d46e43e6499a88f4e97a216fcabc5c241698abce",
|
|
"version-string": "2.4.1-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "cd6622abf966b470548a6c040727ac9bdfb56776",
|
|
"version-string": "2.4.1",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|