mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 20:46:41 +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 ```
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "350cf76237d8fc38f67cba9766e25b2f68d50d64",
|
|
"version-string": "1.0.2",
|
|
"port-version": 7
|
|
},
|
|
{
|
|
"git-tree": "c74a09bb37bbdd9e5228c6b694ec84bbd59d6d62",
|
|
"version-string": "1.0.2-6",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "13552361e2583e58e1ece1fb6c135210b55a05de",
|
|
"version-string": "1.0.2-5",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "379f4d84c35c48ae6082c253fbf7e55f20eb6a7b",
|
|
"version-string": "1.0.2-4",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "887df694ce2c251fa2512446462bc1172d729d57",
|
|
"version-string": "1.0.2-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "ea5f90f1bf0f572376a97cf9a2ae73b8bf430d16",
|
|
"version-string": "1.0.2-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "667ae1a1faae3c288e60a747d646b16b5dbef0c6",
|
|
"version-string": "1.0.2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "88573f93e85a2b6da6951c35dfec04ef776bf1a7",
|
|
"version-string": "1.0.1-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "e73c4a7d1bd5db6ab9f72116cd76fa651d9e49b2",
|
|
"version-string": "1.0.1-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "dc639206f6251a246e0612f94e752df4b0799365",
|
|
"version-string": "1.0.0-1",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|