Francisco Facioni
a29baafabc
[ffmpeg] srt support ( #26679 )
2022-10-08 21:54:58 -07:00
Mengna Li
01b29f6d82
Add bonding support ( #26809 )
2022-09-16 14:06:30 -07:00
Russell Greene
5bb60c0580
[libsrt] Produce correct library kind ( #26471 )
...
* [libsrt] respect VCPKG_LIBRARY_LINKAGE
* ./vcpkg x-add-version --all
2022-08-23 12:11:44 -07:00
Francisco Facioni
30619e717a
[libsrt] Update to 1.5.0 ( #26219 )
...
* [libsrt] Update port to 1.5.0
* Remove unnecessary port-version and ci.baseline.txt entries.
Co-authored-by: Billy O'Neal <bion@microsoft.com>
2022-08-08 12:08:40 -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
autoantwort
fd49422216
[libsrt] no absolute paths ( #21265 )
2021-11-08 20:39:41 -08:00
chausner
469b6e7d8d
[libsrt] Update to 1.4.4 ( #20641 )
...
* Update libsrt to 1.4.4
* Update CI baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-10-13 14:17:25 -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
JackBoosY
d1d449e8e3
[libsrt]Add new port. ( #8712 )
...
* [libsrt]Add new port.
* [libsrt]Add patch.
* [libsrt]Does not support uwp.
* [libsrt]Remove usless blank line.
2019-10-28 11:23:21 -07:00