Ahmed Yarub Hani Al Nuaimi
45e1df3415
[libssh] Fix Android build (again) ( #29577 )
...
* Fix libssh patch for Android
* Update versions
* Update versions
2023-02-13 08:45:40 -08:00
Ahmed Yarub Hani Al Nuaimi
b1f65da6b2
[libssh] Fix Android build ( #29515 )
...
* Fix libssh's file permission constants
* Update version files
* Disable building libssh on ARM64 Windows
* Update version files
* Update patch
* Update patch
* Update version files
* Update patch
* Update versions
2023-02-09 12:44:07 -08:00
autoantwort
603b9e839a
[libssh] works on arm ( #28031 )
2022-11-29 11:40:36 -08:00
Lily Wang
1796ce2e96
[baseline][libssh] Update to latest commit ( #27973 )
...
* [baseline][libssh] Update to latest commit
* x-add-version
* update version
* update version
* x-add-version
* Update libssh.json
* Update latest commit
* x-add-version
* add FETCH_REF
* x-add-version
2022-11-28 11:06:31 -08:00
Alberto Garcia Illera
f7175a73c0
[libssh] Update libssh to v0.10.4 ( #27367 )
...
* Update libssh to 0.10.4
* run x-add-version
* add license and remove port
* correct license
* run x-add-version
* Fix version database.
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2022-10-25 20:45:19 -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
Ahmed Yarub Hani Al Nuaimi
30465138ef
Disable libssh symbol versioning ( #21577 )
...
* Disable libssh symbol versioning
* Update versions
* Update versions
* update version
Co-authored-by: Ahmed Yarub Hani Al Nuaimi <ahmed.alnuaimi@zwift.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-11-22 21:08:37 -08:00
JonLiu1993
ee0584f050
[libssh/libressl] update to the latest version ( #20067 )
...
* [libssh/libssh2/libssh2] update to the latest version
* update version
* update patches formating
* update version
* update hash512
* update version'
* fix CI build error
* update version
* update vcpkg.json and portifile.cmake
* update version
* delete hash
* update version
* revert libssh2
* update version
* revert libssh2
* update portfile.cmake
* update version
2021-09-27 17:26:06 -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