Albert Santoni
|
75e0c3dc8f
|
[libsrtp] Added openssl feature flag for enabling OpenSSL support (#36135)
* [libsrtp] Added openssl feature flag for enabling OpenSSL support
* [libsrtp] Fixed JSON mixup
* [libsrtp]: Format vcpkg.json
* [libsrtp]: Update version database
* [libsrtp] Update ports/libsrtp/portfile.cmake
* Use vcpkg_check_features appropriately
Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>
* [libsrtp] Update version database
* [libsrtp]: Added port-version, clean up whitespace
* [libsrtp]: Updated version database
* [libsrtp] Update versions/l-/libsrtp.json
Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>
---------
Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>
|
2024-02-02 11:45:46 -08:00 |
|
Lily Wang
|
c0efe07140
|
[libsrtp] Update to 2.5.0 and remove old patch (#33308)
* [libsrtp] Update to 2.5.0 and remove old patch
* update version
|
2023-08-23 21:40:57 -07:00 |
|
Kai Pastor
|
630bc4ef88
|
[libsrtp] Fix DLL destination and mingw (#27540)
* Fix libsrtp DLL destination and mingw
* Update versions
|
2022-11-01 20:03:09 -07:00 |
|
Thomas1664
|
d132d128b4
|
[many ports] Fix cmake warnings (#24706)
* [aubio]
* [bitserializer]
* [crfsuite] Update to 2020-08-27
* format
* [freealut]
* [libe57]
* version
* [libe57] Remove docs
* version
* [libffi]
* [libmodplug]
* [libsodium]
* [libsrtp]
* [libfio]
* [ned14-internal-quickcpplib]
* version string
* version
* version
* [matio] Update to 1.5.23
* [matplusplus] Update to 1.1.0
* [pystring]
* [rdbl]
* [recast]
* [restinfo]
* [sockpp]
* [sziü]
* [taglib]
* [thor]
* [workflow]
* version
* [Forkflow] Fix typo
* version
* [pystring] license
* version
* license
* version
* [sockpp]
* version
* [refl-cpp]
* [pixel] Fix synthax warning
* version
* [matplotplusplus]
* version
* license
* version
* [szip, workflow] Remove docs
* version
* license
* version
* [szip] Fix license install
* version
* [matplotplusplus] Revert update
* version
|
2022-05-17 11:15:06 -07:00 |
|
SE2Dev
|
09744c6200
|
[libsrtp] Add Exported CMake Targets for LibSRTP (#20720)
* [libsrtp] Don't Use Deprecated Vcpkg Functions
* [libsrtp] Add CMake Targets Patch
* Bump port-version.
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
2022-02-16 17:51:28 -08:00 |
|
chausner
|
0fc5f349d2
|
[libsrtp] Update to 2.4.2 (#20359)
* Update libsrtp to 2.4.2
* Update CI baseline
* More tweaks
* Update git-tree hash
Co-authored-by: chausner <chausner@users.noreply.github.com>
|
2021-09-27 21:00:19 -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 |
|
nicole mazzuca
|
68a74950d0
|
[vcpkg] Rename port_versions to versions (#15784)
|
2021-01-21 09:53:22 -08:00 |
|