Commit Graph

11 Commits

Author SHA1 Message Date
Yury Bura
8dfa578f33
[rocksdb] update to v8.5.3 (#33535) 2023-09-05 22:33:57 -07:00
Yury Bura
4c397835c4
[rocksdb] update to v8.3.2, add/rework features (#29093)
* add more options and remove unused CMake variables

* add version

* [rocksdb] fix liburing option

* update version

* [rocksdb] disable debug runtime for Release configuration (Windows only)

* update version

* [rocksdb] remove processor-specific features

* [rocksdb] update v7.10.2

* add version

* [rocksdb] update to v8.0.0

* add version

* add version

* modify version

* add version

* [rocksdb] update to v8.3.2, build shared library, update ci.basline.txt

* update version

* [rocksdb] PORTABLE option has been modified in v8.3, it should be equal to 1

* clean up ci.baseline.txt

* =update version

* revert "clean up ci.baseline.txt"

* remove unnecessary lines

* update version

* update ci.baseline.txt

* update version

* [rocksdb] remove JeMalloc

* update version
2023-07-07 09:08:38 -07:00
MonicaLiu
f23987ed5f
[rocksdb] Update to 8.0.0 (#30509)
* update rocksdb

* update version

* update portfile.cmake

* update version

* update copyright

* update version

* merge copyright

* update version

---------

Co-authored-by: Monica <v-liumonica@microsoft.com>
2023-03-30 12:01:38 -07:00
Koby Kahane
ec47be3623
[rocksdb] update to 7.10.2. (#30074) 2023-03-19 23:40:29 -07:00
Koby Kahane
b28ef371ad
[rocksdb] update to 7.9.2. (#29040) 2023-01-19 18:01:37 -08:00
Koby Kahane
7836f538ab
[rocksdb] update to 7.8.3. (#28601) 2022-12-29 11:01:16 -08:00
autoantwort
bbf89017a8
[rocksdb] no absolute paths (#28178) 2022-12-06 12:47:05 -08:00
JonLiu1993
5b0a83d386
[rocksdb] update to 7.7.3 (#28057)
* [rocksdb] update to 7.7.3

* update version

* Add license

* update evrsion
2022-11-30 09:41:27 -08:00
Koby Kahane
7139d6c222
[rocksdb] Update to 6.27.3 (#22246)
* [rocksdb] Update to 6.27.3.

* delete PREFER_NINJA

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-12-30 10:27:59 -08:00
Koby Kahane
77d4d314c0
[rocksdb] update to v6.26.1 (#21661)
* [rocksdb] update to v6.26.1

* [rocksdb] update to v6.26.1.

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-11-26 01:18:37 -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