vcpkg/versions/i-/idevicerestore.json

35 lines
829 B
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "020019d72f9fa90089c2f406edb5938294f2dc3d",
"version-string": "1.0.12",
"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": "4ba1b8951ed8c7f3ac7ba2b786c58e44ad322a86",
"version-string": "1.0.12",
"port-version": 5
},
{
"git-tree": "ca67e457702ccad00ebe9a49eb75221b86db6d96",
"version-string": "1.0.12-4",
"port-version": 0
},
{
"git-tree": "f51218d9ee053cae5ea46cb0270fdf3d204be120",
"version-string": "1.0.12-3",
"port-version": 0
},
{
"git-tree": "1cf6868c029bbda96040503bcd31ccba9f400078",
"version-string": "1.0.12-2",
"port-version": 0
},
{
"git-tree": "897894688ee68ad1699cab4c5c1256a3379ec903",
"version-string": "1.0.12-1",
"port-version": 0
}
]
}