<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/cppcoro, 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>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>[cppcoro] Simplify CMakeLists.txt to ease future maintenance. Fix VS 2019 builds.</title>
<updated>2020-04-24T10:04:26+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2020-04-24T10:04:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b009c2e5b047591d14ba5a36f682942ccdb14d42'/>
<id>b009c2e5b047591d14ba5a36f682942ccdb14d42</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[cppcoro] force static linkage</title>
<updated>2020-04-16T17:19:19+00:00</updated>
<author>
<name>Park DongHa</name>
<email>luncliff@gmail.com</email>
</author>
<published>2020-04-16T17:19:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b3c031a65a7a1c17b3c0cb3afcd973c70106cf19'/>
<id>b3c031a65a7a1c17b3c0cb3afcd973c70106cf19</id>
<content type='text'>
* report error for clang-cl

build with VC++ in VS 2019 will fail by the header file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* report error for clang-cl

build with VC++ in VS 2019 will fail by the header file.
</pre>
</div>
</content>
</entry>
<entry>
<title>[cppcoro] port install failure on platforms</title>
<updated>2020-04-16T05:57:29+00:00</updated>
<author>
<name>luncliff</name>
<email>luncliff@gmail.com</email>
</author>
<published>2020-04-16T05:57:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=6c23ad6d9873037f0473a2877091abaa68372cf2'/>
<id>6c23ad6d9873037f0473a2877091abaa68372cf2</id>
<content type='text'>
* vcpkg_fail_port_install on uwp/linux

mention PR #10693 so linux/clang users can see the port issues
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* vcpkg_fail_port_install on uwp/linux

mention PR #10693 so linux/clang users can see the port issues
</pre>
</div>
</content>
</entry>
<entry>
<title>[cppcoro] 2020-02-28</title>
<updated>2020-04-10T10:43:49+00:00</updated>
<author>
<name>luncliff</name>
<email>luncliff@gmail.com</email>
</author>
<published>2020-04-10T10:43:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=91b61bc82859de0ebe98b5b53b376101db83965a'/>
<id>91b61bc82859de0ebe98b5b53b376101db83965a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[cppcoro] embed CMakeLists.txt file</title>
<updated>2020-04-10T09:17:04+00:00</updated>
<author>
<name>luncliff</name>
<email>luncliff@gmail.com</email>
</author>
<published>2020-04-10T09:17:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=7e6235bd3adca2a87f245a33657baabaa2c92993'/>
<id>7e6235bd3adca2a87f245a33657baabaa2c92993</id>
<content type='text'>
* copy the CMakeLists.txt file and start build with it
* change version to 2020.2

For now the repo doesn't have any tags.
Therefore its version followed the latest commit,
which is made in 2020 Feb.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* copy the CMakeLists.txt file and start build with it
* change version to 2020.2

For now the repo doesn't have any tags.
Therefore its version followed the latest commit,
which is made in 2020 Feb.
</pre>
</div>
</content>
</entry>
<entry>
<title>[cppcoro] update with PR review</title>
<updated>2020-04-07T14:47:29+00:00</updated>
<author>
<name>Park DongHa</name>
<email>luncliff@gmail.com</email>
</author>
<published>2020-04-07T14:47:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=dfdb2095fbef21060df6205bd2875ede4a585a7d'/>
<id>dfdb2095fbef21060df6205bd2875ede4a585a7d</id>
<content type='text'>
* update reference to tag and hash value
* ${PORT} for destination

Linux build support should marked unavailable?
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update reference to tag and hash value
* ${PORT} for destination

Linux build support should marked unavailable?
</pre>
</div>
</content>
</entry>
<entry>
<title>[cppcoro] add new port</title>
<updated>2020-04-04T12:36:38+00:00</updated>
<author>
<name>Park DongHa</name>
<email>luncliff@gmail.com</email>
</author>
<published>2020-04-04T12:36:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=aff31e139eb8a72c56c737446514b4a2ab5d9751'/>
<id>aff31e139eb8a72c56c737446514b4a2ab5d9751</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
