<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/polyhook2/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>[Polyhook2]Update to the latest version (#17754)</title>
<updated>2021-05-18T22:36:40+00:00</updated>
<author>
<name>Stephen Eckels</name>
<email>stevemk14ebr@gmail.com</email>
</author>
<published>2021-05-18T22:36:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=2499107f4099721777973cf0fece85e7879e3b54'/>
<id>2499107f4099721777973cf0fece85e7879e3b54</id>
<content type='text'>
* update_polyhook2

* update polyhook2

* [Polyhook2]Update to the latest version

Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update_polyhook2

* update polyhook2

* [Polyhook2]Update to the latest version

Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>update_polyhook2 (#15537)</title>
<updated>2021-01-11T08:07:19+00:00</updated>
<author>
<name>Stephen Eckels</name>
<email>stevemk14ebr@gmail.com</email>
</author>
<published>2021-01-11T08:07:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=d1038faab13dd9eb2ff06dd74c283d17cfa85971'/>
<id>d1038faab13dd9eb2ff06dd74c283d17cfa85971</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ebml/gppanel/matroska/polyhook2/unrar] Fix typos in CONTROL files (#14794)</title>
<updated>2020-11-26T23:05:51+00:00</updated>
<author>
<name>NancyLi1013</name>
<email>46708020+NancyLi1013@users.noreply.github.com</email>
</author>
<published>2020-11-26T23:05:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=62fe6ffbbbae9149fb8c48cde2a34b809e2a3008'/>
<id>62fe6ffbbbae9149fb8c48cde2a34b809e2a3008</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[polyhook2] Update to new version (#13645)</title>
<updated>2020-09-28T00:36:46+00:00</updated>
<author>
<name>Stephen Eckels</name>
<email>stevemk14ebr@gmail.com</email>
</author>
<published>2020-09-28T00:36:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=84c22a78b49f5682d17a5549d8399bc25edfd753'/>
<id>84c22a78b49f5682d17a5549d8399bc25edfd753</id>
<content type='text'>
* Update polyhook2

* [polyhook2] Update CONTROL

* Update portfile.cmake

Co-authored-by: wangli28 &lt;wangli28@beyondsoft.com&gt;
Co-authored-by: Lily &lt;47812810+LilyWangL@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update polyhook2

* [polyhook2] Update CONTROL

* Update portfile.cmake

Co-authored-by: wangli28 &lt;wangli28@beyondsoft.com&gt;
Co-authored-by: Lily &lt;47812810+LilyWangL@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[polyhook2] Update to latest (#13221)</title>
<updated>2020-08-31T16:26:58+00:00</updated>
<author>
<name>Stephen Eckels</name>
<email>stevemk14ebr@gmail.com</email>
</author>
<published>2020-08-31T16:26:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=19b706c9d403c693b235ed31fee068936d71f346'/>
<id>19b706c9d403c693b235ed31fee068936d71f346</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[asmjit] Update to the latest commit (#12524)</title>
<updated>2020-08-07T19:17:10+00:00</updated>
<author>
<name>ζeh Matt</name>
<email>m.moninger.h@gmail.com</email>
</author>
<published>2020-08-07T19:17:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=15141fbc95f1994c164ec55b93cad163008ca0b0'/>
<id>15141fbc95f1994c164ec55b93cad163008ca0b0</id>
<content type='text'>
* [asmjit] Update to the latest commit

* Use the correct date for version

* Update ci.baseline.txt

* [polyhook2] Update to the latest commit

* Update portfile.cmake

* Remove polyhook2 from ci.baseline.txt

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>
* [asmjit] Update to the latest commit

* Use the correct date for version

* Update ci.baseline.txt

* [polyhook2] Update to the latest commit

* Update portfile.cmake

* Remove polyhook2 from ci.baseline.txt

Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[polyhook2]  Update to latest (#12189)</title>
<updated>2020-07-06T20:15:26+00:00</updated>
<author>
<name>Stephen Eckels</name>
<email>stevemk14ebr@gmail.com</email>
</author>
<published>2020-07-06T20:15:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e5e521a0d13abc76e5ab95ab940c58db676e65d0'/>
<id>e5e521a0d13abc76e5ab95ab940c58db676e65d0</id>
<content type='text'>
* bump polyhook2 version

* update polyhook2</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* bump polyhook2 version

* update polyhook2</pre>
</div>
</content>
</entry>
<entry>
<title>[polyhook2] Update polyhook to latest (#11729)</title>
<updated>2020-06-11T08:42:34+00:00</updated>
<author>
<name>Stephen Eckels</name>
<email>stevemk14ebr@gmail.com</email>
</author>
<published>2020-06-11T08:42:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=2c35ce16bbc8bf0fc26c2b3f8e9f046771e1537a'/>
<id>2c35ce16bbc8bf0fc26c2b3f8e9f046771e1537a</id>
<content type='text'>
* update polyhook to latest

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* push polyhook2 fix

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* fix build

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update polyhook to latest

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* push polyhook2 fix

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version

* fix build

* bump polyhook2 version

* bump polyhook2 version

* bump polyhook2 version</pre>
</div>
</content>
</entry>
<entry>
<title>[polyhook2] Update to 2020-05-25 (#11561)</title>
<updated>2020-06-02T01:57:11+00:00</updated>
<author>
<name>Matthias C. M. Troffaes</name>
<email>matthias.troffaes@gmail.com</email>
</author>
<published>2020-06-02T01:57:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e7041e1ef6f61ef01cee0eed90308930258ba457'/>
<id>e7041e1ef6f61ef01cee0eed90308930258ba457</id>
<content type='text'>
* [polyhook2] Update to 2020-05-25

- Update to latest PolyHook_2 revision.

- Add support for zydis and inlinentd as features (enabled by default, as per upstream default).

- Support for capstone, exception, detours, and pe is now configurable via features (all enabled by default, as per upstream default).

- Remove cmake build patch. Relevant parts have been upstreamed.

- For now, remove tool feature for building tests, as upstream does not support building tests along with building the library.

- Add support for cmake config so library can be used simply with "find_package(PolyHook_2 CONFIG REQUIRE)".

* [polyhook2] package does not support arm, uwp, linux, and osx

Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.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>
* [polyhook2] Update to 2020-05-25

- Update to latest PolyHook_2 revision.

- Add support for zydis and inlinentd as features (enabled by default, as per upstream default).

- Support for capstone, exception, detours, and pe is now configurable via features (all enabled by default, as per upstream default).

- Remove cmake build patch. Relevant parts have been upstreamed.

- For now, remove tool feature for building tests, as upstream does not support building tests along with building the library.

- Add support for cmake config so library can be used simply with "find_package(PolyHook_2 CONFIG REQUIRE)".

* [polyhook2] package does not support arm, uwp, linux, and osx

Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.com&gt;

Co-authored-by: NancyLi1013 &lt;46708020+NancyLi1013@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
</feed>
