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
Lily
bfc0f48833
[libyaml/sqlpp11/xeus/uvatlas/xxhash] Update to the latest version ( #13657 )
...
* [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-09-27 17:33:19 -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
lex-96
63b556732a
[sqlpp11] fixed ddl2cpp path ( #8837 )
...
* [sqlpp11] fixed ddl2cpp path
* Incremented sqlpp11 CONTROL version to 0.58-3
2019-11-01 14:46:26 -07:00
Stefano Sinigardi
726c111481
[vcpkg] fatal_error when patch fails to apply ( #8087 )
...
vcpkg will now fail on failure to apply patches except when using `--head`.
2019-10-07 10:35:13 -07:00
Phoebe
bcff929875
Add PREFER_NINJA to many ports ( #7468 )
...
* Add PREFER_NINJA to many ports
2019-07-31 13:01:02 -07:00
Robert Schumacher
33af90d42a
[many ports] Updates 2019.05.19 ( #6524 )
2019-05-21 21:00:24 -07:00
grdowns
563e085d42
Update version strings
2019-03-18 17:47:24 -07:00
Sébastien Matte
0ea0c91790
[sqlpp11] Moved the python scripts located in the bin folder to a separate folder. This removes the warning when compiling in static.
2019-03-15 14:44:28 -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