<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/nanovg/CONTROL, 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>[nanovg] Add dependency port stb (#8813)</title>
<updated>2020-01-06T21:18:22+00:00</updated>
<author>
<name>Jack·Boos·Yu</name>
<email>47264268+JackBoosY@users.noreply.github.com</email>
</author>
<published>2020-01-06T21:18:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=0c481e12f150ef8dd57f3fd8fae4b19a52f46d43'/>
<id>0c481e12f150ef8dd57f3fd8fae4b19a52f46d43</id>
<content type='text'>
* [nanovg]Add depends port stb. Do not install stb headers.

* [nanovg] Remove stb files from source to ensure the vcpkg-packaged copies are preferred.

* [nanovg]Disable build with uwp.

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [nanovg]Add depends port stb. Do not install stb headers.

* [nanovg] Remove stb files from source to ensure the vcpkg-packaged copies are preferred.

* [nanovg]Disable build with uwp.

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[nanogui] Add new port (#8302)</title>
<updated>2019-09-27T00:04:10+00:00</updated>
<author>
<name>Alvin</name>
<email>52727318+AlvinZhangH@users.noreply.github.com</email>
</author>
<published>2019-09-27T00:04:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ee0bfad1cfa11e048823e2d02d9f619db7d94a3f'/>
<id>ee0bfad1cfa11e048823e2d02d9f619db7d94a3f</id>
<content type='text'>
* [nanogui]Add new port.

* [nanogui]Repatch.

* [nanovg]Update the CONTROL version of the nanovg port.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [nanogui]Add new port.

* [nanogui]Repatch.

* [nanovg]Update the CONTROL version of the nanovg port.
</pre>
</div>
</content>
</entry>
<entry>
<title>modernize many ports (#7986)</title>
<updated>2019-09-05T17:43:09+00:00</updated>
<author>
<name>Phoebe</name>
<email>925731795@qq.com</email>
</author>
<published>2019-09-05T17:43:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=33f15e40e858dcabddd1f1cc1b67368778516fbf'/>
<id>33f15e40e858dcabddd1f1cc1b67368778516fbf</id>
<content type='text'>
* modernize many ports

* Update the code to handle copyright

* Retriger to build qt5-gamepad
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* modernize many ports

* Update the code to handle copyright

* Retriger to build qt5-gamepad
</pre>
</div>
</content>
</entry>
<entry>
<title>add nanovg port (#4667)</title>
<updated>2018-11-08T18:53:06+00:00</updated>
<author>
<name>Oscar Morante</name>
<email>spacepluk@gmail.com</email>
</author>
<published>2018-11-08T18:53:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=1d7fa4c74a1cfdc962d5a58408b8f431e4f6ba52'/>
<id>1d7fa4c74a1cfdc962d5a58408b8f431e4f6ba52</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
