<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/pegtl/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>[pegtl] Update to 3.2.0 release (#15700)</title>
<updated>2021-01-19T08:46:00+00:00</updated>
<author>
<name>Bill Avery</name>
<email>wravery@users.noreply.github.com</email>
</author>
<published>2021-01-19T08:46:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=16070fffea2715b966ba903af436fcd599502d8d'/>
<id>16070fffea2715b966ba903af436fcd599502d8d</id>
<content type='text'>
* [pegtl] Update to 3.2.0 release

* Run x-add-version pegtl</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [pegtl] Update to 3.2.0 release

* Run x-add-version pegtl</pre>
</div>
</content>
</entry>
<entry>
<title>[pegtl] Update to release version 3.1.0 (#15186)</title>
<updated>2020-12-18T20:06:00+00:00</updated>
<author>
<name>Bill Avery</name>
<email>wravery@users.noreply.github.com</email>
</author>
<published>2020-12-18T20:06:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=dd9826c3b654e0eafa182f97d0f12013e32d6c72'/>
<id>dd9826c3b654e0eafa182f97d0f12013e32d6c72</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[pegtl] Update to 3.0.0 release (#14841)</title>
<updated>2020-12-07T16:25:38+00:00</updated>
<author>
<name>Bill Avery</name>
<email>wravery@users.noreply.github.com</email>
</author>
<published>2020-12-07T16:25:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=af87209c50b8970c839d1d4c9c7a3286aeb51347'/>
<id>af87209c50b8970c839d1d4c9c7a3286aeb51347</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[pegtl/cppgraphqlgen] matching updates for dependency (#11531)</title>
<updated>2020-05-27T04:47:34+00:00</updated>
<author>
<name>Bill Avery</name>
<email>wravery@users.noreply.github.com</email>
</author>
<published>2020-05-27T04:47:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ec4846cbf54956f11698115ade55ca82d67e0e4e'/>
<id>ec4846cbf54956f11698115ade55ca82d67e0e4e</id>
<content type='text'>
* [pegtl] Update to latest 3.0.0-pre commit

* [cppgraphqlgen] Update to v3.2.2 (matches PEGTL)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [pegtl] Update to latest 3.0.0-pre commit

* [cppgraphqlgen] Update to v3.2.2 (matches PEGTL)</pre>
</div>
</content>
</entry>
<entry>
<title>[pegtl] Update to latest commit from 4/5/2020 (#10870)</title>
<updated>2020-04-21T20:25:39+00:00</updated>
<author>
<name>Bill Avery</name>
<email>wravery@users.noreply.github.com</email>
</author>
<published>2020-04-21T20:25:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c52d8f70d41ca0d536c7a8266e67ed6633c69680'/>
<id>c52d8f70d41ca0d536c7a8266e67ed6633c69680</id>
<content type='text'>
* [pegtl] Update to latest commit from 4/5/2020

* Add PEGTL homepage to CONTROL file

* Fix missing newline</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [pegtl] Update to latest commit from 4/5/2020

* Add PEGTL homepage to CONTROL file

* Fix missing newline</pre>
</div>
</content>
</entry>
<entry>
<title>[pegtl] Update to latest 3.0.0-pre commit (#10357)</title>
<updated>2020-03-10T22:45:28+00:00</updated>
<author>
<name>Bill Avery</name>
<email>wravery@users.noreply.github.com</email>
</author>
<published>2020-03-10T22:45:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=df3e7936fd20e0df2b4753bdcfe210d5c92e5741'/>
<id>df3e7936fd20e0df2b4753bdcfe210d5c92e5741</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[cppgraphqlgen] Update with matching PEGTL (#7639)</title>
<updated>2019-08-13T17:42:47+00:00</updated>
<author>
<name>Bill Avery</name>
<email>wravery@users.noreply.github.com</email>
</author>
<published>2019-08-13T17:42:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=69f7376b22b43089567bfa074f8479b4d815989d'/>
<id>69f7376b22b43089567bfa074f8479b4d815989d</id>
<content type='text'>
* [cppgraphqlgen] Update with matching PEGTL

* Pick up cppgraphqlgen v3.0.2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [cppgraphqlgen] Update with matching PEGTL

* Pick up cppgraphqlgen v3.0.2
</pre>
</div>
</content>
</entry>
<entry>
<title>[cppgraphqlgen] Update cppgraphqlgen and PEGTL to 3.0.0 (#6162)</title>
<updated>2019-04-23T22:19:51+00:00</updated>
<author>
<name>Bill Avery</name>
<email>wravery@users.noreply.github.com</email>
</author>
<published>2019-04-23T22:19:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=858b2973327b634872ae61f0bfeedc0fb762dde9'/>
<id>858b2973327b634872ae61f0bfeedc0fb762dde9</id>
<content type='text'>
 Upgrade PEGTL to 3.0.0-prerelease
Update cppgraphqlgen to 3.0.0
Add pegtl-2 port
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 Upgrade PEGTL to 3.0.0-prerelease
Update cppgraphqlgen to 3.0.0
Add pegtl-2 port
</pre>
</div>
</content>
</entry>
<entry>
<title>[PEGTL] Upgrade to 2.8.0</title>
<updated>2019-04-11T15:36:05+00:00</updated>
<author>
<name>Zhihao Yuan</name>
<email>zy@simplerose.com</email>
</author>
<published>2019-04-09T21:34:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e946273950170f9427a980a7855017a1b4b65281'/>
<id>e946273950170f9427a980a7855017a1b4b65281</id>
<content type='text'>
Migration guide:
https://github.com/taocpp/PEGTL/blob/master/doc/Migration-Guide.md#version-280
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Migration guide:
https://github.com/taocpp/PEGTL/blob/master/doc/Migration-Guide.md#version-280
</pre>
</div>
</content>
</entry>
</feed>
