<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/magnum-plugins, 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>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] Fix build, minor cleanup and minor warning fix in vcpkg CMake scripts (#19435)</title>
<updated>2021-09-02T20:24:33+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2021-09-02T20:24:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8655bfd4b311df8dd853ca49969a9ecfac94ea91'/>
<id>8655bfd4b311df8dd853ca49969a9ecfac94ea91</id>
<content type='text'>
* [magnum/-plugins] Remove obsolete patches that no longer apply

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade] Make feature to flag translation consistent to fix warning

Consistent with magnum &amp; magnum-plugins

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Fix warning message for dlls without matching pdbs always displayed

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Fix the baseline version

* Revert the changes in vcpkg_copy_pdbs.cmake

Co-authored-by: PhoebeHui &lt;20694052+PhoebeHui@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magnum/-plugins] Remove obsolete patches that no longer apply

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade] Make feature to flag translation consistent to fix warning

Consistent with magnum &amp; magnum-plugins

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Fix warning message for dlls without matching pdbs always displayed

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Fix the baseline version

* Revert the changes in vcpkg_copy_pdbs.cmake

Co-authored-by: PhoebeHui &lt;20694052+PhoebeHui@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[magnum,-plugins] Fix deprecated use of vcpkg_check_features (#17016)</title>
<updated>2021-04-29T20:49:04+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2021-04-29T20:49:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=70610f449497db0f87f2484ade4e88c78aa6f085'/>
<id>70610f449497db0f87f2484ade4e88c78aa6f085</id>
<content type='text'>
Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[magnum/magnum-plugins] fix all magnum dependencies being built (#16657)</title>
<updated>2021-03-16T18:51:57+00:00</updated>
<author>
<name>Francisco Facioni</name>
<email>francisco@remyrobotics.com</email>
</author>
<published>2021-03-16T18:51:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=37df5123352fbb89411b4655e730767f35e30a30'/>
<id>37df5123352fbb89411b4655e730767f35e30a30</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[magnum,-plugins] Fix deployment of plugin types and incorrect removal of plugin lib dir on unix (#16245)</title>
<updated>2021-02-18T21:02:27+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2021-02-18T21:02:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e7377f7992830bfc60fb2a7f43f300200822d82a'/>
<id>e7377f7992830bfc60fb2a7f43f300200822d82a</id>
<content type='text'>
* [magnum] Correctly deploy shaderconverter and sceneconverter plugins

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Only remove plugin lib dirs for Windows platforms

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Clean up deletion of plugin libs and clarify in comment

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Update versions

Co-authored-by: PhoebeHui &lt;20694052+PhoebeHui@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magnum] Correctly deploy shaderconverter and sceneconverter plugins

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Only remove plugin lib dirs for Windows platforms

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Clean up deletion of plugin libs and clarify in comment

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Update versions

Co-authored-by: PhoebeHui &lt;20694052+PhoebeHui@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[magnum,magnum-plugins] Add vulkan and shaderconverter features (#15163)</title>
<updated>2021-01-26T23:03:54+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2021-01-26T23:03:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=795588570aa5fb2d4f33a13648b8b602e9d4a52c'/>
<id>795588570aa5fb2d4f33a13648b8b602e9d4a52c</id>
<content type='text'>
* [magnum,magnum-plugins] Add vulkan and shaderconverter features

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Add warning for features unavailable in non-head version

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* update version record

Co-authored-by: JackBoosY &lt;yuzaiyang@beyondsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magnum,magnum-plugins] Add vulkan and shaderconverter features

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Add warning for features unavailable in non-head version

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* update version record

Co-authored-by: JackBoosY &lt;yuzaiyang@beyondsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[magnum-plugins] Fix file conflict with stb (#12458)</title>
<updated>2020-07-21T02:47:16+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2020-07-21T02:47:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c0d7b3970c9f62635379035955f43c27e5f5298e'/>
<id>c0d7b3970c9f62635379035955f43c27e5f5298e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>
<entry>
<title>[magnum/magnum-plugins] Fix patches for --head builds (#10158)</title>
<updated>2020-03-28T03:37:33+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2020-03-28T03:37:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=edfce3b4558644d61fbef4c88ff4bd106b0809f8'/>
<id>edfce3b4558644d61fbef4c88ff4bd106b0809f8</id>
<content type='text'>
* [magnum] Update patches for --head builds

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Remove obsolete patch

Since basisu port has been updated, we can now use it without patching
the magnum-plugins code for compatibility.

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade] Remove obsolete warning and flag

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum] Rename patches to reflect order of application

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade/magnum/magnum-plugins] Update port versions

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magnum] Update patches for --head builds

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Remove obsolete patch

Since basisu port has been updated, we can now use it without patching
the magnum-plugins code for compatibility.

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade] Remove obsolete warning and flag

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum] Rename patches to reflect order of application

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade/magnum/magnum-plugins] Update port versions

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title> [magnum-plugins] Fix basisimporter/basisimageconverter features (#8939)</title>
<updated>2019-11-25T18:31:55+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2019-11-25T18:31:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a3ab4500a4fbe26bdd6b8a671e2a1dc44112f5eb'/>
<id>a3ab4500a4fbe26bdd6b8a671e2a1dc44112f5eb</id>
<content type='text'>
* [magnum-plugins] Patch FindBasisUniversal to find prebuilt basisu

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Patch BasisImporter to use slightly outdated basisu

jherico's fork which the vcpkg port is based on does not integrate
https://github.com/BinomialLLC/basis_universal/commit/54304fa01443280bbaa9854f16c9f1756b17b40b
yet, which renamed a parameter.

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Only apply FindBasisUniversal patch on release

The change is integrated upstream for --head builds already.

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Download large patch from GitHub history
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magnum-plugins] Patch FindBasisUniversal to find prebuilt basisu

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Patch BasisImporter to use slightly outdated basisu

jherico's fork which the vcpkg port is based on does not integrate
https://github.com/BinomialLLC/basis_universal/commit/54304fa01443280bbaa9854f16c9f1756b17b40b
yet, which renamed a parameter.

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Only apply FindBasisUniversal patch on release

The change is integrated upstream for --head builds already.

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum-plugins] Download large patch from GitHub history
</pre>
</div>
</content>
</entry>
</feed>
