Jia Yue Hua
45287bdd9d
[zydis,polyhook2] update to v4.0, 2023-05-16 ( #31909 )
...
* [zydis] update to v4.0
* update version
* revert patch formating
* update version
* fix eror
* fix hash
* [polyhook2]: update to 2023.05.16
* CI [skip actions]
* CI
---------
Co-authored-by: Jonliu1993 <13720414433@163.com>
2023-06-13 20:49:59 -07:00
Stephen Eckels
229c0c7ef4
update asmjit, fbgemm, polyhook2, start asmtk ( #27683 )
...
* update asmjit, fbgemm, polyhook2, start asmtk
* fix error LNK2019 and update version
* update version
* version
* NEW SHA
* revert fbgemm
* format
* v db
* new function
* v db
* update fbgemm version to 0.4.1 to fix asmjit
* v db
---------
Co-authored-by: FrankXie <v-frankxie@microsoft.com>
2023-04-10 19:27:41 -07:00
acidicoala
f9f18a0d03
[polyhook2] Update to latest (2022-03-01) ( #23338 )
2022-03-02 14:52:16 -08:00
acidicoala
a260ebdbc7
Update to latest (2022-02-21) ( #23203 )
2022-02-22 11:48:04 -08:00
Stephen Eckels
0edb2cfdab
[polyhook2] Update to latest ( #23044 )
...
* Update polyhook2
* update versions
* [polyhook2] Update to latest
* update verrsion
Co-authored-by: Jonliu1993 <13720414433@163.com>
2022-02-11 15:14:10 -08:00
Stephen Eckels
8d1b218445
update polyhook2 ( #22906 )
...
* update polyhook2
* fix vcpkg.json
* Fix port-version and update version database.
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2022-02-04 01:16:30 -08:00
Billy O'Neal
c9e786d81a
[many ports] remove remaining vcpkg_fail_port_install calls. ( #22770 )
...
* Bulk remove vcpkg_fail_port_install calls.
Interesting ones have been split out into separate reviews, where "interesting" means "anything more than just deleting the call to vcpkg_fail_port_install",
In support of https://github.com/microsoft/vcpkg/pull/21502
* Update version database.
* Revert google benchmark changes already submitted as https://github.com/microsoft/vcpkg/pull/22728
* Repair version database.
2022-01-25 10:31:15 -08: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