<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/magnum/CONTROL, branch aws-lambda-cpp</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,-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] fixes installing all dependecies by default (#11225)</title>
<updated>2020-12-01T22:14:46+00:00</updated>
<author>
<name>Francisco Facioni</name>
<email>francisco@remyrobotics.com</email>
</author>
<published>2020-12-01T22:14:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=6b19f55def8ae1b37ff93df4cf3b95ed31b21b60'/>
<id>6b19f55def8ae1b37ff93df4cf3b95ed31b21b60</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[magnum] Removing quotes around tools list where vcpkg_copy_tools is involked (#14383)</title>
<updated>2020-11-05T20:44:30+00:00</updated>
<author>
<name>Phoebe</name>
<email>20694052+PhoebeHui@users.noreply.github.com</email>
</author>
<published>2020-11-05T20:44:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=9032255d4146e3b00903233f8233727ad4067a0e'/>
<id>9032255d4146e3b00903233f8233727ad4067a0e</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>[cmake] Update to 3.17.2 (#10767)</title>
<updated>2020-05-19T21:47:19+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2020-05-19T21:47:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f23ebed76f0a6b13e2fe66f7a31ee744708d95b8'/>
<id>f23ebed76f0a6b13e2fe66f7a31ee744708d95b8</id>
<content type='text'>
* [cmake] Update to 3.17.1

* update cmake directory name

* [cpuid] Fix install headers.

* [stormlib] Fix install headers

* [murmurhash] Fix install headers

* [metrohash] Fix install headers

* update baseline

* update baseline

* [otl] update hash

* update baseline

* [gts] Do not use ninja to avoid empty implib issue

* update baseline

* [dmlc] Re-trigger ci test

* [replxx] Re-trigger ci test

* update baseline

* [osg] Re-trigger ci test

* [replxx] Fix build failure

* Set cmake min version to 3.17.1

* update baseline

* [libnice] Re-trigger ci test

* [mlpack] Re-trigger ci test

* update to 3.17.2

* update cmake hash

* update baseline

* update baseline

* update baseline

* update baseline

* Update scripts/ci.baseline.txt

Co-authored-by: Billy O'Neal &lt;billy.oneal@gmail.com&gt;

* update baseline

* update baseline

* [magnum] Set magnum:arm64-windows to skip in baseline

* [nanogui] Set nanogui:arm64-windows to fail in baseline

* [nettle] Set nettle:x64-windows to fail, waiting for fix this issue in another PR

* re-trigger CI test

* update baseline

* Install unixODBC in Linux

* [nanodbc] Re-trigger CI test

* update baseline

* Remove space

* update baseline</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [cmake] Update to 3.17.1

* update cmake directory name

* [cpuid] Fix install headers.

* [stormlib] Fix install headers

* [murmurhash] Fix install headers

* [metrohash] Fix install headers

* update baseline

* update baseline

* [otl] update hash

* update baseline

* [gts] Do not use ninja to avoid empty implib issue

* update baseline

* [dmlc] Re-trigger ci test

* [replxx] Re-trigger ci test

* update baseline

* [osg] Re-trigger ci test

* [replxx] Fix build failure

* Set cmake min version to 3.17.1

* update baseline

* [libnice] Re-trigger ci test

* [mlpack] Re-trigger ci test

* update to 3.17.2

* update cmake hash

* update baseline

* update baseline

* update baseline

* update baseline

* Update scripts/ci.baseline.txt

Co-authored-by: Billy O'Neal &lt;billy.oneal@gmail.com&gt;

* update baseline

* update baseline

* [magnum] Set magnum:arm64-windows to skip in baseline

* [nanogui] Set nanogui:arm64-windows to fail in baseline

* [nettle] Set nettle:x64-windows to fail, waiting for fix this issue in another PR

* re-trigger CI test

* update baseline

* Install unixODBC in Linux

* [nanodbc] Re-trigger CI test

* update baseline

* Remove space

* update baseline</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>
</feed>
