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
Ahmed Yarub Hani Al Nuaimi
be2092af4e
Fix Mbed TLS build for Android ( #15680 )
...
* 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>
2021-01-24 23:37:22 -08:00
Phoebe
b0e1458105
[mbedtls] Add supports ( #13810 )
2020-10-06 09:24:00 -07:00
NancyLi1013
dcc7ddcd5c
[mbedtls/nana] Update to the latest version ( #13672 )
...
* [mbedtls/nana] Update to the latest version
* [nana] Remove unused patch and update patch EOF
2020-09-27 17:41:42 -07:00
DDoSolitary
2c68b1229b
[libssh] Enable mbedtls's threading support ( #10154 )
...
* 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.
2020-03-11 09:15:12 -07:00
Ehsan
7514946910
[mbedtls] Update library to 2.16.3 ( #8296 )
2019-09-23 10:38:49 -07:00
Ehsan
1a2dd085f1
Update some ports version ( #7534 )
...
* [imgui] Update library to 1.72
* [mbedtls] Update library to 2.16.2
2019-08-06 16:24:24 -04:00
pravic
18b029a5e3
[WIP] Add a Homepage URL entry for vcpkg ports ( #2933 )
...
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-06-15 16:54:47 -07:00
Robert Schumacher
bb1bb1c94a
Updates 2018.12.14
2019-01-09 12:27:19 -08:00
Robert Schumacher
64a7483a4a
Upgrades 2018.09.18
2018-09-19 14:13:12 -07:00
Force.Charlie-I
e6f7b76323
[mbedtls] update mbedtls to 2.12.0 ( #4064 )
2018-08-13 15:25:43 -07:00
lcdtyph
940b33e52d
[mbedtls] Initial port. ( #2286 )
...
* mbedtls: init port
* add VCPKG_LIBRARY_LINKAGE for static libs only
* [mbedtls] Slight cleanup
2017-12-09 00:00:06 -08:00