<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/soxr, branch master</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>[soxr] remove doc files from install (#13480)</title>
<updated>2020-09-11T19:21:38+00:00</updated>
<author>
<name>Matthias C. M. Troffaes</name>
<email>matthias.troffaes@gmail.com</email>
</author>
<published>2020-09-11T19:21:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=7f471eaf73cbe7f256b50bac847c4e9b864d8dc4'/>
<id>7f471eaf73cbe7f256b50bac847c4e9b864d8dc4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[vcpkg] Add vcpkg_from_sourceforge (1/2) (#11899)</title>
<updated>2020-06-26T22:06:30+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2020-06-26T22:06:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a0e0c57f865937cdda81c21ad9327e606f7dc930'/>
<id>a0e0c57f865937cdda81c21ad9327e606f7dc930</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename patch file</title>
<updated>2019-07-01T19:42:53+00:00</updated>
<author>
<name>grdowns</name>
<email>grdowns@microsoft.com</email>
</author>
<published>2019-07-01T19:42:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=65d807be5777bbb6d49cc7ad4d731b0642d9361b'/>
<id>65d807be5777bbb6d49cc7ad4d731b0642d9361b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up comments and whitespace</title>
<updated>2019-07-01T19:41:26+00:00</updated>
<author>
<name>grdowns</name>
<email>grdowns@microsoft.com</email>
</author>
<published>2019-07-01T19:41:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=dbeae6f05c417e7652f7295f77c94f9cd6bda992'/>
<id>dbeae6f05c417e7652f7295f77c94f9cd6bda992</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[soxr]: define arm on windows</title>
<updated>2019-06-27T16:41:28+00:00</updated>
<author>
<name>Thijs Withaar</name>
<email>thijs.withaar@gmail.com</email>
</author>
<published>2019-06-09T09:46:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=0550221978d520e4e12c459a6fab5be16d5fa753'/>
<id>0550221978d520e4e12c459a6fab5be16d5fa753</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[soxr] patch potentially uninitialized variable, remove build warning</title>
<updated>2019-06-27T16:41:28+00:00</updated>
<author>
<name>Thijs Withaar</name>
<email>thijs.withaar@gmail.com</email>
</author>
<published>2019-06-04T20:08:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f884a9e2ea75d623b4bf2d1d68e4680bdfeaacc8'/>
<id>f884a9e2ea75d623b4bf2d1d68e4680bdfeaacc8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[soxr] skip examples</title>
<updated>2019-06-27T16:41:28+00:00</updated>
<author>
<name>Thijs Withaar</name>
<email>thijs.withaar@gmail.com</email>
</author>
<published>2019-06-04T17:05:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=93b9320fe40afeb921750206ac4be83b1e9fa6d2'/>
<id>93b9320fe40afeb921750206ac4be83b1e9fa6d2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[soxr] Fix macos build: remove share</title>
<updated>2019-06-27T16:41:28+00:00</updated>
<author>
<name>Thijs Withaar</name>
<email>thijs.withaar@gmail.com</email>
</author>
<published>2019-05-31T12:09:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f4993def219abaabf1527d66f584b2bc5c2f8e48'/>
<id>f4993def219abaabf1527d66f584b2bc5c2f8e48</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[soxr] Set Cmake options through portfile.cmake rather than a patch.</title>
<updated>2019-06-27T16:41:28+00:00</updated>
<author>
<name>Thijs Withaar</name>
<email>thijs.withaar@gmail.com</email>
</author>
<published>2019-05-19T17:21:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=60b96c3d0c0d99dccd6f710b89212af75f1b948c'/>
<id>60b96c3d0c0d99dccd6f710b89212af75f1b948c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
