<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/wil, 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>[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>[wil] Updating WIL version to match its nuget package version (#16575)</title>
<updated>2021-03-10T19:29:45+00:00</updated>
<author>
<name>anaaru</name>
<email>80126804+anaaru@users.noreply.github.com</email>
</author>
<published>2021-03-10T19:29:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f5bfe6dc188f26d541f57333dc74922f9801a70a'/>
<id>f5bfe6dc188f26d541f57333dc74922f9801a70a</id>
<content type='text'>
* [wil] Updating WIL version to match its nuget package version

* Removing port version from CONTROL file

* Revert "Removing port version from CONTROL file"

Reverting because PR tests are failing.

This reverts commit 28ffcba04b3d053e9a01d965fab951eafa64449b.

* Updating baseline.json and w-/wil.json

* update version

* modify portfile.cmake

* update version

Co-authored-by: Anand Arumugam &lt;anand.arumug@gmail.com&gt;
Co-authored-by: Anand Arumugam &lt;anaaru@microsoft.com&gt;
Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [wil] Updating WIL version to match its nuget package version

* Removing port version from CONTROL file

* Revert "Removing port version from CONTROL file"

Reverting because PR tests are failing.

This reverts commit 28ffcba04b3d053e9a01d965fab951eafa64449b.

* Updating baseline.json and w-/wil.json

* update version

* modify portfile.cmake

* update version

Co-authored-by: Anand Arumugam &lt;anand.arumug@gmail.com&gt;
Co-authored-by: Anand Arumugam &lt;anaaru@microsoft.com&gt;
Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[wil] Use internal CMakeLists (#15438)</title>
<updated>2021-01-05T20:44:06+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2021-01-05T20:44:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e2cefd749d552b67a468018e5f6dd6e1fbb31863'/>
<id>e2cefd749d552b67a468018e5f6dd6e1fbb31863</id>
<content type='text'>
* [wil] Use internal CMakeLists

* [wil] Fix install headers on Linux</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [wil] Use internal CMakeLists

* [wil] Fix install headers on Linux</pre>
</div>
</content>
</entry>
<entry>
<title>Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065)</title>
<updated>2020-10-28T21:18:07+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2020-10-28T21:18:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=09a647a5261e981cbbc8219292c838490ed0b06f'/>
<id>09a647a5261e981cbbc8219292c838490ed0b06f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[wil] Update to 2020-05-19 (#11506)</title>
<updated>2020-05-23T04:59:05+00:00</updated>
<author>
<name>Duncan Horn</name>
<email>40036384+dunhor@users.noreply.github.com</email>
</author>
<published>2020-05-23T04:59:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a8305275635ee80d85bead373d09d4656eb41237'/>
<id>a8305275635ee80d85bead373d09d4656eb41237</id>
<content type='text'>
* Update commit for WIL

* Update wil port to match the commit used for NuGet package 1.0.190716.2

* Update WIL port

* Update WIL port</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update commit for WIL

* Update wil port to match the commit used for NuGet package 1.0.190716.2

* Update WIL port

* Update WIL port</pre>
</div>
</content>
</entry>
<entry>
<title>Update WIL port (#8948)</title>
<updated>2019-11-19T19:12:30+00:00</updated>
<author>
<name>Duncan Horn</name>
<email>40036384+dunhor@users.noreply.github.com</email>
</author>
<published>2019-11-19T19:12:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=7c412eb0442b0d633c5a3b82f2b9b130d7e53a2b'/>
<id>7c412eb0442b0d633c5a3b82f2b9b130d7e53a2b</id>
<content type='text'>
* Update commit for WIL

* Update wil port to match the commit used for NuGet package 1.0.190716.2

* Update WIL port
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update commit for WIL

* Update wil port to match the commit used for NuGet package 1.0.190716.2

* Update WIL port
</pre>
</div>
</content>
</entry>
<entry>
<title> [wil] match commit used for NuGet package 1.0.190716.2 (#7285)</title>
<updated>2019-07-18T06:31:17+00:00</updated>
<author>
<name>Duncan Horn</name>
<email>40036384+dunhor@users.noreply.github.com</email>
</author>
<published>2019-07-18T06:31:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=45e53e13f6ef020a05945b3466f043ac3b3799be'/>
<id>45e53e13f6ef020a05945b3466f043ac3b3799be</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[wil] Update (#7215)</title>
<updated>2019-07-09T18:35:43+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2019-07-09T18:35:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e5d7cc9160b929e8609b43a7bda5ad0e9323be75'/>
<id>e5d7cc9160b929e8609b43a7bda5ad0e9323be75</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update commit for WIL (#6847)</title>
<updated>2019-06-11T00:24:35+00:00</updated>
<author>
<name>Duncan Horn</name>
<email>40036384+dunhor@users.noreply.github.com</email>
</author>
<published>2019-06-11T00:24:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=bd53b5dde1be95ad0e29619e1d52f312fb0a193c'/>
<id>bd53b5dde1be95ad0e29619e1d52f312fb0a193c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
