<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/opus, branch aws-lambda-cpp</title>
<subtitle>Forked from https://github.com/microsoft/vcpkg</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/'/>
<entry>
<title>Bulk convert control files. (#19986)</title>
<updated>2021-09-09T08:24:04+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2021-09-09T08:24:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b295670e4bab14debe88d92cd5364b21ce26232c'/>
<id>b295670e4bab14debe88d92cd5364b21ce26232c</id>
<content type='text'>
```
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
```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
```
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
```</pre>
</div>
</content>
</entry>
<entry>
<title>[opus] Fix for arm64-ios (#13568)</title>
<updated>2020-09-17T20:28:52+00:00</updated>
<author>
<name>Hanseul Jun</name>
<email>hanseuljun@gmail.com</email>
</author>
<published>2020-09-17T20:28:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=32eccc18191fbb57b159784a1724d2d00613ae82'/>
<id>32eccc18191fbb57b159784a1724d2d00613ae82</id>
<content type='text'>
* Add SYSTEM_LIBRARIES m to vcpkg_fixup_pkgconfig() in opus/portfile.cmake.

* [opus] Update CONTROL

Co-authored-by: wangli28 &lt;wangli28@beyondsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add SYSTEM_LIBRARIES m to vcpkg_fixup_pkgconfig() in opus/portfile.cmake.

* [opus] Update CONTROL

Co-authored-by: wangli28 &lt;wangli28@beyondsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[many ports] Fix various problems with mingw (#12886)</title>
<updated>2020-08-22T00:45:42+00:00</updated>
<author>
<name>Long Nguyen</name>
<email>nguyen.long.908132@gmail.com</email>
</author>
<published>2020-08-22T00:45:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=d355b3fae03d6626437738151724610b593dc81c'/>
<id>d355b3fae03d6626437738151724610b593dc81c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ffmpeg] Add feature support for zlib, iconv, fdk-aac, mp3lame, opus, soxr, theora.  (#11277)</title>
<updated>2020-08-18T19:58:14+00:00</updated>
<author>
<name>Matthew Oliver</name>
<email>protogonoi@gmail.com</email>
</author>
<published>2020-08-18T19:58:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=272269583c80a4ba626d405e79a88a2ddd6d950d'/>
<id>272269583c80a4ba626d405e79a88a2ddd6d950d</id>
<content type='text'>
Co-authored-by: Phoebe &lt;20694052+PhoebeHui@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Phoebe &lt;20694052+PhoebeHui@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[opus] Update port to 1.3.1-2 (#11279)</title>
<updated>2020-05-11T22:57:17+00:00</updated>
<author>
<name>evpobr</name>
<email>evpobr@gmail.com</email>
</author>
<published>2020-05-11T22:57:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a64cf52dd52a001957a5e6e315cdf7188c2842ca'/>
<id>a64cf52dd52a001957a5e6e315cdf7188c2842ca</id>
<content type='text'>
Adds `include/opus` to interface directories for compatibility.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds `include/opus` to interface directories for compatibility.</pre>
</div>
</content>
</entry>
<entry>
<title>[opus] Make AVX an optional feature (#10634)</title>
<updated>2020-04-03T17:17:41+00:00</updated>
<author>
<name>Gabriel</name>
<email>gabriel+github@mastergk.de</email>
</author>
<published>2020-04-03T17:17:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f4759a6ded9c7090df01c55a87a9fcecf860fe33'/>
<id>f4759a6ded9c7090df01c55a87a9fcecf860fe33</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[WIP] Add a Homepage URL entry for vcpkg ports (#2933)</title>
<updated>2019-06-15T23:54:47+00:00</updated>
<author>
<name>pravic</name>
<email>ehysta@gmail.com</email>
</author>
<published>2019-06-15T23:54:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=18b029a5e3997fa4fdc7d3d06d56568a1d6f74ad'/>
<id>18b029a5e3997fa4fdc7d3d06d56568a1d6f74ad</id>
<content type='text'>
* [vcpkg] Add "Homepage" field to the CONTROL files.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [vcpkg] Add "Homepage" field to the CONTROL files.</pre>
</div>
</content>
</entry>
<entry>
<title>Update to Opus 1.3.1 (#6086)</title>
<updated>2019-04-14T08:02:58+00:00</updated>
<author>
<name>Marcus Asteborg</name>
<email>xnorpx@outlook.com</email>
</author>
<published>2019-04-14T08:02:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=0907798d406d036a488b826b91d1cea427d93497'/>
<id>0907798d406d036a488b826b91d1cea427d93497</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Opus CMake #4875 (#6007)</title>
<updated>2019-04-09T16:56:02+00:00</updated>
<author>
<name>Marcus Asteborg</name>
<email>xnorpx@outlook.com</email>
</author>
<published>2019-04-09T16:56:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8a1c4fce3022418e51d29795a845494587849ad5'/>
<id>8a1c4fce3022418e51d29795a845494587849ad5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[opus] Fix version "unknown" returned by version API (#5134)</title>
<updated>2019-02-27T20:02:09+00:00</updated>
<author>
<name>evpobr</name>
<email>evpobr@gmail.com</email>
</author>
<published>2019-02-27T20:02:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=47950cabae132e1fc5c874b69665538762caa0f2'/>
<id>47950cabae132e1fc5c874b69665538762caa0f2</id>
<content type='text'>
Related issues:

* erikd/libsndfile#406
* xiph/opus#110
* xiph/opus#111</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Related issues:

* erikd/libsndfile#406
* xiph/opus#110
* xiph/opus#111</pre>
</div>
</content>
</entry>
</feed>
