mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 02:49:01 +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 ```
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "b08453227e8770baadeb826bb3cd711815e6a865",
|
|
"version-string": "2018-07-30",
|
|
"port-version": 2
|
|
},
|
|
{
|
|
"git-tree": "4e3dc249bb1190e025b5189e9e8a7624b435fce5",
|
|
"version-string": "2018-07-30-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "4b7ceb73ca69095bf933385ff94d3f91fc05cd16",
|
|
"version-string": "2018-07-30",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "f37339bd35877d22035a1b62ddc32543b5036d97",
|
|
"version-string": "2018-06-15",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "532f5e0b181cfaf37293fd97c6b6af9e59d525f0",
|
|
"version-string": "2018-06-12",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "aa2059f8754535c45f996934a08f4e1f08531165",
|
|
"version-string": "2018-05-17",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "4bfd28eadfd41bfa38ff958a67d039a25b10e875",
|
|
"version-string": "2018-05-01",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "6bc683daf245fe8fb6365e108a400260d99fbf89",
|
|
"version-string": "25821e6d74fab5fcc200fe5e818362e03e114428",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|