Thomas1664
70bf557bab
[vcpkg baseline][opencensus-cpp] De-vendor dependencies ( #26567 )
...
* [opencensus-cpp] De-vendor dependencies
* version
2022-08-29 11:39:33 -07:00
Thomas1664
6118049642
[vcpkg baseline][opencensus-cpp] Set cxx standard to 14 for compatibility with abseil ( #25735 )
...
* {vcpkg baseline] Set cxx standard to 14 for compatibility with abseil
* Remove from CI baseline
* version
* license
* version
2022-07-12 14:07:02 -07:00
Daniel Lundborg
501df2f7e0
[opencensus-cpp] Update to 2021-08-26 ( #21894 )
...
* [opencensus-cpp] Update to 2021-08-26
Signed-off-by: Daniel Lundborg <daniel.lundborg@sandvik.com>
* Update ports/opencensus-cpp/vcpkg.json
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [opencensus-cpp] use baseline port-version 0
Signed-off-by: Daniel Lundborg <daniel.lundborg@sandvik.com>
* [opencensus-cpp] replace deprecated vcpkg functions
Signed-off-by: Daniel Lundborg <daniel.lundborg@sandvik.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-12-08 13:57:40 -08:00
Billy O'Neal
b295670e4b
Bulk convert control files. ( #19986 )
...
```
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-09 01:24:04 -07:00
nicole mazzuca
f9e78dcc68
[abseil] Add uwp support ( #10301 )
...
* [abseil] Add uwp support
* [abseil] Drop support with arm/arm64
* [opencensus-cpp] Add keyword supports
* update baseline
* [abseil] Enable arm support
2020-03-05 16:01:57 -08:00
JackBoosY
38109c4466
[opencensus-cpp]Add new port. ( #8740 )
...
* [opencensus-cpp]Add new port.
* [opencensus-cpp]Update SHA512.
* [opencensus-cpp]Add patch.
2019-10-29 23:18:56 -07:00