vcpkg/versions/p-/plib.json

40 lines
932 B
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "31a68c9911b826a760e8be17864b7d6dc1830e88",
"version": "1.8.5",
"port-version": 8
},
{
"git-tree": "fe0ee99ffd2bcad6cc3709d85477c174fb9773f7",
"version": "1.8.5",
"port-version": 7
},
{
"git-tree": "df2cccd607d973a945593bfec6ef15bd7549e6c0",
"version": "1.8.5",
"port-version": 6
},
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": "7b00da126126e5e721ab3f6b1f931f7ec4df77f8",
"version-string": "1.8.5",
"port-version": 5
},
{
"git-tree": "94d884dc742498b586da39691d31cd6b22c7e236",
"version-string": "1.8.5-4",
"port-version": 0
},
{
"git-tree": "9f144af9dae3bd3f1e124340b2600136ba378b9f",
"version-string": "1.8.5-3",
"port-version": 0
},
{
"git-tree": "655b81cfce60c5d7f2a2fd9a22382890c98c2b6c",
"version-string": "1.8.5-2",
"port-version": 0
}
]
}