MonicaLiu
a7e2f7f4f3
[cpuid] Update to 0.6.4 ( #37427 )
2024-03-14 12:22:32 -07:00
chausner
fe77e593c8
[cpuid] Update to 0.6.2 ( #29256 )
...
* Update cpuid to 0.6.2
* Update CI baseline
---------
Co-authored-by: chausner <chausner@users.noreply.github.com>
2023-01-30 17:07:48 -08:00
Thomas1664
f571b30b86
[cpuid] Fix library linkage ( #26545 )
...
* [cpuid] Fix linkage
* Fix Windows build
* version
2022-08-29 13:19:20 -07:00
Billy O'Neal
fc8763ac0c
[cpuid] Remove vcpkg_fail_port_install. ( #22735 )
...
The supports expression was missing a block for UWP that was in portfile.cmake. Also updates ci.baseline.txt.
In support of https://github.com/microsoft/vcpkg/pull/21502
2022-01-24 02:21:05 -08:00
autoantwort
e7e328cf9d
[many ports] call vcpkg_fixup_pkgconfig() ( #20953 )
...
* [many ports] call vcpkg_fixup_pkgconfig()
The ports generate pc files, but don't call vcpkg_fixup_pkgconfig() so that there are absolute paths in the pc files
* Update port-version for armadillo and polyclipping.
* Update version database.
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-10-27 15:19:28 -07:00
chausner
22d7c8b375
[Many ports] Remove/fix unused patch files ( #20620 )
...
* Remove/fix unused patch files
* Bump port versions
* Update git-tree hash
* Fix corrupt patch
* Update git-tree hash
* Apply suggestions from code review
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Update git-tree hash
Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2021-10-18 14:25:31 -07:00
Cheney Wang
660295dc22
[cppad/cpuid] Update to latest version ( #20187 )
...
* [cppad/cpuid] Update to latest version
* Add quotes to SOURCE_PATH
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-09-16 10:45:05 -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