<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/meshoptimizer, branch master</title>
<subtitle>Forked from https://github.com/microsoft/vcpkg</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/'/>
<entry>
<title>[meshoptimizer] Update to 0.16 (#20395)</title>
<updated>2021-09-29T15:36:24+00:00</updated>
<author>
<name>chausner</name>
<email>15180557+chausner@users.noreply.github.com</email>
</author>
<published>2021-09-29T15:36:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=39ed6e65af18f838f4acb7b031f00d5328c59f5d'/>
<id>39ed6e65af18f838f4acb7b031f00d5328c59f5d</id>
<content type='text'>
* Update meshoptimizer to 0.16

* Update CI baseline

* Address PR feedback

* Update git-tree hash

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update meshoptimizer to 0.16

* Update CI baseline

* Address PR feedback

* Update git-tree hash

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Bulk convert control files. (#19986)</title>
<updated>2021-09-09T08:24:04+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2021-09-09T08:24:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b295670e4bab14debe88d92cd5364b21ce26232c'/>
<id>b295670e4bab14debe88d92cd5364b21ce26232c</id>
<content type='text'>
```
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
```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
```
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
```</pre>
</div>
</content>
</entry>
<entry>
<title>[corrade,magnum,*-plugins,*-extras,*-integration] Update to v2020.06 (#12211)</title>
<updated>2020-07-14T15:38:18+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2020-07-14T15:38:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=5e40afca0d7286a9a7d742822cc2a1179a9e63fc'/>
<id>5e40afca0d7286a9a7d742822cc2a1179a9e63fc</id>
<content type='text'>
* [magnum] Improve maintainability of feature to cmake flag conversion

* [magnum] Ignore features not supported on current platform

Allows `vcpkg install magnum[*]` on any platform.

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum] Add cglcontext and windowlesscglapplication features

* docs: Update valid VCPKG_CMAKE_SYSTEM_NAME values

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Replace deprecated basisu with archive download

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Add meshoptimizersceneconverter feature

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Also use vcpkg_check_features

Analog to magnum port.

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade,magnum,*-plugins,*-extras,*-integration] Update to v2020.06

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [meshoptimizer] Add initial port

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Replace meshoptimizer download with feature dependency

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade,magnum-*] Fix license installation command

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [meshoptimizer] Use vcpkg_fixup_cmake_targets

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magnum] Improve maintainability of feature to cmake flag conversion

* [magnum] Ignore features not supported on current platform

Allows `vcpkg install magnum[*]` on any platform.

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum] Add cglcontext and windowlesscglapplication features

* docs: Update valid VCPKG_CMAKE_SYSTEM_NAME values

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Replace deprecated basisu with archive download

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Add meshoptimizersceneconverter feature

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Also use vcpkg_check_features

Analog to magnum port.

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade,magnum,*-plugins,*-extras,*-integration] Update to v2020.06

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [meshoptimizer] Add initial port

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Replace meshoptimizer download with feature dependency

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade,magnum-*] Fix license installation command

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [meshoptimizer] Use vcpkg_fixup_cmake_targets

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;</pre>
</div>
</content>
</entry>
</feed>
