Commit Graph

25 Commits

Author SHA1 Message Date
miyanyan
d81fa4b050
[magic-enum] update to 0.9.7 (#42158) 2024-11-18 22:04:41 -08:00
Anders Wind
f04dfe440c
[magic-enum] fix port content hash is no longer correct (#40430) 2024-08-14 16:00:18 -07:00
miyanyan
c3273867b0
[magic-enum] update to 0.9.6 (#39601) 2024-07-01 15:51:49 -04:00
miyanyan
27a4debe0d
[magic-enum] update to 0.9.5 (#35162)
* [magic-enum] update to v0.9.5

* [magic-enum] update versions
2023-11-16 19:44:07 -08:00
miyanyan
69860f9b4c
[magic-enum] update to 0.9.4 (#35069)
* [magic-enum] update to 0.9.4

* [magic-enum] update versions
2023-11-13 10:51:00 -08:00
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
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