Jia Yue Hua
4f64a58dee
[hwloc] update to 2.9.3 ( #34183 )
2023-10-02 17:26:43 -07:00
Alexander Neumann
b803111012
[hwloc] Update to 2.9.0 ( #28365 )
...
* [hwloc] update to 2.9.0
* v db
2022-12-19 14:45:44 -08:00
Alexander Neumann
9ab3344046
[hwloc|hpx] Update to latest version ( #24918 )
...
* update hpx and hwloc
* v db
* remove unnecessary patch
* v db
* allow CMAKE_CXX_STANDARD to be set
* v db
2022-05-26 13:14:21 -07:00
Frank
87179c1b43
[hwloc] update to 2.7.0 ( #22060 )
...
* [hwloc] update to 2.7.0
* update version
* update patch
* update version
* fix-osx-support
* update version
* set CoreFoundation
* update version
* reset CoreFoundation
* update version
* [hpx] Fix dependency hwloc
* version
* [hpx] Add osx component iokit
* overwrite hpx version
* version
* update version
* osx support
* overwrite version
* add license
* format-manifest
* update version
* add license
* update version
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2022-02-15 16:59:58 -08:00
autoantwort
95ced9a002
[hwloc] fix debug paths ( #22811 )
2022-01-27 08:09:18 -08:00
autoantwort
3feaafe785
[hwloc] no absolute paths ( #22715 )
2022-01-26 15:34:01 -08:00
autoantwort
f2a49a6303
[hwloc] no absolute paths ( #21267 )
2021-11-09 11:44:04 -08:00
Alexander Neumann
fdac8bfc1b
[hwloc] Update to 2.5 and switch to make ( #20905 )
...
* hwloc try and error
* hwloc fix build.
* format manifest
* version stuff
* remove supports expression. Copy COPYING from src dir
* format manifest
* overwrite version
* update ci baseline
hpx uses _mm_pause which seems to be undefined on arm64
maybe hpx requires a supports field?
* switch to version in manifest
* version stuff
* add maintainer
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
* version stuff
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2021-10-27 23:05:10 -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