<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/versions/h-, 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>[hfsm2] Update to 1.10.1 (#20729)</title>
<updated>2021-10-14T22:03:14+00:00</updated>
<author>
<name>chausner</name>
<email>15180557+chausner@users.noreply.github.com</email>
</author>
<published>2021-10-14T22:03:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b7cff0d6f4aea4023e9f400726c5629a9032bf4a'/>
<id>b7cff0d6f4aea4023e9f400726c5629a9032bf4a</id>
<content type='text'>
* Update hfsm2 to 1.10.1

* Update CI baseline

* Fix include path

* Update git-tree hash

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update hfsm2 to 1.10.1

* Update CI baseline

* Fix include path

* Update git-tree hash

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[hidapi] update to 0.11.0; switch to CMake (#20460)</title>
<updated>2021-10-05T00:18:49+00:00</updated>
<author>
<name>Be</name>
<email>be@mixxx.org</email>
</author>
<published>2021-10-05T00:18:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=3799a5f722f10e21d4bc62397a4c7d41910d9501'/>
<id>3799a5f722f10e21d4bc62397a4c7d41910d9501</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[hypodermic] added version 2.5.3, updated baseline (#20414)</title>
<updated>2021-09-30T22:45:01+00:00</updated>
<author>
<name>Lassi</name>
<email>lassi@helynranta.com</email>
</author>
<published>2021-09-30T22:45:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=25e38b64d31fdf004d3e06cdb843996b0dd00b65'/>
<id>25e38b64d31fdf004d3e06cdb843996b0dd00b65</id>
<content type='text'>
* added 2.5.3, updated baseline

* added quotes and fixed how license installation is done

* updated portfile based on bots recommendations

* Change version-semver to version.

Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* added 2.5.3, updated baseline

* added quotes and fixed how license installation is done

* updated portfile based on bots recommendations

* Change version-semver to version.

Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.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>[h3/jaeger-client-cpp] Update to the latest version (#20008)</title>
<updated>2021-09-08T15:00:54+00:00</updated>
<author>
<name>NancyLi1013</name>
<email>46708020+NancyLi1013@users.noreply.github.com</email>
</author>
<published>2021-09-08T15:00:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=6ea34201f3bad8aa7bc68ef381e236df787b5074'/>
<id>6ea34201f3bad8aa7bc68ef381e236df787b5074</id>
<content type='text'>
* [h3/jaeger-client-cpp] Update to the latest version

* Remove CONTROL files

* Update version files

* Update patch

* Update versions/j-/jaeger-client-cpp.json</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [h3/jaeger-client-cpp] Update to the latest version

* Remove CONTROL files

* Update version files

* Update patch

* Update versions/j-/jaeger-client-cpp.json</pre>
</div>
</content>
</entry>
<entry>
<title>[harfbuzz] update to 2.9.0 (#19817)</title>
<updated>2021-09-08T04:04:22+00:00</updated>
<author>
<name>JonLiu1993</name>
<email>63675417+JonLiu1993@users.noreply.github.com</email>
</author>
<published>2021-09-08T04:04:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c126a7817c74c88ef95672640c5ec2ba518f7341'/>
<id>c126a7817c74c88ef95672640c5ec2ba518f7341</id>
<content type='text'>
* [harfbuzz] update to 2.9.0

* update version

* update version to version-semver

* update version

* remove fontconfig option

* update version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [harfbuzz] update to 2.9.0

* update version

* update version to version-semver

* update version

* remove fontconfig option

* update version</pre>
</div>
</content>
</entry>
<entry>
<title>[hazelcast-cpp-client] update to v4.2.0 (#19853)</title>
<updated>2021-09-04T00:05:18+00:00</updated>
<author>
<name>yemreinci</name>
<email>18687880+yemreinci@users.noreply.github.com</email>
</author>
<published>2021-09-04T00:05:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8403a84166bf2b8b19c34545bfce171d52548651'/>
<id>8403a84166bf2b8b19c34545bfce171d52548651</id>
<content type='text'>
* update hazelcast-cpp-client to 4.2.0

* run x-add-version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update hazelcast-cpp-client to 4.2.0

* run x-add-version</pre>
</div>
</content>
</entry>
<entry>
<title>[hexl] Update version to 1.2.1 (#19468)</title>
<updated>2021-09-03T07:00:29+00:00</updated>
<author>
<name>Gelila Seifu</name>
<email>Gelila.seifu@intel.com</email>
</author>
<published>2021-09-03T07:00:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=39d0da3a71ccc7a8cd042dae7a2073e48fa07413'/>
<id>39d0da3a71ccc7a8cd042dae7a2073e48fa07413</id>
<content type='text'>
* update HEXL v1.2

* added x-add-version output

* rename intel-hexl to hexl

* update x-add-version output

* update homepage

* Update version database

* update portfile

* update portfile

* add find GIT

* Update version database

* Update ports/hexl/portfile.cmake

* use MSBUILD for Windows

* Update version database

* set generator

* Update version database

* update typo

* Update version database

* Fix build error

* Update ports/hexl/portfile.cmake

* Re-fix the dependencies

* update hexl version

* Update version database

* locate git, remove unused file

* Update version database

* update version, add dependency

* update dependency

* Update version database

* update HEXL to 1.2.1

* Update version database

* Fix version database.

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;
Co-authored-by: JackBoosY &lt;yuzaiyang@beyondsoft.com&gt;
Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update HEXL v1.2

* added x-add-version output

* rename intel-hexl to hexl

* update x-add-version output

* update homepage

* Update version database

* update portfile

* update portfile

* add find GIT

* Update version database

* Update ports/hexl/portfile.cmake

* use MSBUILD for Windows

* Update version database

* set generator

* Update version database

* update typo

* Update version database

* Fix build error

* Update ports/hexl/portfile.cmake

* Re-fix the dependencies

* update hexl version

* Update version database

* locate git, remove unused file

* Update version database

* update version, add dependency

* update dependency

* Update version database

* update HEXL to 1.2.1

* Update version database

* Fix version database.

Co-authored-by: Jack·Boos·Yu &lt;47264268+JackBoosY@users.noreply.github.com&gt;
Co-authored-by: JackBoosY &lt;yuzaiyang@beyondsoft.com&gt;
Co-authored-by: Billy Robert O'Neal III &lt;bion@microsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[harfbuzz] update to 2.8.2 (#19615)</title>
<updated>2021-08-30T17:21:15+00:00</updated>
<author>
<name>JonLiu1993</name>
<email>63675417+JonLiu1993@users.noreply.github.com</email>
</author>
<published>2021-08-30T17:21:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=950dd37e7077ddfa65a8deccf184c070fd1e8851'/>
<id>950dd37e7077ddfa65a8deccf184c070fd1e8851</id>
<content type='text'>
* [harfbuzz] update to 2.8.2

* update version

* revert patch format

* update version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [harfbuzz] update to 2.8.2

* update version

* revert patch format

* update version</pre>
</div>
</content>
</entry>
<entry>
<title>Adapting for HPX V1.7.1 (#19585)</title>
<updated>2021-08-19T00:07:51+00:00</updated>
<author>
<name>Hartmut Kaiser</name>
<email>hartmut.kaiser@gmail.com</email>
</author>
<published>2021-08-19T00:07:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=d73f3703f7a649becdbd609ea4b29ee92fc80617'/>
<id>d73f3703f7a649becdbd609ea4b29ee92fc80617</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
