Commit Graph

10 Commits

Author SHA1 Message Date
Weihang Ding
0e12581197
[magic-enum] Bump to 0.9.3 (#32948)
* [magic-enum] Bump to 0.9.3

* update version database
2023-08-04 06:47:33 -07:00
Daniil Goncharov
a1ba7080ce
[magic-enum] Update to v0.9.2 (#31923)
* [magic-enum] Update to v0.9.1

* x-add-version --all
2023-06-12 16:33:29 -07:00
Daniil Goncharov
d01e12bfee
[magic-enum] Update to v0.9.1 (#31742)
* [magic-enum] Update to v0.9.1

* x-add-version --all
2023-05-31 12:42:42 -07:00
Anders Wind
c9a2522a36
[magic-enum] update port to v0.8.2 (#28354) 2022-12-16 11:17:23 -08:00
Daniil Goncharov
c567729cbc
[magic-enum] Update to v0.8.1 (#26166)
* [magic-enum] Update to v0.8.1

* vcpkg x-add-version magic-enum
2022-08-05 23:47:19 -07:00
Daniil Goncharov
188ff7a102
[magic-enum] Update to v0.8.0 (#24646)
* [magic-enum] Update to v0.8.0

* x-add-version

* fix deprecated

* fix review

* fix version

* Update ports/magic-enum/portfile.cmake

Co-authored-by: Thomas1664 <46387399+Thomas1664@users.noreply.github.com>

* Update ports/magic-enum/portfile.cmake

Co-authored-by: Thomas1664 <46387399+Thomas1664@users.noreply.github.com>

* Update versions/m-/magic-enum.json

Co-authored-by: Thomas1664 <46387399+Thomas1664@users.noreply.github.com>

* fix review

* overwrite-version

* fix cmake

* fix onfig_fixup

* overwrite-version

* delete extra blank line

* overwrite-version

Co-authored-by: Thomas1664 <46387399+Thomas1664@users.noreply.github.com>
2022-05-11 16:46:53 -07: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
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
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions to versions (#15784) 2021-01-21 09:53:22 -08:00