<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/google-cloud-cpp-common/CONTROL, branch master</title>
<subtitle>Forked from https://github.com/microsoft/vcpkg</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/'/>
<entry>
<title>Bulk convert control files. (#19986)</title>
<updated>2021-09-09T08:24:04+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2021-09-09T08:24:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b295670e4bab14debe88d92cd5364b21ce26232c'/>
<id>b295670e4bab14debe88d92cd5364b21ce26232c</id>
<content type='text'>
```
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
```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
```
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
```</pre>
</div>
</content>
</entry>
<entry>
<title>[google-cloud-cpp] Consolidate all google-cloud* packages (#11698)</title>
<updated>2020-06-03T05:46:06+00:00</updated>
<author>
<name>Carlos O'Ryan</name>
<email>coryan@users.noreply.github.com</email>
</author>
<published>2020-06-03T05:46:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=0dbc334ef55db4348b870bd3db12a0b4b7d96df8'/>
<id>0dbc334ef55db4348b870bd3db12a0b4b7d96df8</id>
<content type='text'>
* [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.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [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.</pre>
</div>
</content>
</entry>
<entry>
<title>[google-cloud-cpp*] update to the latest release (#10680)</title>
<updated>2020-04-07T17:03:46+00:00</updated>
<author>
<name>Carlos O'Ryan</name>
<email>coryan@users.noreply.github.com</email>
</author>
<published>2020-04-07T17:03:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a3a6e703448b58b0d86ff4b6b5f658b8d26cd76d'/>
<id>a3a6e703448b58b0d86ff4b6b5f658b8d26cd76d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[google-cloud-cpp*] update to latest release (#10283)</title>
<updated>2020-03-04T18:49:39+00:00</updated>
<author>
<name>nicole mazzuca</name>
<email>mazzucan@outlook.com</email>
</author>
<published>2020-03-04T18:49:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=91c8d72a5536f6febc1ed69f323a5e27787f7661'/>
<id>91c8d72a5536f6febc1ed69f323a5e27787f7661</id>
<content type='text'>
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.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.</pre>
</div>
</content>
</entry>
<entry>
<title>[google-cloud-cpp-common] Upgrade to v0.20.0 release (#10168)</title>
<updated>2020-02-25T00:10:03+00:00</updated>
<author>
<name>Carlos O'Ryan</name>
<email>coryan@users.noreply.github.com</email>
</author>
<published>2020-02-25T00:10:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=80d5ee93a4e0b4a99ba3f445ed52cdb6e2a3592c'/>
<id>80d5ee93a4e0b4a99ba3f445ed52cdb6e2a3592c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[google-cloud-cpp{,-common}] upgrade to latest release (#10037)</title>
<updated>2020-02-12T22:48:03+00:00</updated>
<author>
<name>Carlos O'Ryan</name>
<email>coryan@users.noreply.github.com</email>
</author>
<published>2020-02-12T22:48:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c36db6d3be1d2b4af843739752d267940e632b23'/>
<id>c36db6d3be1d2b4af843739752d267940e632b23</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[google-cloud-cpp*] Upgrade to latest release (#9946)</title>
<updated>2020-02-09T04:23:12+00:00</updated>
<author>
<name>Carlos O'Ryan</name>
<email>coryan@users.noreply.github.com</email>
</author>
<published>2020-02-09T04:23:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=4529a5b8ee2c819893ff86e2a90f6df6c752c107'/>
<id>4529a5b8ee2c819893ff86e2a90f6df6c752c107</id>
<content type='text'>
* [google-cloud-cpp*] Upgrade to latest release

* Update CI baseline.

* Address review comments.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [google-cloud-cpp*] Upgrade to latest release

* Update CI baseline.

* Address review comments.
</pre>
</div>
</content>
</entry>
<entry>
<title>[google-cloud-cpp-common] Optional testing libraries (#9097)</title>
<updated>2019-11-26T22:41:38+00:00</updated>
<author>
<name>Carlos O'Ryan</name>
<email>coryan@users.noreply.github.com</email>
</author>
<published>2019-11-26T22:41:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=4e5ebe7491b7201c5f081f37c55fbf6a75e899a9'/>
<id>4e5ebe7491b7201c5f081f37c55fbf6a75e899a9</id>
<content type='text'>
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.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.</pre>
</div>
</content>
</entry>
<entry>
<title>[google-cloud-cpp*]Upgrade to latest release (#8986)</title>
<updated>2019-11-19T23:57:48+00:00</updated>
<author>
<name>Carlos O'Ryan</name>
<email>coryan@users.noreply.github.com</email>
</author>
<published>2019-11-19T23:57:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=0887012a3f399079b9ca8fc1378ec7b3cd005e4e'/>
<id>0887012a3f399079b9ca8fc1378ec7b3cd005e4e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[google-cloud-cpp-common] initial port (#8735)</title>
<updated>2019-10-28T18:19:54+00:00</updated>
<author>
<name>Carlos O'Ryan</name>
<email>coryan@users.noreply.github.com</email>
</author>
<published>2019-10-28T18:19:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c7d09309c14d20cfdb6c9333c99eba570ad2b3f0'/>
<id>c7d09309c14d20cfdb6c9333c99eba570ad2b3f0</id>
<content type='text'>
* [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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [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.
</pre>
</div>
</content>
</entry>
</feed>
