vcpkg/versions/p-/ppconsul.json

55 lines
1.3 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "15a4740ba0476c6490c353b004eb8acbbdbb8a32",
"version": "0.5",
"port-version": 5
},
{
"git-tree": "1de0499185f0f0915b69dbd0d932f2781aa62ecc",
"version-string": "0.5",
"port-version": 4
},
{
"git-tree": "5f08036342cef58a0f47fc01fe02bdf5c8e5d09c",
"version-string": "0.5",
"port-version": 3
},
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": "8c7383164dcbe93141eb683eeeb362381ebbd4cd",
"version-string": "0.5",
"port-version": 2
},
{
"git-tree": "8d87f4681edc04101293dceede444307d3b3e4da",
"version-string": "0.5-1",
"port-version": 0
},
{
"git-tree": "d73d0eccdded9b4d4e17a0e06e9fdaa48fe8bd88",
"version-string": "0.5",
"port-version": 0
},
{
"git-tree": "b102c1f7fb7563dab481fbb4e82a63170e784608",
"version-string": "0.4-1",
"port-version": 0
},
{
"git-tree": "2dfb691c0d203d99ae04525884e47f1bd150ba36",
"version-string": "0.4",
"port-version": 0
},
{
"git-tree": "655faaaa2419231047daafa3fd94e23ad1801820",
"version-string": "0.3-1",
"port-version": 0
},
{
"git-tree": "3414a1308998fdd15ff0251bef046bd8f560cd4e",
"version-string": "0.3",
"port-version": 0
}
]
}