aboutsummaryrefslogtreecommitdiff
path: root/ports/jsoncons
AgeCommit message (Collapse)Author
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-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-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-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-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
2020-11-30[jsoncons] Update to version 0.159.0 (#14752)Daniel Parker
2020-10-08[jsoncons] Update to 0.158.0 (#13938)Daniel Parker
2020-09-18[jsoncons] Update to version 0.156.1 (#13595)Daniel Parker
2020-08-10[jsoncons] Update to v0.155.1 (#12827)Daniel Parker
2020-07-31[jsoncons] Update to v0.154.1 (#12372)Daniel Parker
* [jsoncons] Update to v0.154.0 * [jsoncons] Update to v0.154.1 * v prefix removed from version in CONTROL file
2020-06-18[jsoncons] Update to v0.153.3 (#12014)Daniel Parker
2020-06-02[jsoncons] Update to v0.153.0 (#11699)Daniel Parker
2020-05-22[jsoncons] Update to v0.152.0 (#11505)Daniel Parker
* [jsoncons] Update to v0.152.0 * [jsoncons] Update to v0.152.0
2020-05-12[jsoncons] Update to v0.151.0 (#11311)Daniel Parker
2020-04-08[jsoncons] update to v0.150.0 (#10688)Daniel Parker
* [jsoncons] update to v0.150.0 * [jsoncons]Fixed version in CONTROL file
2020-03-27[jsoncons] Update to v0.149.0 (#10540)Daniel Parker
2020-03-17[jsoncons] Update to v0.148.0 (#10433)Daniel Parker
2020-03-10[jsoncons] Update to v0.147.0 (#10354)Daniel Parker
2020-02-28[jsoncons] Update to v0.146.0 (#10165)Daniel Parker
* [jsoncons] Update to v0.145.0 * Update to v0.145.1 * Removed blank lines at end of .cmake file. Update to v0.145.2 * [jsoncons]Line include(vcpkg_common_functions) removed
2020-02-10[many ports] Upgrades to 2020.02.08 (#9986)Robert Schumacher
* [many ports] Upgrades to 2020.02.08 * Undo asio asmjit libimobiledevice mlpack mongo-c-driver oniguruma openmvg openvdb pcl * Update ci baseline file Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2020-01-06[jsoncons] Update to 0.143.1 (#9547)Daniel Parker
* [jsoncons] Update to 0.143.1 * Updated portfile.cmake LICENSE line
2019-12-02[jsoncons] Update to v0.140.0 (#9124)Daniel Parker
* [jsoncons] Update to v0.140.0 * [jsoncons] Add space before #v0.140.0?
2019-11-21[jsoncons] Update to v0.139.0 (#9058)Daniel Parker
2019-10-21[jsoncons] Update to v.0.136.1 (#8689)Daniel Parker
2019-09-29Update jsoncons to v0.136.0 (#8382)Daniel Parker
2019-09-26Update jsoncons to v0.135.0 (#8348)Daniel Parker
2019-09-17Update jsoncons to v0.134.0 (#8221)Daniel Parker
2019-09-03Update to v0.133.0Daniel Parker
2019-08-16[jsoncons] Update library to 0.132.1unknown
2019-08-06Update jsoncons to v0.131.2 (#7529)Daniel Parker
2019-05-21[many ports] Updates 2019.05.19 (#6524)Robert Schumacher
2019-04-12[jsoncons] add portStefano Sinigardi