Commit Graph

14 Commits

Author SHA1 Message Date
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
Daniil Goncharov
cd6df79981
[magic-enum] Update to v0.7.3 (#18575)
* [magic-enum] Update to v0.7.3

* fix
2021-06-24 13:09:29 -07:00
Daniil Goncharov
37289e26fc
[magic-enum] Update to v0.7.2 (#15974)
* [magic-enum] Update to v0.7.2

* x-add-version
2021-02-03 11:43:45 -08:00
Daniil Goncharov
83bcf8525c
[magic-enum] Update to v0.7.1 (#14904) 2020-12-03 17:37:14 -08:00
Daniil Goncharov
c0cbe75b47
[magic-enum] Update to v0.7.0 (#14046) 2020-10-15 12:43:37 -07:00
Daniil Goncharov
473e548207
[magic-enum] Update to v0.6.6 (#11814) 2020-06-10 18:01:39 -07:00
Alexander Karatarakis
3defadc616
[magic-enum] Uprev to v0.6.5 (was v.0.6.4) (#11704) 2020-06-02 22:38:27 -07:00
Daniil Goncharov
df48026300 [magic-enum] Update to v0.6.4 (#9502) 2020-01-06 11:11:40 -08:00
NancyLi1013
8c17d3c790 [magic-enum] Fix export config.cmake issue (#9007)
* [magic-enum] Fix export config.cmake issue

* Update
2019-11-21 17:01:17 -08:00
Daniil Goncharov
9994cdf54f update magic_enum to 0.6.3 (#8656) 2019-10-18 14:15:52 -07:00
neargye
9a0a30c51d update magic_enum to v0.6.2 2019-10-08 15:37:35 +05:00
Alexander Karatarakis
3db8ce2d66 [magic_enum] Update to 0.6.1. Add HEAD_REF (#8431) 2019-10-02 13:54:38 -07:00
Alexander Karatarakis
b4e61b548f [magic-enum] Update to v0.6.0 (#7916) 2019-08-27 05:36:04 -07:00
Daniel Marshall
1f3964f18b [magic-enum] Add new port (#6817)
* [magic-enum] Add new port

* Update portfile.cmake
2019-06-07 12:08:41 -07:00