aboutsummaryrefslogtreecommitdiff
path: root/ports/mbedtls
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 ```
2021-01-24Fix Mbed TLS build for Android (#15680)Ahmed Yarub Hani Al Nuaimi
* Fix Mbed TLS build for Android * Fix Mbed TLS build for Android Add better Windows checks * Fix libssh build for Android * update baseline * Remove redundant parameter * Fix version * Fix version * Fix paramters * Fix version * Better Android support * Fix version * Disable warnings as errors for Mbed TLS * Restore formatting * Fix version files Co-authored-by: Ahmed Yarub Hani Al Nuaimi <ahmed.alnuaimi@zwift.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Nicole Mazzuca <mazzucan@outlook.com>
2020-10-06[mbedtls] Add supports (#13810)Phoebe
2020-09-27[mbedtls/nana] Update to the latest version (#13672)NancyLi1013
* [mbedtls/nana] Update to the latest version * [nana] Remove unused patch and update patch EOF
2020-03-11[libssh] Enable mbedtls's threading support (#10154)DDoSolitary
* Add "pthreads" feature to mbedtls. * Cleanup portfile. * Fix mbedtls pthreads support for Linux. * [mbedtls] Require the pthreads port only on Windows. * [mbedtls] Work around dependency issues about static linking.
2019-09-23[mbedtls] Update library to 2.16.3 (#8296)Ehsan
2019-08-06Update some ports version (#7534)Ehsan
* [imgui] Update library to 1.72 * [mbedtls] Update library to 2.16.2
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-01-09Updates 2018.12.14Robert Schumacher
2018-09-19Upgrades 2018.09.18Robert Schumacher
2018-08-13[mbedtls] update mbedtls to 2.12.0 (#4064)Force.Charlie-I
2017-12-09[mbedtls] Initial port. (#2286)lcdtyph
* mbedtls: init port * add VCPKG_LIBRARY_LINKAGE for static libs only * [mbedtls] Slight cleanup