<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/versions/j-, 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>[jsonnet] Update to 0.17.0 (#20627)</title>
<updated>2021-10-12T03:25:26+00:00</updated>
<author>
<name>chausner</name>
<email>15180557+chausner@users.noreply.github.com</email>
</author>
<published>2021-10-12T03:25:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=514f2debfc232806d838fe2587375695b2d48bf3'/>
<id>514f2debfc232806d838fe2587375695b2d48bf3</id>
<content type='text'>
* Update jsonnet to 0.17.0

* Update CI baseline

* add supports

* update version

* revert portfile.cmake

* update version

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update jsonnet to 0.17.0

* Update CI baseline

* add supports

* update version

* revert portfile.cmake

* update version

Co-authored-by: chausner &lt;chausner@users.noreply.github.com&gt;
Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[json-dto] Update to 0.2.14 (#20570)</title>
<updated>2021-10-07T10:30:31+00:00</updated>
<author>
<name>eao197</name>
<email>eao197@users.noreply.github.com</email>
</author>
<published>2021-10-07T10:30:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=d988e4ee209b8ec12b402b8f55afe378267833c3'/>
<id>d988e4ee209b8ec12b402b8f55afe378267833c3</id>
<content type='text'>
* json-dto updated to v.0.2.14.

* json-dto-0.2.14 added to baseline.

* Change deprecated commands.

* Update baseline for fresh json-dto-0.2.14.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* json-dto updated to v.0.2.14.

* json-dto-0.2.14 added to baseline.

* Change deprecated commands.

* Update baseline for fresh json-dto-0.2.14.</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>[jasper] update to 2.0.33 (#19798)</title>
<updated>2021-09-03T01:04:16+00:00</updated>
<author>
<name>JonLiu1993</name>
<email>63675417+JonLiu1993@users.noreply.github.com</email>
</author>
<published>2021-09-03T01:04:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=5835ade57b8ca9fbdf23e1da9857fc039c443310'/>
<id>5835ade57b8ca9fbdf23e1da9857fc039c443310</id>
<content type='text'>
* jasper

* update version

* update function

* update version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* jasper

* update version

* update function

* update version</pre>
</div>
</content>
</entry>
<entry>
<title>[jwt-cpp] Fixes SHA512 (#19845)</title>
<updated>2021-09-01T18:02:47+00:00</updated>
<author>
<name>pyrotechnics-io</name>
<email>harsh.is@outlook.com</email>
</author>
<published>2021-09-01T18:02:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=728557cc785fc76f488b389893b3e72bd9c856d5'/>
<id>728557cc785fc76f488b389893b3e72bd9c856d5</id>
<content type='text'>
* Fixes jwt-cpp

This is a fix for #19837

Not sure why the hash worked a few days ago but appears to have broken now though (that needs some investigation). But the build is indeed broken

* update port version

* version

Co-authored-by: JackBoosY &lt;yuzaiyang@beyondsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fixes jwt-cpp

This is a fix for #19837

Not sure why the hash worked a few days ago but appears to have broken now though (that needs some investigation). But the build is indeed broken

* update port version

* version

Co-authored-by: JackBoosY &lt;yuzaiyang@beyondsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[jwt-cpp] port update to add version 0.5.1 (#19618)</title>
<updated>2021-08-30T17:32:35+00:00</updated>
<author>
<name>Chris Mc</name>
<email>prince.chrismc@gmail.com</email>
</author>
<published>2021-08-30T17:32:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=722b30de8029b857524d640c41164a64a50b46f1'/>
<id>722b30de8029b857524d640c41164a64a50b46f1</id>
<content type='text'>
* Update vcpkg.json

* Update portfile.cmake

* Update baseline.json

* Update jwt-cpp.json

* Update jwt-cpp.json</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update vcpkg.json

* Update portfile.cmake

* Update baseline.json

* Update jwt-cpp.json

* Update jwt-cpp.json</pre>
</div>
</content>
</entry>
<entry>
<title>[jack2] update to 1.9.19; install pkgconfig file; fix library name (#19270)</title>
<updated>2021-08-05T10:23:41+00:00</updated>
<author>
<name>Be</name>
<email>be@mixxx.org</email>
</author>
<published>2021-08-05T10:23:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=3ab8c7487451cc61c778258c92bd88dfe3c5f32e'/>
<id>3ab8c7487451cc61c778258c92bd88dfe3c5f32e</id>
<content type='text'>
Also:
* allow dynamic linking by adding jack.def file
* replace deprecated vcpkg functions
* replace legacy CONTROL file with vcpkg.json</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also:
* allow dynamic linking by adding jack.def file
* replace deprecated vcpkg functions
* replace legacy CONTROL file with vcpkg.json</pre>
</div>
</content>
</entry>
<entry>
<title>[json-dto] Update to 0.2.13 (#18710)</title>
<updated>2021-07-01T14:30:13+00:00</updated>
<author>
<name>eao197</name>
<email>eao197@users.noreply.github.com</email>
</author>
<published>2021-07-01T14:30:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f7ddab358d63948b7ad2293538241bd701246ced'/>
<id>f7ddab358d63948b7ad2293538241bd701246ced</id>
<content type='text'>
* json_dto updated to 0.2.13.

* x-add-version for json-dto.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* json_dto updated to 0.2.13.

* x-add-version for json-dto.</pre>
</div>
</content>
</entry>
<entry>
<title>[jsoncons] Update to 0.165.0 (#18284)</title>
<updated>2021-06-21T21:21:22+00:00</updated>
<author>
<name>Daniel Parker</name>
<email>danielaparker@yahoo.com</email>
</author>
<published>2021-06-21T21:21:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a025c1b0458c08150b6da44ebdd9f0f9e0873d07'/>
<id>a025c1b0458c08150b6da44ebdd9f0f9e0873d07</id>
<content type='text'>
* [jsoncons] Update to 0.165.0

* [jsoncons] Update to 0.165.0, update baseline

* [jsoncons] Added vcpkg_fixup_pkgconfig() to portfolio.cmake

* update version

Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [jsoncons] Update to 0.165.0

* [jsoncons] Update to 0.165.0, update baseline

* [jsoncons] Added vcpkg_fixup_pkgconfig() to portfolio.cmake

* update version

Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</pre>
</div>
</content>
</entry>
</feed>
