aboutsummaryrefslogtreecommitdiff
path: root/ports/magic-enum/CONTROL
AgeCommit message (Collapse)Author
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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-06-24[magic-enum] Update to v0.7.3 (#18575)Daniil Goncharov
* [magic-enum] Update to v0.7.3 * fix
2021-02-03[magic-enum] Update to v0.7.2 (#15974)Daniil Goncharov
* [magic-enum] Update to v0.7.2 * x-add-version
2020-12-03[magic-enum] Update to v0.7.1 (#14904)Daniil Goncharov
2020-10-15[magic-enum] Update to v0.7.0 (#14046)Daniil Goncharov
2020-06-10[magic-enum] Update to v0.6.6 (#11814)Daniil Goncharov
2020-06-02[magic-enum] Uprev to v0.6.5 (was v.0.6.4) (#11704)Alexander Karatarakis
2020-01-06[magic-enum] Update to v0.6.4 (#9502)Daniil Goncharov
2019-11-21[magic-enum] Fix export config.cmake issue (#9007)NancyLi1013
* [magic-enum] Fix export config.cmake issue * Update
2019-10-18update magic_enum to 0.6.3 (#8656)Daniil Goncharov
2019-10-08update magic_enum to v0.6.2neargye
2019-10-02[magic_enum] Update to 0.6.1. Add HEAD_REF (#8431)Alexander Karatarakis
2019-08-27[magic-enum] Update to v0.6.0 (#7916)Alexander Karatarakis
2019-06-07[magic-enum] Add new port (#6817)Daniel Marshall
* [magic-enum] Add new port * Update portfile.cmake