Kai Pastor
15958906f3
[mbedtls] Update to 3.6.1 ( #40687 )
2024-09-08 12:04:08 -07:00
talregev
b6ae534b3a
[mbedtls] update to 2.28.8 ( #39978 )
2024-07-20 13:32:00 -05:00
Jia Yue Hua
31b799f92c
[mbedtls] update to 2.28.7 ( #36431 )
...
* [mbedtls] update to 2.28.7
* [mbedtls] update to 2.28.7
2024-01-29 11:44:37 -08:00
Jia Yue Hua
b86f18b286
[mbedtls] update to 2.28.5 ( #34744 )
...
* [mbedtls] update to 2.28.5
* [mbedtls] update to 2.28.5
2023-10-27 16:54:05 -07:00
Eric Kilmer
e8bbe81315
[mbedtls] Update to v2.28.1 ( #25894 )
...
* [mbedtls] Update to v2.28.1
Latest release of LTS version 2.28
* Update version
2022-07-22 11:08:04 -07:00
Eric Kilmer
b4bf366c7a
[mbedtls] Update to latest 2.x LTS version ( #23787 )
...
* [mbedtls] Update to latest 2.28 LTS version
* Update version
2022-03-28 13:36:33 -07:00
Billy O'Neal
c9e786d81a
[many ports] remove remaining vcpkg_fail_port_install calls. ( #22770 )
...
* Bulk remove vcpkg_fail_port_install calls.
Interesting ones have been split out into separate reviews, where "interesting" means "anything more than just deleting the call to vcpkg_fail_port_install",
In support of https://github.com/microsoft/vcpkg/pull/21502
* Update version database.
* Revert google benchmark changes already submitted as https://github.com/microsoft/vcpkg/pull/22728
* Repair version database.
2022-01-25 10:31:15 -08: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