<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/nrf-ble-driver, 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>[nrf-ble-driver] Update to v4.1.2 (#12436)</title>
<updated>2020-07-15T21:20:50+00:00</updated>
<author>
<name>Ken A. Redergård</name>
<email>64542+kenr@users.noreply.github.com</email>
</author>
<published>2020-07-15T21:20:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=38e1a6465beeb7b294a584d1c4ec24b2daab2670'/>
<id>38e1a6465beeb7b294a584d1c4ec24b2daab2670</id>
<content type='text'>
* Update to nrf-ble-driver-4.1.2

* Update source code hash

* Copy .hex/.zip files to package install directory</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update to nrf-ble-driver-4.1.2

* Update source code hash

* Copy .hex/.zip files to package install directory</pre>
</div>
</content>
</entry>
<entry>
<title>[vcpkg] fatal_error when patch fails to apply (#8087)</title>
<updated>2019-10-07T17:35:13+00:00</updated>
<author>
<name>Stefano Sinigardi</name>
<email>stesinigardi@hotmail.com</email>
</author>
<published>2019-10-07T17:35:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=726c11148105a97aef39bec024fdb7c140b1b154'/>
<id>726c11148105a97aef39bec024fdb7c140b1b154</id>
<content type='text'>
vcpkg will now fail on failure to apply patches except when using `--head`.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
vcpkg will now fail on failure to apply patches except when using `--head`.</pre>
</div>
</content>
</entry>
<entry>
<title>[nrf-ble-driver] Fix version number (#8437)</title>
<updated>2019-10-03T23:16:12+00:00</updated>
<author>
<name>Ken A. Redergård</name>
<email>64542+kenr@users.noreply.github.com</email>
</author>
<published>2019-10-03T23:16:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=a9ba330cc0e1da64cfb818811beaa0b0d81fa9fa'/>
<id>a9ba330cc0e1da64cfb818811beaa0b0d81fa9fa</id>
<content type='text'>
* Fix version number

* Bump version
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix version number

* Bump version
</pre>
</div>
</content>
</entry>
<entry>
<title>Update control file</title>
<updated>2019-05-31T00:34:48+00:00</updated>
<author>
<name>grdowns</name>
<email>grdowns@microsoft.com</email>
</author>
<published>2019-05-31T00:34:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=08c7264cd5f2c127428290b6b3199cedfd7a7550'/>
<id>08c7264cd5f2c127428290b6b3199cedfd7a7550</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update to 4.1.1; Fix system dependencies message</title>
<updated>2019-05-31T00:10:11+00:00</updated>
<author>
<name>grdowns</name>
<email>grdowns@microsoft.com</email>
</author>
<published>2019-05-31T00:10:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=00477b276e96fbe0b463bf3a13a243dbcd8ee4d5'/>
<id>00477b276e96fbe0b463bf3a13a243dbcd8ee4d5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[nrf-ble-driver] Initial version of nrf-ble-driver (#5938)</title>
<updated>2019-05-21T23:48:11+00:00</updated>
<author>
<name>Ken A. Redergård</name>
<email>64542+kenr@users.noreply.github.com</email>
</author>
<published>2019-05-21T23:48:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=75bcb1c131c601d1ce4bb8a5ec761e058a0faeab'/>
<id>75bcb1c131c601d1ce4bb8a5ec761e058a0faeab</id>
<content type='text'>
* Initial version of nrf-ble-driver

* Add system dependencies message

* Try to find git and add to path

* Add status message to debug CI build

* Remove status message; Add comments

* Append instead of prepend to PATH

* Enable x64-windows-static

* Only show system dependencies message on mac and linux

* Add arm64-windows support
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Initial version of nrf-ble-driver

* Add system dependencies message

* Try to find git and add to path

* Add status message to debug CI build

* Remove status message; Add comments

* Append instead of prepend to PATH

* Enable x64-windows-static

* Only show system dependencies message on mac and linux

* Add arm64-windows support
</pre>
</div>
</content>
</entry>
</feed>
