<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/signalrclient/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>[signalrclient]Update homepage URL (#19256)</title>
<updated>2021-08-05T23:25:07+00:00</updated>
<author>
<name>Brennan</name>
<email>brecon@microsoft.com</email>
</author>
<published>2021-08-05T23:25:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=84d892a73279392ce67745d78cd8e754cdbed8dd'/>
<id>84d892a73279392ce67745d78cd8e754cdbed8dd</id>
<content type='text'>
* Fix incorrect homepage URL

https://github.com/aspnet/SignalR-Client-Cpp is for the newer microsoft-signalr package.

* update version

* add Port-Version

* update version

Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix incorrect homepage URL

https://github.com/aspnet/SignalR-Client-Cpp is for the newer microsoft-signalr package.

* update version

* add Port-Version

* update version

Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[Baseline] Fix boost-*:arm-uwp failure and resolve conflicts in CI (#11496)</title>
<updated>2020-05-23T19:39:26+00:00</updated>
<author>
<name>Phoebe</name>
<email>20694052+PhoebeHui@users.noreply.github.com</email>
</author>
<published>2020-05-23T19:39:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=2ac2b5f3da6b46ff2ae900550bd7c44f39c57dcd'/>
<id>2ac2b5f3da6b46ff2ae900550bd7c44f39c57dcd</id>
<content type='text'>
* [baseline] Fix boost-*:arm-uwp failure and resolve conflicts in CI

* Remove itk:x64-osx=fail in CI

* Resolve conflicts

* Rebase the changes</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [baseline] Fix boost-*:arm-uwp failure and resolve conflicts in CI

* Remove itk:x64-osx=fail in CI

* Resolve conflicts

* Rebase the changes</pre>
</div>
</content>
</entry>
<entry>
<title>[cpprestsdk] Disable websockets by default. (#10478)</title>
<updated>2020-03-20T23:03:16+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2020-03-20T23:03:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=056e9517ec7c461cdfabe8ff73124325708a4723'/>
<id>056e9517ec7c461cdfabe8ff73124325708a4723</id>
<content type='text'>
* [cpprestsdk] Disable websockets by default.

The websockets backend cpprestsdk uses is websocketpp, which was last
committed to in late 2018 and appears defunct. Additionally, the
websockets feature brings an otherwise unnecessary Boost dependency on
Windows which takes a relatively long time to build.

Customers who still want the websockets bits can turn on the optional feature.

* Add dependency to signalr.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [cpprestsdk] Disable websockets by default.

The websockets backend cpprestsdk uses is websocketpp, which was last
committed to in late 2018 and appears defunct. Additionally, the
websockets feature brings an otherwise unnecessary Boost dependency on
Windows which takes a relatively long time to build.

Customers who still want the websockets bits can turn on the optional feature.

* Add dependency to signalr.</pre>
</div>
</content>
</entry>
<entry>
<title>Add PREFER_NINJA to many ports (#7468)</title>
<updated>2019-07-31T20:01:02+00:00</updated>
<author>
<name>Phoebe</name>
<email>925731795@qq.com</email>
</author>
<published>2019-07-31T20:01:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=bcff929875d76ade98c251038eea6f48171facc6'/>
<id>bcff929875d76ade98c251038eea6f48171facc6</id>
<content type='text'>
* Add PREFER_NINJA to many ports</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add PREFER_NINJA to many ports</pre>
</div>
</content>
</entry>
<entry>
<title>[WIP] Add a Homepage URL entry for vcpkg ports (#2933)</title>
<updated>2019-06-15T23:54:47+00:00</updated>
<author>
<name>pravic</name>
<email>ehysta@gmail.com</email>
</author>
<published>2019-06-15T23:54:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=18b029a5e3997fa4fdc7d3d06d56568a1d6f74ad'/>
<id>18b029a5e3997fa4fdc7d3d06d56568a1d6f74ad</id>
<content type='text'>
* [vcpkg] Add "Homepage" field to the CONTROL files.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [vcpkg] Add "Homepage" field to the CONTROL files.</pre>
</div>
</content>
</entry>
<entry>
<title>[signalrclient] fix cpprestsdk linkage (#6606)</title>
<updated>2019-05-24T19:09:17+00:00</updated>
<author>
<name>Alexander Neumann</name>
<email>30894796+Neumann-A@users.noreply.github.com</email>
</author>
<published>2019-05-24T19:09:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=070a41de0374eba8b35816db76d1e4f7df8733bb'/>
<id>070a41de0374eba8b35816db76d1e4f7df8733bb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title> [signalrclient]Fix build error (#5868)</title>
<updated>2019-03-30T05:21:40+00:00</updated>
<author>
<name>JackBoosY</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2019-03-30T05:21:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=9e8db15b9689730b06d1f9b15eec01593dccb7c5'/>
<id>9e8db15b9689730b06d1f9b15eec01593dccb7c5</id>
<content type='text'>
* [signalrclient]Fix build error: LNK2019 with openssl
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [signalrclient]Fix build error: LNK2019 with openssl
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix glfw3:x64-linux producing incorrect target (#3803)</title>
<updated>2018-07-03T11:41:53+00:00</updated>
<author>
<name>Qi-rui Chen</name>
<email>Qi-rui.Chen.2015@my.bristol.ac.uk</email>
</author>
<published>2018-07-03T11:41:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=98e8c22eafc42d0e3b91a005973b49578e0fe14f'/>
<id>98e8c22eafc42d0e3b91a005973b49578e0fe14f</id>
<content type='text'>
* Fix glfw3 creating incorrect target

glfw3Target.cmake uses a semicolon seperated list which needs to be
escaped with quotes on write

* Fix semicolon stripping

* Fix typo

* [dlib][glfw3][libodb][signalrclient] Bump versions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix glfw3 creating incorrect target

glfw3Target.cmake uses a semicolon seperated list which needs to be
escaped with quotes on write

* Fix semicolon stripping

* Fix typo

* [dlib][glfw3][libodb][signalrclient] Bump versions
</pre>
</div>
</content>
</entry>
<entry>
<title>[signalrclient] Use vcpkg_from_github</title>
<updated>2018-03-20T04:09:29+00:00</updated>
<author>
<name>Alexander Karatarakis</name>
<email>alkarata@microsoft.com</email>
</author>
<published>2018-03-20T04:09:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=efc0255f80d31c5eaef78fc507c246ee153a63aa'/>
<id>efc0255f80d31c5eaef78fc507c246ee153a63aa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
