aboutsummaryrefslogtreecommitdiff
path: root/ports/google-cloud-cpp-common
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 ```
2020-06-02[google-cloud-cpp] Consolidate all google-cloud* packages (#11698)Carlos O'Ryan
* [google-cloud-cpp] Consolidate all google-cloud* packages Starting with the v1.14.0 release all google-cloud* packages and the googleapis package are kept in a single repository and released simultaneously. * Update CI baseline. google-cloud-cpp used to inherit failures from googleapis, which indicates these are (probably) problems in the generated protobuf/grpc code.
2020-04-07[google-cloud-cpp*] update to the latest release (#10680)Carlos O'Ryan
2020-03-04[google-cloud-cpp*] update to latest release (#10283)nicole mazzuca
Update google-cloud-cpp-common to v0.21.0, google-cloud-cpp to v0.20.0, and google-cloud-cpp-spanner to v0.9.0. These changes need to be atomic, thus the single PR.
2020-02-24[google-cloud-cpp-common] Upgrade to v0.20.0 release (#10168)Carlos O'Ryan
2020-02-12[google-cloud-cpp{,-common}] upgrade to latest release (#10037)Carlos O'Ryan
2020-02-08[google-cloud-cpp*] Upgrade to latest release (#9946)Carlos O'Ryan
* [google-cloud-cpp*] Upgrade to latest release * Update CI baseline. * Address review comments.
2019-11-26[google-cloud-cpp-common] Optional testing libraries (#9097)Carlos O'Ryan
The testing libraries in google-cloud-cpp-common are an strictly optional feature. I expect that mostly developers of other google-cloud-cpp-* libraries would use them, but the occasional end-user might want them too.
2019-11-19[google-cloud-cpp*]Upgrade to latest release (#8986)Carlos O'Ryan
2019-10-28[google-cloud-cpp-common] initial port (#8735)Carlos O'Ryan
* [google-cloud-cpp-common] initial port Add a new port for the Google Cloud C++ common components. * No need to build the tests. * Forgot to disable the tests when I removed the gtest dep.