<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/versions/y-, 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>[yas] Update to 7.1.0 (#20497)</title>
<updated>2021-10-05T00:13:23+00:00</updated>
<author>
<name>chausner</name>
<email>15180557+chausner@users.noreply.github.com</email>
</author>
<published>2021-10-05T00:13:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=024095853225d7e0799149903fea67030a2d6e7e'/>
<id>024095853225d7e0799149903fea67030a2d6e7e</id>
<content type='text'>
* Update yas to 7.1.0

* Update CI baseline

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 yas to 7.1.0

* Update CI baseline

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[yoga] Update to 1.19.0 (#20330)</title>
<updated>2021-09-28T18:48:38+00:00</updated>
<author>
<name>chausner</name>
<email>15180557+chausner@users.noreply.github.com</email>
</author>
<published>2021-09-28T18:48:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=7d7653bcd29b8c92bceb480fc9b7033fdf9a5e18'/>
<id>7d7653bcd29b8c92bceb480fc9b7033fdf9a5e18</id>
<content type='text'>
* Update yoga to 1.19.0

* Update CI baseline

* Change version-string to version-semver

Co-authored-by: Phoebe &lt;20694052+PhoebeHui@users.noreply.github.com&gt;

* Update git-tree hash

* Update yoga.json

* Use version instead of version-semver as yoga doesn't document that they follow semver.

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Phoebe &lt;20694052+PhoebeHui@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 yoga to 1.19.0

* Update CI baseline

* Change version-string to version-semver

Co-authored-by: Phoebe &lt;20694052+PhoebeHui@users.noreply.github.com&gt;

* Update git-tree hash

* Update yoga.json

* Use version instead of version-semver as yoga doesn't document that they follow semver.

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Phoebe &lt;20694052+PhoebeHui@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>[yaml-cpp] fix cmake and pkgconfig files (#19703)</title>
<updated>2021-09-07T21:17:18+00:00</updated>
<author>
<name>autoantwort</name>
<email>41973254+autoantwort@users.noreply.github.com</email>
</author>
<published>2021-09-07T21:17:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8307923c6aebccfec9a92c4378bbb887c73078a7'/>
<id>8307923c6aebccfec9a92c4378bbb887c73078a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[yaml-cpp] update to 0.7.0 (#19272)</title>
<updated>2021-08-10T08:11:41+00:00</updated>
<author>
<name>autoantwort</name>
<email>41973254+autoantwort@users.noreply.github.com</email>
</author>
<published>2021-08-10T08:11:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=be456649fd835f6d2d676b81886fb6a58d5b52da'/>
<id>be456649fd835f6d2d676b81886fb6a58d5b52da</id>
<content type='text'>
* [yaml-cpp] update to 0.7.0

* [opencolorio] update to 2.0.1

* [openimageio] Update to 2.2.17.0

* [pystring] move header to pystring subfolder

* add version files</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [yaml-cpp] update to 0.7.0

* [opencolorio] update to 2.0.1

* [openimageio] Update to 2.2.17.0

* [pystring] move header to pystring subfolder

* add version files</pre>
</div>
</content>
</entry>
<entry>
<title>[YARA] update to 4.1.1 (#18977)</title>
<updated>2021-07-22T21:23:35+00:00</updated>
<author>
<name>henriblMSFT</name>
<email>62611385+henriblMSFT@users.noreply.github.com</email>
</author>
<published>2021-07-22T21:23:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=7fac0dc1440b79ac9afffaa2af45578518d5750e'/>
<id>7fac0dc1440b79ac9afffaa2af45578518d5750e</id>
<content type='text'>
* [YARA] update to 4.1.1

* Add baseline frrom .\vcpkg.exe x-add-version yara</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [YARA] update to 4.1.1

* Add baseline frrom .\vcpkg.exe x-add-version yara</pre>
</div>
</content>
</entry>
<entry>
<title>[yyjson] Update to v0.3.0 (#18359)</title>
<updated>2021-06-15T18:53:18+00:00</updated>
<author>
<name>myd7349</name>
<email>myd7349@gmail.com</email>
</author>
<published>2021-06-15T18:53:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=d955e62d7e460689d46fe90ea907a24e8da2f9c9'/>
<id>d955e62d7e460689d46fe90ea907a24e8da2f9c9</id>
<content type='text'>
* [yyjson] Update to 0.3.0

* [yyjson] vcpkg x-add-version yyjson</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [yyjson] Update to 0.3.0

* [yyjson] vcpkg x-add-version yyjson</pre>
</div>
</content>
</entry>
<entry>
<title>[yaml-cpp] Fix visibility attribute for ubuntu (#17728)</title>
<updated>2021-06-10T18:26:29+00:00</updated>
<author>
<name>Jafar Abdi</name>
<email>cafer.abdi@gmail.com</email>
</author>
<published>2021-06-10T18:26:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=805a02fe990f194af59cdaca61817d31b56506c6'/>
<id>805a02fe990f194af59cdaca61817d31b56506c6</id>
<content type='text'>
* Replace YAML_CPP_DLL with 1 iff the library is build as shared library &amp; target is windows

* Update port version

* Run x-add-version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Replace YAML_CPP_DLL with 1 iff the library is build as shared library &amp; target is windows

* Update port version

* Run x-add-version</pre>
</div>
</content>
</entry>
<entry>
<title>[yomm2] new port (#17886)</title>
<updated>2021-05-26T17:33:43+00:00</updated>
<author>
<name>Fabien Péan</name>
<email>fabien@pean.pro</email>
</author>
<published>2021-05-26T17:33:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=5c847acb56e4ef228e036e7cd84fb71c84edd456'/>
<id>5c847acb56e4ef228e036e7cd84fb71c84edd456</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[yasm-tool] Migrate to Host Dependencies (#16478)</title>
<updated>2021-05-21T18:56:32+00:00</updated>
<author>
<name>nicole mazzuca</name>
<email>mazzucan@outlook.com</email>
</author>
<published>2021-05-21T18:56:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=49b67d9cb856424ff69f10e7721aec5299624268'/>
<id>49b67d9cb856424ff69f10e7721aec5299624268</id>
<content type='text'>
* [yasm-tool] Fix usage of port to be host dependencies

This allows mpg123, nettle, and gmp to support non-x86 windows manifest mode

* fix gmp

* oops

* versions update</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [yasm-tool] Fix usage of port to be host dependencies

This allows mpg123, nettle, and gmp to support non-x86 windows manifest mode

* fix gmp

* oops

* versions update</pre>
</div>
</content>
</entry>
</feed>
