vcpkg/ports/qt-advanced-docking-system/vcpkg.json

29 lines
661 B
JSON
Raw Normal View History

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
{
"name": "qt-advanced-docking-system",
"version": "3.8.2",
Add vcpkg_minimum_required before using VERSION. (#27598) * When @BillyONeal started being the on-call vcpkg maintainer on 2022-10-17, he started applying use of the "embedded VERSION" feature https://github.com/microsoft/vcpkg-tool/pull/717 to PRs on merge. @dg0yt points out that this use should be accompanied by a call to vcpkg_minimum_required, in https://github.com/microsoft/vcpkg/pull/27594/files#r1010641672 This is an audit of everything merged in that time and whether it needs to gain that. https://github.com/microsoft/vcpkg/pull/27561 No VERSION https://github.com/microsoft/vcpkg/pull/27525 No VERSION https://github.com/microsoft/vcpkg/pull/27554 Already has vcpkg_minimum_required https://github.com/microsoft/vcpkg/pull/27536 No VERSION https://github.com/microsoft/vcpkg/pull/27562 No VERSION https://github.com/microsoft/vcpkg/pull/24914 Fixed here https://github.com/microsoft/vcpkg/pull/27547 No VERSION https://github.com/microsoft/vcpkg/pull/27502 No VERSION https://github.com/microsoft/vcpkg/pull/27497 No VERSION https://github.com/microsoft/vcpkg/pull/27317 No VERSION https://github.com/microsoft/vcpkg/pull/27288 No VERSION https://github.com/microsoft/vcpkg/pull/27509 No VERSION https://github.com/microsoft/vcpkg/pull/27504 No VERSION https://github.com/microsoft/vcpkg/pull/27514 No VERSION https://github.com/microsoft/vcpkg/pull/27501 No VERSION https://github.com/microsoft/vcpkg/pull/27495 No VERSION https://github.com/microsoft/vcpkg/pull/27488 No VERSION https://github.com/microsoft/vcpkg/pull/27499 No VERSION https://github.com/microsoft/vcpkg/pull/27378 No VERSION https://github.com/microsoft/vcpkg/pull/27376 Fixed here https://github.com/microsoft/vcpkg/pull/27373 No VERSION https://github.com/microsoft/vcpkg/pull/27045 No VERSION https://github.com/microsoft/vcpkg/pull/27521 No VERSION https://github.com/microsoft/vcpkg/pull/27453 No VERSION https://github.com/microsoft/vcpkg/pull/27481 No VERSION https://github.com/microsoft/vcpkg/pull/27511 No VERSION https://github.com/microsoft/vcpkg/pull/27490 No VERSION https://github.com/microsoft/vcpkg/pull/27510 No VERSION https://github.com/microsoft/vcpkg/pull/27496 No VERSION https://github.com/microsoft/vcpkg/pull/27503 No VERSION https://github.com/microsoft/vcpkg/pull/27485 No VERSION https://github.com/microsoft/vcpkg/pull/27484 No VERSION https://github.com/microsoft/vcpkg/pull/27483 No VERSION https://github.com/microsoft/vcpkg/pull/27459 No VERSION https://github.com/microsoft/vcpkg/pull/27369 No VERSION https://github.com/microsoft/vcpkg/pull/27489 No VERSION https://github.com/microsoft/vcpkg/pull/26594 No VERSION https://github.com/microsoft/vcpkg/pull/27465 No VERSION https://github.com/microsoft/vcpkg/pull/27456 No VERSION https://github.com/microsoft/vcpkg/pull/27425 No VERSION https://github.com/microsoft/vcpkg/pull/27464 Fixed here https://github.com/microsoft/vcpkg/pull/27406 No VERSION https://github.com/microsoft/vcpkg/pull/27398 No VERSION https://github.com/microsoft/vcpkg/pull/27240 No VERSION https://github.com/microsoft/vcpkg/pull/27450 No VERSION https://github.com/microsoft/vcpkg/pull/27463 No VERSION https://github.com/microsoft/vcpkg/pull/27462 No VERSION https://github.com/microsoft/vcpkg/pull/27448 No VERSION https://github.com/microsoft/vcpkg/pull/27440 No VERSION https://github.com/microsoft/vcpkg/pull/27435 No VERSION https://github.com/microsoft/vcpkg/pull/27424 No VERSION https://github.com/microsoft/vcpkg/pull/27414 No VERSION https://github.com/microsoft/vcpkg/pull/27412 No VERSION https://github.com/microsoft/vcpkg/pull/27380 No VERSION https://github.com/microsoft/vcpkg/pull/27343 No VERSION https://github.com/microsoft/vcpkg/pull/27342 No VERSION https://github.com/microsoft/vcpkg/pull/27367 No VERSION https://github.com/microsoft/vcpkg/pull/27226 No VERSION https://github.com/microsoft/vcpkg/pull/27320 No VERSION https://github.com/microsoft/vcpkg/pull/26923 No VERSION https://github.com/microsoft/vcpkg/pull/27284 No VERSION https://github.com/microsoft/vcpkg/pull/27433 No VERSION https://github.com/microsoft/vcpkg/pull/27314 VERSION got *removed* https://github.com/microsoft/vcpkg/pull/27335 No VERSION https://github.com/microsoft/vcpkg/pull/27370 No VERSION https://github.com/microsoft/vcpkg/pull/27324 No VERSION https://github.com/microsoft/vcpkg/pull/27391 No VERSION https://github.com/microsoft/vcpkg/pull/27388 No VERSION https://github.com/microsoft/vcpkg/pull/27396 No VERSION https://github.com/microsoft/vcpkg/pull/27404 No VERSION https://github.com/microsoft/vcpkg/pull/27413 No VERSION https://github.com/microsoft/vcpkg/pull/27417 No VERSION https://github.com/microsoft/vcpkg/pull/27427 No VERSION https://github.com/microsoft/vcpkg/pull/27428 No VERSION https://github.com/microsoft/vcpkg/pull/27368 No VERSION https://github.com/microsoft/vcpkg/pull/27307 No VERSION https://github.com/microsoft/vcpkg/pull/27415 Fixed here. https://github.com/microsoft/vcpkg/pull/27371 Fixed here. https://github.com/microsoft/vcpkg/pull/27323 No VERSION https://github.com/microsoft/vcpkg/pull/27352 No VERSION https://github.com/microsoft/vcpkg/pull/27347 No VERSION https://github.com/microsoft/vcpkg/pull/27366 No VERSION https://github.com/microsoft/vcpkg/pull/27361 No VERSION https://github.com/microsoft/vcpkg/pull/27359 No VERSION https://github.com/microsoft/vcpkg/pull/27358 No VERSION https://github.com/microsoft/vcpkg/pull/27355 No VERSION https://github.com/microsoft/vcpkg/pull/27331 No VERSION https://github.com/microsoft/vcpkg/pull/24615 No VERSION https://github.com/microsoft/vcpkg/pull/27325 No VERSION https://github.com/microsoft/vcpkg/pull/24861 No VERSION https://github.com/microsoft/vcpkg/pull/27354 No VERSION https://github.com/microsoft/vcpkg/pull/27346 No VERSION https://github.com/microsoft/vcpkg/pull/27345 No VERSION https://github.com/microsoft/vcpkg/pull/27218 No VERSION https://github.com/microsoft/vcpkg/pull/27329 No VERSION https://github.com/microsoft/vcpkg/pull/27326 No VERSION https://github.com/microsoft/vcpkg/pull/27321 No VERSION https://github.com/microsoft/vcpkg/pull/27312 No VERSION https://github.com/microsoft/vcpkg/pull/27297 No VERSION https://github.com/microsoft/vcpkg/pull/27336 No VERSION https://github.com/microsoft/vcpkg/pull/27225 No VERSION https://github.com/microsoft/vcpkg/pull/27339 No VERSION https://github.com/microsoft/vcpkg/pull/27302 No VERSION https://github.com/microsoft/vcpkg/pull/27295 No VERSION https://github.com/microsoft/vcpkg/pull/27233 No VERSION https://github.com/microsoft/vcpkg/pull/27313 No VERSION https://github.com/microsoft/vcpkg/pull/27237 No VERSION https://github.com/microsoft/vcpkg/pull/27250 No VERSION https://github.com/microsoft/vcpkg/pull/27263 No VERSION https://github.com/microsoft/vcpkg/pull/27266 No VERSION https://github.com/microsoft/vcpkg/pull/27272 No VERSION https://github.com/microsoft/vcpkg/pull/27287 No VERSION https://github.com/microsoft/vcpkg/pull/27282 No VERSION https://github.com/microsoft/vcpkg/pull/27294 No VERSION https://github.com/microsoft/vcpkg/pull/27228 No VERSION https://github.com/microsoft/vcpkg/pull/27163 No VERSION https://github.com/microsoft/vcpkg/pull/26817 No VERSION https://github.com/microsoft/vcpkg/pull/27286 No VERSION https://github.com/microsoft/vcpkg/pull/27274 No VERSION https://github.com/microsoft/vcpkg/pull/27276 No VERSION https://github.com/microsoft/vcpkg/pull/27232 No VERSION https://github.com/microsoft/vcpkg/pull/27221 No VERSION https://github.com/microsoft/vcpkg/pull/27215 No VERSION https://github.com/microsoft/vcpkg/pull/27166 No VERSION https://github.com/microsoft/vcpkg/pull/27239 No VERSION https://github.com/microsoft/vcpkg/pull/27246 No VERSION https://github.com/microsoft/vcpkg/pull/27268 No VERSION https://github.com/microsoft/vcpkg/pull/27259 No VERSION https://github.com/microsoft/vcpkg/pull/27238 No VERSION https://github.com/microsoft/vcpkg/pull/27224 No VERSION https://github.com/microsoft/vcpkg/pull/27203 No VERSION https://github.com/microsoft/vcpkg/pull/27124 No VERSION * Also add libcanberra
2022-11-09 06:49:28 +08:00
"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
"description": "Create customizable layouts using an advanced window docking system similar to what is found in many popular IDEs such as Visual Studio",
"homepage": "https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System",
"license": "LGPL-2.1-only",
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
"dependencies": [
"bzip2",
{
"name": "qtbase",
"default-features": false,
"features": [
"gui",
"widgets"
]
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
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
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
"zlib"
]
}