<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/pegtl, 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>[pegtl] Update to 3.2.1 (#20400)</title>
<updated>2021-09-29T15:39:07+00:00</updated>
<author>
<name>chausner</name>
<email>15180557+chausner@users.noreply.github.com</email>
</author>
<published>2021-09-29T15:39:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ac10ff41f8d3ec385891837a824a4abfac329aa3'/>
<id>ac10ff41f8d3ec385891837a824a4abfac329aa3</id>
<content type='text'>
* Update pegtl to 3.2.1

* Update CI baseline

* Update ports/pegtl/portfile.cmake

* Update versions/p-/pegtl.json

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;
Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update pegtl to 3.2.1

* Update CI baseline

* Update ports/pegtl/portfile.cmake

* Update versions/p-/pegtl.json

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;
Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@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>[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>[VTK/vtk-m]  Update VTK to 9.0 and add vtk-m (#11148)</title>
<updated>2020-05-11T20:39:50+00:00</updated>
<author>
<name>Alexander Neumann</name>
<email>30894796+Neumann-A@users.noreply.github.com</email>
</author>
<published>2020-05-11T20:39:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=3e2409f47ddd0f737851448faa63067a6816c285'/>
<id>3e2409f47ddd0f737851448faa63067a6816c285</id>
<content type='text'>
* [vtk-m] new port vtk-m

* [VTK] Update to 9.0

* include local buildtree changes

* [pcl] disable VTK due to API changes in VTK 9.0

* [vtk-m] add supports field to be only x64

* [vtk-dicom] add python executable.

* fix vtkm dependency

* [vtk-dicom] fix missing std:: namespace

* [vtk-m] add uwp to unsupported triplets

* [vtk] add pegtl include patch, reenable IOMotionFX

* remove hdf5 changes for testing

* use different pgetl patch which redirects to the installed config of pegtl

* [pegtl-2] version file needs renaming too

* [vtk] change dependency to pgetl-2 and fix the patch

* [vtk] put in hdf5 fix again and correct manually installed include files

* remove deprecated function to retrigger CI

* [lz4] correctly lowercase the lz4 config

* [vtk] remove unnecessary code

* [pegtl-2] add homepage

* [pegtl] modernize portfiles

* [vtk-dicom] add homepage

* [vtk-dicom] modernize portfile

* [vtk-m] remove empty build depends

* [vtk] try fixing the permission issue

* bump control

* Update FindHDF5.cmake

* Update pegtl.patch

* Update ports/vtk/pegtl.patch

Co-authored-by: nicole mazzuca &lt;mazzucan@outlook.com&gt;

* [vtk] refactor portfile, added a few deps on [core] and added feature cuda

* [vtk] pegtl.patch: Add additional found message

* [vtk-m] add more documentation comments

* [vtk] fix string replacement

Co-authored-by: nicole mazzuca &lt;mazzucan@outlook.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [vtk-m] new port vtk-m

* [VTK] Update to 9.0

* include local buildtree changes

* [pcl] disable VTK due to API changes in VTK 9.0

* [vtk-m] add supports field to be only x64

* [vtk-dicom] add python executable.

* fix vtkm dependency

* [vtk-dicom] fix missing std:: namespace

* [vtk-m] add uwp to unsupported triplets

* [vtk] add pegtl include patch, reenable IOMotionFX

* remove hdf5 changes for testing

* use different pgetl patch which redirects to the installed config of pegtl

* [pegtl-2] version file needs renaming too

* [vtk] change dependency to pgetl-2 and fix the patch

* [vtk] put in hdf5 fix again and correct manually installed include files

* remove deprecated function to retrigger CI

* [lz4] correctly lowercase the lz4 config

* [vtk] remove unnecessary code

* [pegtl-2] add homepage

* [pegtl] modernize portfiles

* [vtk-dicom] add homepage

* [vtk-dicom] modernize portfile

* [vtk-m] remove empty build depends

* [vtk] try fixing the permission issue

* bump control

* Update FindHDF5.cmake

* Update pegtl.patch

* Update ports/vtk/pegtl.patch

Co-authored-by: nicole mazzuca &lt;mazzucan@outlook.com&gt;

* [vtk] refactor portfile, added a few deps on [core] and added feature cuda

* [vtk] pegtl.patch: Add additional found message

* [vtk-m] add more documentation comments

* [vtk] fix string replacement

Co-authored-by: nicole mazzuca &lt;mazzucan@outlook.com&gt;</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>
</feed>
