<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/sqlpp11-connector-mysql, branch aws-lambda-cpp</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>[sqlpp11] update to v0.59 (#11771)</title>
<updated>2020-06-11T00:52:14+00:00</updated>
<author>
<name>yurybura</name>
<email>yurybura@gmail.com</email>
</author>
<published>2020-06-11T00:52:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f9c7bf832b96a1a6bfdf7017c718a96bc1637bbe'/>
<id>f9c7bf832b96a1a6bfdf7017c718a96bc1637bbe</id>
<content type='text'>
* [sqlpp11] update to v0.59
[sqlpp11-connector-mysql] support MySQL connector

* [cpp-taskflow][fastrtps] update hashes to fix ci

* revert "[cpp-taskflow][fastrtps] update hashes to fix ci"

* [sqlpp11] add homepage</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [sqlpp11] update to v0.59
[sqlpp11-connector-mysql] support MySQL connector

* [cpp-taskflow][fastrtps] update hashes to fix ci

* revert "[cpp-taskflow][fastrtps] update hashes to fix ci"

* [sqlpp11] add homepage</pre>
</div>
</content>
</entry>
<entry>
<title>[sqlpp11-connector-mysql] Update to 0.29 to fix missing and unnecessary dependency of Boost.Thread on macOS (#10386)</title>
<updated>2020-03-16T21:58:21+00:00</updated>
<author>
<name>Tobias Brückner</name>
<email>toxe@toxe.net</email>
</author>
<published>2020-03-16T21:58:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c7a6b0cd9fab3f04248bfa9161306935525a6242'/>
<id>c7a6b0cd9fab3f04248bfa9161306935525a6242</id>
<content type='text'>
* [sqlpp11-connector-mysql] Add Homepage to CONTROL file

* [sqlpp11-connector-mysql] Update to version 0.29

* [sqlpp11-connector-mysql] Remove deprecated function from portfile</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [sqlpp11-connector-mysql] Add Homepage to CONTROL file

* [sqlpp11-connector-mysql] Update to version 0.29

* [sqlpp11-connector-mysql] Remove deprecated function from portfile</pre>
</div>
</content>
</entry>
<entry>
<title>[many ports] Upgrades to 2020.02.08 (#9986)</title>
<updated>2020-02-11T00:08:57+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2020-02-11T00:08:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=08c951fef9de63cde1c6b94245a63db826be2e32'/>
<id>08c951fef9de63cde1c6b94245a63db826be2e32</id>
<content type='text'>
* [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 &lt;20694052+PhoebeHui@users.noreply.github.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [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 &lt;20694052+PhoebeHui@users.noreply.github.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add PREFER_NINJA to many ports (#7468)</title>
<updated>2019-07-31T20:01:02+00:00</updated>
<author>
<name>Phoebe</name>
<email>925731795@qq.com</email>
</author>
<published>2019-07-31T20:01:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=bcff929875d76ade98c251038eea6f48171facc6'/>
<id>bcff929875d76ade98c251038eea6f48171facc6</id>
<content type='text'>
* Add PREFER_NINJA to many ports</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add PREFER_NINJA to many ports</pre>
</div>
</content>
</entry>
<entry>
<title>Update version strings</title>
<updated>2019-03-19T00:47:24+00:00</updated>
<author>
<name>grdowns</name>
<email>grdowns@microsoft.com</email>
</author>
<published>2019-03-19T00:47:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=563e085d424fc7b45c5f9e5897ef470b5c1186d8'/>
<id>563e085d424fc7b45c5f9e5897ef470b5c1186d8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[sqlpp11-connector-mysql] Removed the include files in the debug/include directory which was preventing compilation of this package.</title>
<updated>2019-03-15T18:44:36+00:00</updated>
<author>
<name>Sébastien Matte</name>
<email>sebastien.matte83@gmail.com</email>
</author>
<published>2019-03-15T18:44:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=5d0808c18cc706b4be5a78dc71bad4aebed13851'/>
<id>5d0808c18cc706b4be5a78dc71bad4aebed13851</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add sqlpp11 libraries (#4747)</title>
<updated>2019-01-26T21:01:25+00:00</updated>
<author>
<name>Octavian Dima</name>
<email>WopsS@users.noreply.github.com</email>
</author>
<published>2019-01-26T21:01:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=da0fc542dcd9dd068dfe8efcf347036aaaf3ae2f'/>
<id>da0fc542dcd9dd068dfe8efcf347036aaaf3ae2f</id>
<content type='text'>
* Add sqlpp11

* Add sqlpp11-connector-mysql

* Add sqlpp11-connector-sqlite3

* Apply a patch for MSVC
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add sqlpp11

* Add sqlpp11-connector-mysql

* Add sqlpp11-connector-sqlite3

* Apply a patch for MSVC
</pre>
</div>
</content>
</entry>
</feed>
