Arsen Tufankjian
|
c607671659
|
[volk] Update dependencies to only depend on vulkan-headers rather than vulkan (#27747)
* volk only relies on vulkan-headers
* Formatting
* Formatting
* Actually formatting
* Version
* Fixing portfile
* Updating version
|
2022-11-11 09:09:23 -08:00 |
|
Arsen Tufankjian
|
ec7216c8e1
|
[volk] Updating volk to version 1.3.233 (#27685)
* Updating volk to version 1.3.233
* Updating version
|
2022-11-08 09:35:59 -08:00 |
|
Thomas1664
|
c37cc7836a
|
[many ports] Fix use of Readme as copyright (#24201)
* [jack2] Update to 1.9.21
* [libxmlmm] Fix license
* [volk] Fix license
* [tmxlite] Fix license
* [tinyxml2] Fix license
* [stb] Fix license
* [rtmidi] Fix license
* [pugixml] Update to 1.12.1
* [physx] Fix license
* [physx] License expression
* version
* lowercase
* null
* Format
* Remove version-string
* stb
* Format
* version
* Format
* version
* [tinyxml] port version
* version
* Fix license
* version
* [rtmidi] remove patch
* version
* [pugixml] Remove unused variable
* version
* [physx] Remove from CI baseline for testing
* [physx] update supports statement
* version
* [tmxlite] add final newline
* version
* [libxmlmm] Don't use own copyright file
* version
* Fix license copy
* version
|
2022-04-19 14:31:08 -07:00 |
|
Mathis Logemann
|
6c74a6d7b9
|
[volk] update port (#23821)
* update volk
* volk version
* add license
* version
|
2022-03-29 17:25:31 -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 |
|
Jens Weggemann
|
2e9a0c4173
|
[volk] Update to latest version for crucial upstream fixes to the CMake files. (#8364)
|
2019-09-26 16:49:35 -07:00 |
|
Jens Weggemann
|
c544417f88
|
[volk] Add new port (#8035)
* [volk] Add new port
* [volk] Add missing vulkan dependency.
|
2019-09-03 16:01:58 -07:00 |
|