vcpkg/versions/m-/miniupnpc.json

40 lines
916 B
JSON
Raw Normal View History

{
"versions": [
2023-09-06 13:35:09 +08:00
{
"git-tree": "4178b65263cd78046a728561065f5957d5f2f6ca",
"version": "2.2.5",
"port-version": 0
},
{
"git-tree": "7cf1368b7969b30d49c1666b690b8e18ab265ebc",
"version": "2.1",
"port-version": 5
},
{
"git-tree": "d63b7b18c08e0d968612093f1ada8f872c955688",
"version": "2.1",
"port-version": 4
},
{
"git-tree": "0c33ab6d1ebb5bc580617eaf6fd34930ec0d8233",
"version-string": "2.1",
"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": "4f623d60c7ff375be1f55daa12fb1fcf119bb5a6",
"version-string": "2.1",
"port-version": 2
},
{
"git-tree": "b3f428b80985396d6731cfccffdfcb1f399ec53d",
"version-string": "2.1-1",
"port-version": 0
},
{
"git-tree": "df7a69761d58babf52972591c75548178a8cdc52",
"version-string": "2.1",
"port-version": 0
}
]
}