autoantwort
522c29c421
[magnum-plugins] fix build of features ( #35246 )
2023-11-29 01:05:51 -08:00
Cheney Wang
3f8513efb0
[vcpkg baseline][magnum-plugins] Fix corrade-rc not found ( #33930 )
...
* [vcpkg baseline][magnum-plugins] Fix corrade-rc not found
* code clean up
2023-09-22 11:27:59 -07:00
autoantwort
28e440beea
[magnum-plugins] fix SHA512 ( #30123 )
2023-03-13 11:53:14 -07:00
Cheney Wang
74a4c99417
[magnum-*] Remove accidentally generated parameter and optimized portfile.cmake ( #27608 )
...
* [magnum-*] Remove accidentally generated parameter and optimized portfile.cmake
* x-add-version
* Use vcpkg_check_features
* x-add-version
2022-11-04 14:18:54 -07:00
pezcode
b9ca38893e
[magnum-plugins] Update head features and bundled dependency ( #21307 )
...
* [magnum-plugins] Update head features and bundled dependency
* [magnum-plugins] Format vcpkg.json
* [magnum-plugins] Use vcpkg_extract_source_archive
* [magnum-plugins] Formatting
* [magnum-plugins] Replace deprecated functions
* [magnum-plugins] add zstd dependency to basisimageconverter and basisimporter
* [magnum-plugins] Update version
2021-11-18 20:13:14 -08:00
Billy O'Neal
b295670e4b
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 01:24:04 -07:00