Jia Yue Hua
|
317e2199f2
|
[roaring] update to 4.2.1 (#41634)
|
2024-10-18 15:02:35 -07:00 |
|
c8ef
|
ca4dec26ae
|
[roaring] update to 4.1.3 (#41078)
|
2024-09-19 13:33:49 -07:00 |
|
c8ef
|
57eb9453e8
|
[roaring] update to 4.1.2 (#40801)
|
2024-09-04 22:30:26 -07:00 |
|
Karol Wójcik
|
ebcac5ebe2
|
[roaring] update to 4.1.1 (#40614)
|
2024-08-26 00:48:39 -07:00 |
|
c8ef
|
383b10d6f1
|
[Roaring] update to 4.0.0 (#39430)
|
2024-06-21 14:17:51 -07:00 |
|
Kai Pastor
|
432c2ba507
|
[roaring] Update to 3.0.1 (#38504)
Includes fix for Android NDK r26.
|
2024-05-02 22:01:19 -07:00 |
|
Jia Yue Hua
|
ec04628385
|
[roaring] update to 3.0.0 (#37746)
|
2024-03-27 15:22:41 -07:00 |
|
Thomas1664
|
4d973549d7
|
[roaring] Update to 2.0.4 (#35691)
* [roaring] Update to 2.0.4
* version
* Fix race
* version
|
2023-12-14 17:43:04 -08:00 |
|
Andrey Nekrasov
|
357d36106b
|
[roaring] Update to 0.9.6 (#29579)
|
2023-02-13 07:37:58 -08:00 |
|
autoantwort
|
4bff872bb2
|
[roaring] no absolute paths (#27034)
|
2022-09-30 14:38:26 -07:00 |
|
Li Wu
|
bded093da1
|
upgrade roaring to 0.7.1 (#26802)
Co-authored-by: Li Wu <wuli@yanhuangdata.com>
|
2022-09-19 11:45:39 -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 |
|