vcpkg/versions/l-/libpopt.json

50 lines
1.2 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "2f73cf4ebdadeac639e83a83e2acc8766ed597c3",
"version": "1.16",
"port-version": 17
},
{
"git-tree": "0610bc947719ba9009a8e99444332fd27d315033",
"version": "1.16",
"port-version": 16
},
{
"git-tree": "ba5769f936a4234dc9803bee2476b757d0a0f0f9",
"version-string": "1.16",
"port-version": 15
},
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": "8f86d53b62561f37ac20b8c66232b9d87e4a6750",
"version-string": "1.16",
"port-version": 14
},
{
"git-tree": "098127274eb41cbd97cdcc38028a7c2e8aafb0ba",
"version-string": "1.16-13",
"port-version": 0
},
{
"git-tree": "9671e84760b75528e15eb6ebb6ce4e0867be4eaf",
"version-string": "1.16-12",
"port-version": 0
},
{
"git-tree": "6947b074aadb48ac39aa34489f4a23269b742752",
"version-string": "1.16-11",
"port-version": 0
},
{
"git-tree": "18fbdea6135acf56e6ddef6bb44f850b59620ec9",
"version-string": "1.16-10~vcpkg1-1",
"port-version": 0
},
{
"git-tree": "9dcde5f82f4f2334821e38511495537201c28f13",
"version-string": "1.16-10~vcpkg1",
"port-version": 0
}
]
}