Commit Graph

9 Commits

Author SHA1 Message Date
JeffyOLOLO
e2fb66462a
[sqlpp11] update to 0.61 (#25458)
* Update the sqlpp11 port to version 0.61 + SQLite3

* Update the sqlpp11 version to 0.61

* Update dependencies in sqlpp11 ports

* Update sqlpp11 and its connectors versions

* Update files according to the maintainer guide

* Update the sqlpp11 version

* Update SHA512

* Version instead of version-string

* Update the sqlpp11 version

* Version-string instead of version

* Version update

* Vesrion update after script

* Update according to checks

* Replace connector ports by empty one

* Update the sqlite3 connector port to dummy one

* Remove non exsistent sqlpp11 sqlite3 version

* Make the mysql connector port as obsolete

* Format vcpkg.json in sqlpp11's ports

* Update sqlpp11's ports versions

* Backward compatibility in the mysql connector

* Update version in sqlpp11's mysql connector

* Remove non exsistent sqlpp11 mysql version
2022-07-05 15:35:30 -07: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
yurybura
f9c7bf832b
[sqlpp11] update to v0.59 (#11771)
* [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
2020-06-10 17:52:14 -07:00
Tobias Brückner
c7a6b0cd9f
[sqlpp11-connector-mysql] Update to 0.29 to fix missing and unnecessary dependency of Boost.Thread on macOS (#10386)
* [sqlpp11-connector-mysql] Add Homepage to CONTROL file

* [sqlpp11-connector-mysql] Update to version 0.29

* [sqlpp11-connector-mysql] Remove deprecated function from portfile
2020-03-16 14:58:21 -07:00
Robert Schumacher
08c951fef9
[many ports] Upgrades to 2020.02.08 (#9986)
* [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 <20694052+PhoebeHui@users.noreply.github.com>
2020-02-10 16:08:57 -08:00
Phoebe
bcff929875 Add PREFER_NINJA to many ports (#7468)
* Add PREFER_NINJA to many ports
2019-07-31 13:01:02 -07:00
grdowns
563e085d42 Update version strings 2019-03-18 17:47:24 -07:00
Sébastien Matte
5d0808c18c [sqlpp11-connector-mysql] Removed the include files in the debug/include directory which was preventing compilation of this package. 2019-03-15 14:44:36 -04:00
Octavian Dima
da0fc542dc Add sqlpp11 libraries (#4747)
* Add sqlpp11

* Add sqlpp11-connector-mysql

* Add sqlpp11-connector-sqlite3

* Apply a patch for MSVC
2019-01-26 13:01:25 -08:00