vcpkg/versions/l-/libvmdk.json

40 строки
956 B
JSON
Исходник Обычный вид История

{
"versions": [
{
"git-tree": "2065c045d5787d9fff6469d31fe6bbe2f925d367",
"version": "20221124",
"port-version": 0
},
{
"git-tree": "1e57cc839896d460f87ccf1a48562dcb876f7f6b",
"version": "20200926",
"port-version": 4
},
{
"git-tree": "f7144e40ca7cfd22875c2aa308e4e9b023ef3033",
"version-string": "20200926",
"port-version": 3
},
{
"git-tree": "f1d35304c7ab4940f834735c091eca7a2ee43305",
"version-string": "20200926",
"port-version": 2
},
Bulk convert control files. (#19986) ``` 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 ```
2021-09-09 11:24:04 +03:00
{
"git-tree": "8efc63f616daad6af987a274eb292d2605bd8f4b",
"version-string": "20200926",
"port-version": 1
},
{
"git-tree": "6d461aee7ea9e99c29255ad611a2c03c00acd895",
"version-string": "20200926",
"port-version": 0
},
{
"git-tree": "81ea40207a10e3914ddb5b6320656d6e888afc90",
"version-string": "2019-12-21",
"port-version": 0
}
]
}