Cheney Wang
831e6fde42
[bitmagic] fixed clang compilation issues ( #42148 )
2024-11-14 01:45:32 -08:00
Jia Yue Hua
cf36a442d5
[bitmagic] update to 7.13.4 ( #34042 )
2023-09-27 01:24:06 -07:00
blavallee
b80c59a829
[Bitmagic] Update to 7.12.3 ( #27120 )
...
* [Bitmagic] Update to 7.12.3
* Add versions
2022-10-06 11:42:16 -07:00
blavallee
afe45473f4
[Bitmagic] Update to 7.11.2 ( #25049 )
...
* [bitmagic] Update to 7.11.2
* add SHA512
2022-06-06 09:22:45 -07:00
chausner
8960971a0a
[bitmagic] Update to 7.5.0 ( #20487 )
...
* Update bitmagic to 7.5.0
* Update CI baseline
Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-10-05 15:59:59 -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
Kevin Lalumiere
e022c1e2eb
Update bitmagic version to 7.2.0 ( #17223 )
...
* Update bitmagic version
* Install includes in subfolder
2021-04-12 10:44:07 -07:00
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions
to versions
( #15784 )
2021-01-21 09:53:22 -08:00