| Age | Commit message (Collapse) | Author |
|
* 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>
|
|
* 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.
|
|
```
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
```
|
|
* [h3/jaeger-client-cpp] Update to the latest version
* Remove CONTROL files
* Update version files
* Update patch
* Update versions/j-/jaeger-client-cpp.json
|
|
* jasper
* update version
* update function
* update version
|
|
* 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>
|
|
* Update vcpkg.json
* Update portfile.cmake
* Update baseline.json
* Update jwt-cpp.json
* Update jwt-cpp.json
|
|
Also:
* allow dynamic linking by adding jack.def file
* replace deprecated vcpkg functions
* replace legacy CONTROL file with vcpkg.json
|
|
* json_dto updated to 0.2.13.
* x-add-version for json-dto.
|
|
* [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>
|
|
* [jxrlib] Add usage and fix FindJXR.cmake
* update version record
|
|
* 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.
|
|
* [jsoncons] Update to version 0.163.3
* [jsoncons] Update baseline
|
|
* [jsoncons]Update to 0.163.1
* [jsoncons] Update baseline
|
|
* [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>
|
|
* [jsoncons] Update to v0.163.0
* [jsoncons] Update baseline
* [jsoncons] BUILD_TESTS ->JSONCONS_BUILD_TESTS
* [jsoncons] Update baseline
|
|
* Issue #307
* Update baseline
|
|
libjsonnet (#16335)
* [jsonnet] Added a patch file to incorporate md5.cpp into libjsonnet
* [jsonnet] increment port version
* [jsonnet] update version record
|
|
* [jsoncons] Update to version 0.162.0
* [jsoncons] Run ./vcpkg x-add-version jsoncons
|
|
|