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 ```
40 lines
955 B
JSON
40 lines
955 B
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "37cc87e9f214e146c81fff2a8aa5ae018622674d",
|
|
"version-string": "1.1.1",
|
|
"port-version": 5
|
|
},
|
|
{
|
|
"git-tree": "1d930427c522c5e3e56535ee4739b0157b3f6592",
|
|
"version-string": "1.1.1-4",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "300cb04ec355e27343fda27793230ecc70be22ff",
|
|
"version-string": "1.1.1-3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "a3bc391b0c50eb710a532a376d4e2c417202fae5",
|
|
"version-string": "1.1.1-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "2355654c9ec494b10af17a1e4fbddb70044352da",
|
|
"version-string": "1.1.1-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "00028cfa9a7fc204b3e3c017c09891e8fc999c96",
|
|
"version-string": "1.1.1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "3d9dfd1b7f891fc7f284a467697c45d3825c533d",
|
|
"version-string": "1.1.0",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|