Commit Graph

13 Commits

Author SHA1 Message Date
JonLiu1993
bb2f69fe14
[cgltf] update to v1.14 (#38837)
Fixes #38772
Update port cgltf to the latest version 1.14

Note: no feature need to test

- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md).
- [x] SHA512s are updated for each updated download.
- [ ] ~~The "supports" clause reflects platforms that may be fixed by
this new version.~~
- [ ] ~~Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.~~
- [ ] ~~Any patches that are no longer applied are deleted from the
port's directory.~~
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.

---------

Co-authored-by: Jon <v-zhli17@microsoft.com>
2024-05-22 00:58:59 -07:00
Matthew Oliver
ff4bb46b1d
[cgltf] Update to 1.13. (#26805)
* [cgltf] Update to 1.13.

* [cgltf] Add license field.

* Update version.
2022-09-16 14:06:00 -07:00
chausner
77bcaa9b6c
[cgltf] Update to 1.11 (#21401)
* Update cgltf to 1.11

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-11-15 14:32:12 -08:00
NancyLi1013
2294a5b768
[audiofile/cgltf/libsbml] Update to the latest version (#20066)
* [audiofile/cgltf/libsbml] Update to the latest version

* Format manifests

* [libsbml] Update branch from stable to development

* Update versions/l-/libsbml.json

* [audiofile] Add options to vcpkg_cmake_configure
2021-09-13 20:20:15 -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
Alfredo Mungo
5c359f1f80
[cgltf] updated version to 1.8 (#14307) 2020-10-30 14:54:16 -07:00
Billy O'Neal
09a647a526
Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065) 2020-10-28 14:18:07 -07:00
Daniel Evans
5f15b1adb0 [cgltf] Update homepage and description 2020-02-04 11:55:29 +00:00
Daniel Evans
45d2ecf571 [cgltf] Add missing header file 2020-02-04 11:54:57 +00:00
Daniel Evans
5e2c32ad58 [cgltf] Update to 1.5 2020-02-04 11:54:57 +00:00
Ehsan
614dbcbf55 [cgltf] Update library to 1.3 (#7774) 2019-08-20 08:33:47 -07:00
unknown
7a17abd59d [cgltf] Update library to 1.2 2019-08-17 01:08:53 +04:30
myd7349
04616db27e [cgltf] Add new port (#6369) 2019-05-09 11:48:06 -07:00