aboutsummaryrefslogtreecommitdiff
path: root/ports/opus
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 ```
2020-09-17[opus] Fix for arm64-ios (#13568)Hanseul Jun
* Add SYSTEM_LIBRARIES m to vcpkg_fixup_pkgconfig() in opus/portfile.cmake. * [opus] Update CONTROL Co-authored-by: wangli28 <wangli28@beyondsoft.com>
2020-08-21[many ports] Fix various problems with mingw (#12886)Long Nguyen
2020-08-18[ffmpeg] Add feature support for zlib, iconv, fdk-aac, mp3lame, opus, soxr, ↵Matthew Oliver
theora. (#11277) Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2020-05-11[opus] Update port to 1.3.1-2 (#11279)evpobr
Adds `include/opus` to interface directories for compatibility.
2020-04-03[opus] Make AVX an optional feature (#10634)Gabriel
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-04-14Update to Opus 1.3.1 (#6086)Marcus Asteborg
2019-04-09Use Opus CMake #4875 (#6007)Marcus Asteborg
2019-02-27[opus] Fix version "unknown" returned by version API (#5134)evpobr
Related issues: * erikd/libsndfile#406 * xiph/opus#110 * xiph/opus#111
2018-11-07[opus] Update to 1.3. (#4580)Joseph Davies
2018-05-18[opus] Don't redefine main() in the static libRobert Schumacher
2017-06-26[opus] update to 1.2.1codicodi
2017-06-20[opus] update to 1.2codicodi
2017-01-28[opus] Rename libopus to opus to match upstream project's nameRobert Schumacher