<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/versions/w-, 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>[wildmidi] Update to 0.4.4 (#20609)</title>
<updated>2021-10-12T03:13:00+00:00</updated>
<author>
<name>chausner</name>
<email>15180557+chausner@users.noreply.github.com</email>
</author>
<published>2021-10-12T03:13:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=20a4c683b3e7b13da436287cc864fa0d20997b89'/>
<id>20a4c683b3e7b13da436287cc864fa0d20997b89</id>
<content type='text'>
* Update wildmidi to 0.4.4

* Update CI baseline

* Remove double quotes

* update version

* Remove obsolete patch file

* Update git-tree hash

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update wildmidi to 0.4.4

* Update CI baseline

* Remove double quotes

* update version

* Remove obsolete patch file

* Update git-tree hash

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[wavpack] Update to 5.4.0 (#20370)</title>
<updated>2021-09-28T04:03:06+00:00</updated>
<author>
<name>chausner</name>
<email>15180557+chausner@users.noreply.github.com</email>
</author>
<published>2021-09-28T04:03:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a55aaac079426c63d5249785452f3ecd507e23a2'/>
<id>a55aaac079426c63d5249785452f3ecd507e23a2</id>
<content type='text'>
* Update wavpack to 5.4.0

* Update CI baseline

* Add back OpenSSL patch

* Update git-tree hash

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update wavpack to 5.4.0

* Update CI baseline

* Add back OpenSSL patch

* Update git-tree hash

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[boost] update to 1.77.0 (#19556)</title>
<updated>2021-09-28T00:12:39+00:00</updated>
<author>
<name>Yury Bura</name>
<email>yurybura@gmail.com</email>
</author>
<published>2021-09-28T00:12:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=cc471dc0f59b7b2066d6172c2893419412327a7a'/>
<id>cc471dc0f59b7b2066d6172c2893419412327a7a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>[wavelib] Update to 2021-08-10 (#19477)</title>
<updated>2021-08-30T17:21:45+00:00</updated>
<author>
<name>myd7349</name>
<email>myd7349@gmail.com</email>
</author>
<published>2021-08-30T17:21:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=73a31ace684c9a18fcd0ac39087aa6043d3f393a'/>
<id>73a31ace684c9a18fcd0ac39087aa6043d3f393a</id>
<content type='text'>
* [wavelib] Update to 2021-08-10

[wavelib] Add vcpkg.json

* [wavelib] Add version

* [wavelib] Clean

* [wavelib] Overwrite version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [wavelib] Update to 2021-08-10

[wavelib] Add vcpkg.json

* [wavelib] Add version

* [wavelib] Clean

* [wavelib] Overwrite version</pre>
</div>
</content>
</entry>
<entry>
<title>[wxwidgets] make wxUSE_STL an optional triplet feature (#19274)</title>
<updated>2021-08-19T15:59:43+00:00</updated>
<author>
<name>Be</name>
<email>be@mixxx.org</email>
</author>
<published>2021-08-19T15:59:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=996baeff2978d1e80b8939ef1688c2aa6f276dbd'/>
<id>996baeff2978d1e80b8939ef1688c2aa6f276dbd</id>
<content type='text'>
wxUSE_STL defaults to OFF so that is how it is in Linux
distribution packages. Downstream projects developed with
wxUSE_STL=ON are not necessarily compatible with wxUSE_STL=OFF
without modification. So, by default, go with wxWidgets' default
for compatibility with downstream codebases. vcpkg users who need
wxUSE_STL=ON can still do so by simply opting into the new 'stl'
feature of this port.

https://forums.wxwidgets.org/viewtopic.php?p=165208
Signed-off-by: Be &lt;be@mixxx.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
wxUSE_STL defaults to OFF so that is how it is in Linux
distribution packages. Downstream projects developed with
wxUSE_STL=ON are not necessarily compatible with wxUSE_STL=OFF
without modification. So, by default, go with wxWidgets' default
for compatibility with downstream codebases. vcpkg users who need
wxUSE_STL=ON can still do so by simply opting into the new 'stl'
feature of this port.

https://forums.wxwidgets.org/viewtopic.php?p=165208
Signed-off-by: Be &lt;be@mixxx.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[workflow] Update version to 0.9.6 (#19280)</title>
<updated>2021-08-05T10:04:35+00:00</updated>
<author>
<name>dengjunplusplus</name>
<email>65080805+dengjunplusplus@users.noreply.github.com</email>
</author>
<published>2021-08-05T10:04:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=3fbca9edf3a8b5198d072d9f19ef1a157cae0871'/>
<id>3fbca9edf3a8b5198d072d9f19ef1a157cae0871</id>
<content type='text'>
* update the port workflow version to 0.9.6

* remote port-version

* add version

* Revert "add version"

This reverts commit 487548aecfe767affd37727f14d483b62b377aa6.

* add version once

* update REF for windows

* Update version database</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update the port workflow version to 0.9.6

* remote port-version

* add version

* Revert "add version"

This reverts commit 487548aecfe767affd37727f14d483b62b377aa6.

* add version once

* update REF for windows

* Update version database</pre>
</div>
</content>
</entry>
<entry>
<title>[wil] Update wil to the latest commit (#19343)</title>
<updated>2021-08-05T10:03:51+00:00</updated>
<author>
<name>Duncan Horn</name>
<email>40036384+dunhor@users.noreply.github.com</email>
</author>
<published>2021-08-05T10:03:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=7f3e714768454feb34a442af558e519d078a4b85'/>
<id>7f3e714768454feb34a442af558e519d078a4b85</id>
<content type='text'>
* Update WIL port

* Running new command I previously didn't know about</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update WIL port

* Running new command I previously didn't know about</pre>
</div>
</content>
</entry>
<entry>
<title>[boost] update to 1.76.0 (#17335)</title>
<updated>2021-07-07T19:31:06+00:00</updated>
<author>
<name>autoantwort</name>
<email>41973254+autoantwort@users.noreply.github.com</email>
</author>
<published>2021-07-07T19:31:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=761c81d43335a5d5ccc2ec8ad90bd7e2cbba734e'/>
<id>761c81d43335a5d5ccc2ec8ad90bd7e2cbba734e</id>
<content type='text'>
* [boost] update generator script for boost 1.76

* [boost] update ports to 1.76.0 (run generator)

* [boost] fix windows build?

* [quantlib] update and fix mac build

* [symengine] update and fix build

* [avro-cpp] update to latest master and fix windows build

* [folly] update to 2021.05.31.00

* [fbthrift, fizz, wangle] update to v2021.05.31.00 and fix build

* [proxygen] update to version 2021.05.31.00

* [fizz, proxygen, fbthrift] fix sodium target

* [proxygen] also works on macOS

* [quantlib] use fix from upstream to fix mac build

* [symengine] minimize patch file and fix deprecation warning

* [folly,proxygen,wangle,fizz,fbthrift] update to 2021.06.14.00

* [fbthrift] remove unnecessary dependency rsocket

I couldn't find any information that this dependency exists. The term is used in the code, but not in the context of a dependency

* [fizz,fbthrift] fix zlib dependency

* [fbthrift] pass required flex executable to cmake configure

* add version files

* [boost] generate-ports.ps1: Apply code review

* [boost] changes from new version of generate-ports script

* update version files

* [boost] generate-ports.ps1: Apply code review</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [boost] update generator script for boost 1.76

* [boost] update ports to 1.76.0 (run generator)

* [boost] fix windows build?

* [quantlib] update and fix mac build

* [symengine] update and fix build

* [avro-cpp] update to latest master and fix windows build

* [folly] update to 2021.05.31.00

* [fbthrift, fizz, wangle] update to v2021.05.31.00 and fix build

* [proxygen] update to version 2021.05.31.00

* [fizz, proxygen, fbthrift] fix sodium target

* [proxygen] also works on macOS

* [quantlib] use fix from upstream to fix mac build

* [symengine] minimize patch file and fix deprecation warning

* [folly,proxygen,wangle,fizz,fbthrift] update to 2021.06.14.00

* [fbthrift] remove unnecessary dependency rsocket

I couldn't find any information that this dependency exists. The term is used in the code, but not in the context of a dependency

* [fizz,fbthrift] fix zlib dependency

* [fbthrift] pass required flex executable to cmake configure

* add version files

* [boost] generate-ports.ps1: Apply code review

* [boost] changes from new version of generate-ports script

* update version files

* [boost] generate-ports.ps1: Apply code review</pre>
</div>
</content>
</entry>
<entry>
<title>[wxwidgets] Merge fix-patch from upstream (#18016)</title>
<updated>2021-05-21T07:36:51+00:00</updated>
<author>
<name>cnbatch</name>
<email>cnbatch@gmail.com</email>
</author>
<published>2021-05-21T07:36:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=eed75c0ad57c9e41537f4006debca6cdd7021f25'/>
<id>eed75c0ad57c9e41537f4006debca6cdd7021f25</id>
<content type='text'>
* [wxwidgets] Merge fix-patch from upstream

Upstream fix: https://github.com/wxWidgets/wxWidgets/commit/94b399418cf37df6934ae3defbec8626af2cd965

* [wxwidgets] Merge fix-patch from upstream

Upstream fix: https://github.com/wxWidgets/wxWidgets/commit/94b399418cf37df6934ae3defbec8626af2cd965</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [wxwidgets] Merge fix-patch from upstream

Upstream fix: https://github.com/wxWidgets/wxWidgets/commit/94b399418cf37df6934ae3defbec8626af2cd965

* [wxwidgets] Merge fix-patch from upstream

Upstream fix: https://github.com/wxWidgets/wxWidgets/commit/94b399418cf37df6934ae3defbec8626af2cd965</pre>
</div>
</content>
</entry>
</feed>
