c8ef
46e16df80a
[Xsimd] update to 13.0.0 ( #39437 )
2024-06-21 14:33:05 -07:00
Jia Yue Hua
856d578aef
[xsimd] update to 12.1.1 ( #37331 )
...
- [X] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md )
- [X] SHA512s are updated for each updated download
- [ ] ~The "supports" clause reflects platforms that may be fixed by
this new version~
- [ ] ~Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt )
entries are removed from that file.~
- [ ] ~Any patches that are no longer applied are deleted from the
port's directory.~
- [X] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [X] Only one version is added to each modified port's versions file.
2024-03-11 13:04:11 -07:00
Cheney Wang
3d007e3e9d
[xsimd] update to 12.0.0 ( #35440 )
2023-12-04 17:19:21 -08:00
Weihang Ding
42ffe30d32
[xsimd] Bump to 11.1.0 ( #32956 )
...
* [xsimd] Bump to 11.1.0
* update version database
2023-08-07 09:04:53 -07:00
Cheney Wang
75144f581d
[xtensor] update to 0.24.6 ( #31369 )
2023-05-10 11:11:05 -07:00
Bernhard Manfred Gruber
5ad884fb6a
[xsimd] Update to version 9.0.1 ( #26501 )
...
* [xsimd] Update to version 9.0.1
* Add keyword FEATURES for vcpkg_check_features
* x-add-version
Co-authored-by: Lily Wang <494550702@qq.com>
2022-11-14 14:28:09 -08:00
Sutou Kouhei
43c85d7a8f
[xsimd] Update to 8.1.0 ( #25030 )
...
* [xsimd] Update to 8.1.0
* Add missing license information
* Update version
2022-06-02 15:15:09 -07:00
chausner
6368691c71
[xsimd] Update to 8.0.3 ( #20956 )
...
* Update xsimd to 8.0.3
* Update CI baseline
* Remove double quotes
* update version
Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-10-26 23:55:17 -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
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions
to versions
( #15784 )
2021-01-21 09:53:22 -08:00