vcpkg/versions/n-/nrf-ble-driver.json

50 lines
1.2 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "4eaac577bc7f0f8d3bf2cc6281f96d848937ccaa",
"version": "4.1.4",
"port-version": 1
},
{
"git-tree": "f7eb0b4a2be63dfe15611d96725869023f7b438c",
"version": "4.1.4",
"port-version": 0
},
{
"git-tree": "82619c9f6f7860cb053b79c1091a39e0483b7d85",
"version": "4.1.2",
"port-version": 2
},
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": "f0f55511374a869316d374399923f94dc25c4150",
"version-string": "4.1.2",
"port-version": 1
},
{
"git-tree": "0fe2fd730090128aa5c3b528b5c4b6374be2019b",
"version-string": "4.1.2",
"port-version": 0
},
{
"git-tree": "a14671fc7a7ec32d573956588243e6743d7b9d7e",
"version-string": "4.1.1-2",
"port-version": 0
},
{
"git-tree": "39b59b473786aabf041b5e9840562ab8234537db",
"version-string": "4.1.1-1",
"port-version": 0
},
{
"git-tree": "f64dc3cd51ef638f531f2189338aa6a77ac5c719",
"version-string": "4.1.1",
"port-version": 0
},
{
"git-tree": "11b7d068360ac4aaa3e25b0cb56c290bf6d8030d",
"version-string": "4.1.0",
"port-version": 0
}
]
}