aboutsummaryrefslogtreecommitdiff
path: root/versions/j-
AgeCommit message (Collapse)Author
2021-10-11[jsonnet] Update to 0.17.0 (#20627)chausner
* Update jsonnet to 0.17.0 * Update CI baseline * add supports * update version * revert portfile.cmake * update version Co-authored-by: chausner <chausner@users.noreply.github.com> Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-10-07[json-dto] Update to 0.2.14 (#20570)eao197
* 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.
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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 ```
2021-09-08[h3/jaeger-client-cpp] Update to the latest version (#20008)NancyLi1013
* [h3/jaeger-client-cpp] Update to the latest version * Remove CONTROL files * Update version files * Update patch * Update versions/j-/jaeger-client-cpp.json
2021-09-02[jasper] update to 2.0.33 (#19798)JonLiu1993
* jasper * update version * update function * update version
2021-09-01[jwt-cpp] Fixes SHA512 (#19845)pyrotechnics-io
* 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 <yuzaiyang@beyondsoft.com>
2021-08-30[jwt-cpp] port update to add version 0.5.1 (#19618)Chris Mc
* Update vcpkg.json * Update portfile.cmake * Update baseline.json * Update jwt-cpp.json * Update jwt-cpp.json
2021-08-05[jack2] update to 1.9.19; install pkgconfig file; fix library name (#19270)Be
Also: * allow dynamic linking by adding jack.def file * replace deprecated vcpkg functions * replace legacy CONTROL file with vcpkg.json
2021-07-01[json-dto] Update to 0.2.13 (#18710)eao197
* json_dto updated to 0.2.13. * x-add-version for json-dto.
2021-06-21[jsoncons] Update to 0.165.0 (#18284)Daniel Parker
* [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 <13720414433@163.com>
2021-05-24[jxrlib] Add usage and fix FindJXR.cmake (#17715)Jack·Boos·Yu
* [jxrlib] Add usage and fix FindJXR.cmake * update version record
2021-05-21[json-dto] Update to 0.2.12 (#18019)eao197
* json_dto updated to 0.2.12 * Command x-add-version for json-dto. * Fix for json-dto's vckpg.json. * Command x-add-version for json-dto.
2021-04-23[jsoncons] Update to version 0.163.3 (#17466)Daniel Parker
* [jsoncons] Update to version 0.163.3 * [jsoncons] Update baseline
2021-04-09[jsoncons] Update to 0.163.1 (#17126)Daniel Parker
* [jsoncons]Update to 0.163.1 * [jsoncons] Update baseline
2021-03-25[jwt-cpp] update to v0.5.0 (#16799)Chris Mc
* [jwt-cpp] update to v0.5.0 * Update CONTROL * Update portfile.cmake * Delete fix-warning.patch * Update and rename CONTROL to vcpkg.json * Update vcpkg.json * Update jwt-cpp.json * Update baseline.json * Update versions/j-/jwt-cpp.json * Apply suggestions from code review Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update versions/j-/jwt-cpp.json Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2021-03-24[jsoncons] Update to v0.163.0 (#16820)Daniel Parker
* [jsoncons] Update to v0.163.0 * [jsoncons] Update baseline * [jsoncons] BUILD_TESTS ->JSONCONS_BUILD_TESTS * [jsoncons] Update baseline
2021-02-20[jsoncons] Update to 0.162.1 (#16334)Daniel Parker
* Issue #307 * Update baseline
2021-02-20[jsonnet] Added 0004-incorporate-md5.patch to incorporate md5.cpp into ↵Tetsuya Hayashi
libjsonnet (#16335) * [jsonnet] Added a patch file to incorporate md5.cpp into libjsonnet * [jsonnet] increment port version * [jsonnet] update version record
2021-02-16[jsoncons] Update to version 0.162.0 (#16227)Daniel Parker
* [jsoncons] Update to version 0.162.0 * [jsoncons] Run ./vcpkg x-add-version jsoncons
2021-01-21[vcpkg] Rename `port_versions` to `versions` (#15784)nicole mazzuca