vcpkg/versions/l-/libunibreak.json

55 lines
1.3 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "724f588851a5f81f6ddd8eb1fc01a45bedfa5517",
"version": "5.0",
"port-version": 1
},
{
"git-tree": "ab89a270477d6d97e3d70c4503ee573f1ca8e539",
"version": "5.0",
"port-version": 0
},
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 16:24:04 +08:00
{
"git-tree": "f1fb2965625f4dc28c5ab3c4e0a8a128901a0f0e",
"version-string": "4.3",
"port-version": 1
},
{
"git-tree": "118bde1435b5cc73170ebaa8f17a93b6ea963bcd",
"version-string": "4.3-0",
"port-version": 0
},
{
"git-tree": "078519b458b2adb4c722a4be78e28f527d6f05c0",
"version-string": "4.2-1-0",
"port-version": 0
},
{
"git-tree": "10ea1353e81f7a30e996dd52df994c63ca41ad51",
"version-string": "4.2",
"port-version": 0
},
{
"git-tree": "1dd59ddb7e6b80f13d3b7b3f860ad87ff4fca7ac",
"version-string": "4.1",
"port-version": 0
},
{
"git-tree": "d1075504f6fe43fefaaf86dc7d75e65d061e968e",
"version-string": "4.0-2",
"port-version": 0
},
{
"git-tree": "aaecbeb42db4d856fe568749028684b61e6dcf9c",
"version-string": "4.0-1",
"port-version": 0
},
{
"git-tree": "d43e8b84a909816c32a1ce720c80a9d2e34e1e50",
"version-string": "4.0",
"port-version": 0
}
]
}