<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/versions/z-, 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>[zlib] Fix wrapper message (#19999)</title>
<updated>2021-10-11T17:21:07+00:00</updated>
<author>
<name>Kai Pastor</name>
<email>dg0yt@darc.de</email>
</author>
<published>2021-10-11T17:21:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=822eb4b4ce82d76fa5bcfa8f5774f47db4e01e8b'/>
<id>822eb4b4ce82d76fa5bcfa8f5774f47db4e01e8b</id>
<content type='text'>
* Fix wrapper message

* x-add-version

* Ease wrapper warning condition

* Avoid CMP0074 warning

* Update versions

* CR request: Modify validation

* Update versions

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>
* Fix wrapper message

* x-add-version

* Ease wrapper warning condition

* Avoid CMP0074 warning

* Update versions

* CR request: Modify validation

* Update versions

Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[z3] Update to 4.8.12 (#20348)</title>
<updated>2021-09-28T03:51:56+00:00</updated>
<author>
<name>chausner</name>
<email>15180557+chausner@users.noreply.github.com</email>
</author>
<published>2021-09-28T03:51:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=261103472f2dfd9ba5c6774d53a102ee27e8a677'/>
<id>261103472f2dfd9ba5c6774d53a102ee27e8a677</id>
<content type='text'>
* Update z3 to 4.8.12

* Update CI baseline

* Change version-semver to version

* Update git-tree hash

* Update z3.json

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 z3 to 4.8.12

* Update CI baseline

* Change version-semver to version

* Update git-tree hash

* Update z3.json

Co-authored-by: chausner &lt;chausner@users.noreply.github.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>[zlib] Download source over https instead of http (#19842)</title>
<updated>2021-09-03T07:03:38+00:00</updated>
<author>
<name>Chocobo1</name>
<email>Chocobo1@users.noreply.github.com</email>
</author>
<published>2021-09-03T07:03:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8c092e5cb6c275906758f0b5b54dde4ce6afaaa0'/>
<id>8c092e5cb6c275906758f0b5b54dde4ce6afaaa0</id>
<content type='text'>
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>
Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[zstd] update to 1.5.0 (#18915)</title>
<updated>2021-08-26T04:08:51+00:00</updated>
<author>
<name>JonLiu1993</name>
<email>63675417+JonLiu1993@users.noreply.github.com</email>
</author>
<published>2021-08-26T04:08:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=dd3d6df5001d49f954bc39b73a4c49ae3c9e8d15'/>
<id>dd3d6df5001d49f954bc39b73a4c49ae3c9e8d15</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[zug] Add port (#19539)</title>
<updated>2021-08-19T00:14:24+00:00</updated>
<author>
<name>eli</name>
<email>wbn@striated.space</email>
</author>
<published>2021-08-19T00:14:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=322e3e152a8310f7842c8f568dd3747017a93e48'/>
<id>322e3e152a8310f7842c8f568dd3747017a93e48</id>
<content type='text'>
* add zug port

* run `vcpkg x-add-version --all`

* add missing docs feature to zug

* run `vcpkg x-add-version --all --overwrite-version`

* Apply suggestions from code review

Co-authored-by: JonLiu1993 &lt;63675417+JonLiu1993@users.noreply.github.com&gt;

* format vcpkg.json

* update version

Co-authored-by: JonLiu1993 &lt;63675417+JonLiu1993@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>
* add zug port

* run `vcpkg x-add-version --all`

* add missing docs feature to zug

* run `vcpkg x-add-version --all --overwrite-version`

* Apply suggestions from code review

Co-authored-by: JonLiu1993 &lt;63675417+JonLiu1993@users.noreply.github.com&gt;

* format vcpkg.json

* update version

Co-authored-by: JonLiu1993 &lt;63675417+JonLiu1993@users.noreply.github.com&gt;
Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[zlib] Add cmake wrapper (#18914)</title>
<updated>2021-07-26T23:54:30+00:00</updated>
<author>
<name>Kai Pastor</name>
<email>dg0yt@darc.de</email>
</author>
<published>2021-07-26T23:54:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=7dbc05515b44bf54d2a42b4da9d1e1f910868b86'/>
<id>7dbc05515b44bf54d2a42b4da9d1e1f910868b86</id>
<content type='text'>
* Format manifest

* Add cmake wrapper

* x-add-version

* Always use vcpkg zlib for sentry native

* x-add-version

* Fix and simplify wrapper

* Update git-tree</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Format manifest

* Add cmake wrapper

* x-add-version

* Always use vcpkg zlib for sentry native

* x-add-version

* Fix and simplify wrapper

* Update git-tree</pre>
</div>
</content>
</entry>
<entry>
<title>[zeromq] Fix arm build, fix feature websockets-sha1 (#19074)</title>
<updated>2021-07-26T18:07:10+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2021-07-26T18:07:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=358225a9177f750d7233ebc94348a7f5578e1041'/>
<id>358225a9177f750d7233ebc94348a7f5578e1041</id>
<content type='text'>
* [zeromq] Fix arm build, fix feature websockets-sha1

* update baseline

* version stuff

* Fix rename

* Update versions/z-/zeromq.json</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [zeromq] Fix arm build, fix feature websockets-sha1

* update baseline

* version stuff

* Fix rename

* Update versions/z-/zeromq.json</pre>
</div>
</content>
</entry>
<entry>
<title>[zlib-ng] create a new port (#18223)</title>
<updated>2021-06-10T23:13:36+00:00</updated>
<author>
<name>Park DongHa</name>
<email>luncliff@gmail.com</email>
</author>
<published>2021-06-10T23:13:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=96bc28ea592fd401ee4c7c3d4845fb9a75a4ed43'/>
<id>96bc28ea592fd401ee4c7c3d4845fb9a75a4ed43</id>
<content type='text'>
* [zlib-ng] create a new port

* [zlib-ng] update baseline

* [zlib-ng] remove zlib-compat

* [zlib-ng] remove unused dependency</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [zlib-ng] create a new port

* [zlib-ng] update baseline

* [zlib-ng] remove zlib-compat

* [zlib-ng] remove unused dependency</pre>
</div>
</content>
</entry>
<entry>
<title>[z3] Update to 4.8.10 to support arm triplet (#18104)</title>
<updated>2021-06-01T19:14:39+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2021-06-01T19:14:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e4e4ee9c9fff0a982a15afccc080a153a33803f2'/>
<id>e4e4ee9c9fff0a982a15afccc080a153a33803f2</id>
<content type='text'>
* [z3] Update to 4.8.10 to support arm triplet

* update version record</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [z3] Update to 4.8.10 to support arm triplet

* update version record</pre>
</div>
</content>
</entry>
</feed>
