Kai Pastor
de32b967d0
[sqlpp11] Fix libmariadb linkage, generate usage ( #41201 )
2024-10-02 15:02:46 -04:00
Kai Pastor
3d89599850
[sqlpp11,vcpkg-ci-sqlpp11] Fixes, cleanup, test port ( #41128 )
2024-09-25 15:46:34 -04:00
Frank
5eea8ad5ac
[sqlpp11] Update version to 0.64 ( #36504 )
...
* [sqlpp11] Update version to 0.64
* version
2024-02-01 12:09:50 -08:00
jim wang
2d6f26b318
[sqlpp11] Fix link sqlite3 error ( #32680 )
2023-07-21 08:54:29 -07:00
Francisco Facioni
c60b65d099
[sqlpp11] add postgres support ( #28989 )
2023-01-17 11:28:56 -08:00
MonicaLiu
8d3aa2bbf6
[sqlpp11] Update to latest commit ( #26775 )
...
* update sqlpp11
* update baseline
* update some formatting
* update version
Co-authored-by: Monica <v-liumonica@microsoft.com>
2022-09-14 12:13:20 -07:00
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
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions
to versions
( #15784 )
2021-01-21 09:53:22 -08:00