vcpkg/versions/w-/wildmidi.json

40 lines
937 B
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "a0da0fad8cf43fc4534ae5fc11060437582fa6b8",
"version": "0.4.5",
"port-version": 0
},
{
"git-tree": "28dabf2a1d7a07e567c4d6a0b482d44a4994d17b",
"version": "0.4.4",
"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": "4270f5e1f8fdb45bf562991ab9cf42e52fbc7437",
"version-string": "0.4.3",
"port-version": 2
},
{
"git-tree": "9bd12fa743e95153d652d59113ac56c28b2ccabe",
"version-string": "0.4.3-1",
"port-version": 0
},
{
"git-tree": "7b3ee64538e5a84355d5b896fb7924791e1cdd8e",
"version-string": "0.4.3",
"port-version": 0
},
{
"git-tree": "0b6d7fe5db1e6e9345946624afcf636bec59059e",
"version-string": "0.4.1-1",
"port-version": 0
},
{
"git-tree": "613584f9eed46bb8c2f57f5d9df8082ff80481d1",
"version-string": "0.4.1",
"port-version": 0
}
]
}