aboutsummaryrefslogtreecommitdiff
path: root/ports/sqlpp11
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-09-27[libyaml/sqlpp11/xeus/uvatlas/xxhash] Update to the latest version (#13657)Lily
* [many ports] Update to the latest version * [xeus] Fix static build * [usd] Revert change * [xeus] Fix build error * [sqlpp11] Update latest version * [libyaml] Fix build error on Linux * [sqlpp11] Fix build error
2020-06-10[sqlpp11] update to v0.59 (#11771)yurybura
* [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
2019-11-01[sqlpp11] fixed ddl2cpp path (#8837)lex-96
* [sqlpp11] fixed ddl2cpp path * Incremented sqlpp11 CONTROL version to 0.58-3
2019-10-07[vcpkg] fatal_error when patch fails to apply (#8087)Stefano Sinigardi
vcpkg will now fail on failure to apply patches except when using `--head`.
2019-07-31Add PREFER_NINJA to many ports (#7468)Phoebe
* Add PREFER_NINJA to many ports
2019-05-21[many ports] Updates 2019.05.19 (#6524)Robert Schumacher
2019-03-18Update version stringsgrdowns
2019-03-15[sqlpp11] Moved the python scripts located in the bin folder to a separate ↵Sébastien Matte
folder. This removes the warning when compiling in static.
2019-01-26Add sqlpp11 libraries (#4747)Octavian Dima
* Add sqlpp11 * Add sqlpp11-connector-mysql * Add sqlpp11-connector-sqlite3 * Apply a patch for MSVC