Commit Graph

11 Commits

Author SHA1 Message Date
Mickaël Thomas
1ba9a2591f
[nrf-ble-driver] Fix incorrect tag, version number & compilation with gcc-11.2.0 (#31873)
* [nrf-ble-driver] fix compilation with gcc 11.2.0

PR: https://github.com/NordicSemiconductor/pc-ble-driver/pull/272

* [nrf-ble-driver] fix version & use correct tag

- Fixed version inconsistency (#28036)
- Used correct tag with precompiled hex files
2023-06-12 16:55:21 -07:00
autoantwort
d04bb15e35
[nrf-ble-driver] update and fix arm64-osx (#27116) 2022-10-08 21:17:48 -07:00
Thomas1664
f93ba152d5
[nrf-ble-driver] Remove possible conflicting files (#25900)
* Fix possible conflicting license file

* version

* update license

* format

* version

* UWP can't handle drivers

* version
2022-07-22 14:39:50 -07:00
Billy O'Neal
b295670e4b
Bulk convert control files. (#19986)
```
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
```
2021-09-09 01:24:04 -07:00
Billy O'Neal
09a647a526
Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065) 2020-10-28 14:18:07 -07:00
Ken A. Redergård
38e1a6465b
[nrf-ble-driver] Update to v4.1.2 (#12436)
* Update to nrf-ble-driver-4.1.2

* Update source code hash

* Copy .hex/.zip files to package install directory
2020-07-15 14:20:50 -07:00
Stefano Sinigardi
726c111481 [vcpkg] fatal_error when patch fails to apply (#8087)
vcpkg will now fail on failure to apply patches except when using `--head`.
2019-10-07 10:35:13 -07:00
Ken A. Redergård
a9ba330cc0 [nrf-ble-driver] Fix version number (#8437)
* Fix version number

* Bump version
2019-10-03 16:16:12 -07:00
grdowns
08c7264cd5 Update control file 2019-05-30 17:34:48 -07:00
grdowns
00477b276e Update to 4.1.1; Fix system dependencies message 2019-05-30 17:10:11 -07:00
Ken A. Redergård
75bcb1c131 [nrf-ble-driver] Initial version of nrf-ble-driver (#5938)
* 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
2019-05-21 16:48:11 -07:00