<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/vulkan, 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>Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065)</title>
<updated>2020-10-28T21:18:07+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2020-10-28T21:18:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=09a647a5261e981cbbc8219292c838490ed0b06f'/>
<id>09a647a5261e981cbbc8219292c838490ed0b06f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix how to use VULKAN_SDK under Visual Studio (#8092)</title>
<updated>2019-09-09T15:48:38+00:00</updated>
<author>
<name>Sean Farrell</name>
<email>sean.farrell@rioki.org</email>
</author>
<published>2019-09-09T15:48:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=6e0289a0c3ae5fec1e738d3a921aa7e951fc7d22'/>
<id>6e0289a0c3ae5fec1e738d3a921aa7e951fc7d22</id>
<content type='text'>
Environment variables are referenced with brackets not curly braces. Copying and using the line will not result frustration.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Environment variables are referenced with brackets not curly braces. Copying and using the line will not result frustration.</pre>
</div>
</content>
</entry>
<entry>
<title>[vulkan] add missing license file (#5531)</title>
<updated>2019-03-05T07:12:39+00:00</updated>
<author>
<name>Connor Fitzgerald</name>
<email>connorwadefitzgerald@gmail.com</email>
</author>
<published>2019-03-05T07:12:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=82e1e3f41ca728ee60058f589e1d9ddaa6f61c72'/>
<id>82e1e3f41ca728ee60058f589e1d9ddaa6f61c72</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[vulkan] Add usage information (#5533)</title>
<updated>2019-03-05T06:39:17+00:00</updated>
<author>
<name>Connor Fitzgerald</name>
<email>connorwadefitzgerald@gmail.com</email>
</author>
<published>2019-03-05T06:39:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c5fc595443723a8ece6c0aa166eb0842982cd371'/>
<id>c5fc595443723a8ece6c0aa166eb0842982cd371</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[vulkan] fix include path on linux (#5486)</title>
<updated>2019-02-28T12:40:38+00:00</updated>
<author>
<name>Connor Fitzgerald</name>
<email>connorwadefitzgerald@gmail.com</email>
</author>
<published>2019-02-28T12:40:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=5b0b4b6472fecfe90ce30e108ec56ec0c8bb995f'/>
<id>5b0b4b6472fecfe90ce30e108ec56ec0c8bb995f</id>
<content type='text'>
The path used a capital `I` in include, whereas linux uses lower case.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The path used a capital `I` in include, whereas linux uses lower case.</pre>
</div>
</content>
</entry>
<entry>
<title>[vulkan] fix license copying on macOS (#5319)</title>
<updated>2019-02-07T23:20:42+00:00</updated>
<author>
<name>Lassi</name>
<email>lassilaati@gmail.com</email>
</author>
<published>2019-02-07T23:20:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=cc516fb763b3a4b1faf37efbf0f6fc4c0ccfc60a'/>
<id>cc516fb763b3a4b1faf37efbf0f6fc4c0ccfc60a</id>
<content type='text'>
* Check if license exists in root of VULKAN_DIR, otherwise try one directory higher

* [vulkan] Bump control version
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Check if license exists in root of VULKAN_DIR, otherwise try one directory higher

* [vulkan] Bump control version
</pre>
</div>
</content>
</entry>
<entry>
<title>Vulkan port (#4664)</title>
<updated>2018-11-14T23:25:50+00:00</updated>
<author>
<name>Mark Ian Holland</name>
<email>markianholland@live.co.uk</email>
</author>
<published>2018-11-14T23:25:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f1eb3aa4b95540a8fb4a8e8d341e4c08136bd756'/>
<id>f1eb3aa4b95540a8fb4a8e8d341e4c08136bd756</id>
<content type='text'>
* [Vulkan] Add a vulkan port based on the cuda port

* Add VULKAN_SDK env variable to whitelist

* * Added some additional diagnostic information
* Corrected if NOT exists statement
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [Vulkan] Add a vulkan port based on the cuda port

* Add VULKAN_SDK env variable to whitelist

* * Added some additional diagnostic information
* Corrected if NOT exists statement
</pre>
</div>
</content>
</entry>
</feed>
