vcpkg/versions/l-/llfio.json

60 lines
1.5 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "75a5c6e3170c65d747e5103b292f5da55ec2aa0a",
"version-date": "2022-09-18",
"port-version": 0
},
{
"git-tree": "7974159a11b2a1a1f5aed7b6c500eae3fa54481f",
"version-date": "2022-09-08",
"port-version": 0
},
{
"git-tree": "b6959e579906ce5c4ea9aa59f467499dce49a3b6",
"version": "2.0-20220112",
"port-version": 3
},
{
"git-tree": "c3d2d8d9dfddbbf74af7e1f603ac18e4aee2fe7a",
"version": "2.0-20220112",
"port-version": 2
},
{
"git-tree": "bc96b88ab308808ce26135e75038c4b316d5533c",
"version": "2.0-20220112",
"port-version": 1
},
{
"git-tree": "aaacb49264f3175de57367f28c90bd3904d7209f",
"version-string": "2.0-20220112",
"port-version": 0
},
{
"git-tree": "105f6228f09ad995de4826cf860811d3e7eab7f2",
"version-string": "2.0-20211208",
"port-version": 0
},
{
"git-tree": "208ec7684366cb893eeeeb9f86b4b6c92fab7e28",
"version-string": "2.0-20210922",
"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": "3ff2b8c721c107574a4a81aa219fe4c119eaa9e3",
"version-string": "2.0",
"port-version": 20210421
},
{
"git-tree": "ffb9aa3f751b213fd6bde4d06f1c694c489e08f0",
"version-string": "2.0-20210420",
"port-version": 0
},
{
"git-tree": "debab55b24a36f3615bd29f0fe3088032bd61e53",
"version-string": "2.0-a74411ed",
"port-version": 0
}
]
}