aboutsummaryrefslogtreecommitdiff
path: root/ports/rocksdb/CONTROL
AgeCommit message (Collapse)Author
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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 ```
2020-12-17[osgearth/rocksdb] Update to latest release (#14976)NancyLi1013
2020-10-20[rocksdb] update to v6.13.3 (#14085)Koby Kahane
2020-10-12[rocksdb] update to v6.11.4 (#13643)Koby Kahane
2020-03-10[rocksdb] Update to v6.6.4 (#10123)Koby Kahane
2019-08-11[rocksdb]Change linkage type to static. (#7452)JackBoosY
2019-07-17Update rocksdb to 6.1.2, adds optional zstd feature (#7304)Brad Barnich
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-05-08[many ports] Updates 2019.05.07 (#6338)Robert Schumacher
* [many ports] Updates 2019.05.07 * Undo assimp and gdcm2 changes since they caused regressions
2019-04-23[rocksdb]Update rocksdb to v6.0.1 and fix patching failure.JackBoosY
2019-04-19[rocksdb] Supported static linking in Linux (#6144)Hongxu Xu
* [rocksdb] Supported static linking in Linux * Updated rocksdb CONTROL version
2019-04-03[RocksDB] Updates 2019.03.29 (#5933)Phoebe
2019-02-11[rocksdb] Add tbb support (#5142)Peter Goodman
* Add tbb feature support to rocksdb to enable CLOCK algorithm * Use RocksDB master branch. * Undid RocksDB head requirement. * fix: remove unnecessary FindTbb.cmake
2019-01-09Updates 2018.12.14Robert Schumacher
2018-11-01[rocksdb] update to v5.15.10 (#4342)Koby Kahane
* [rocksdb] Update to v5.15.10 * [rocksdb] Cleanup * [rocksdb] Fix cmake targets name. * [toolchains] Set NDEBUG in release * [rocksdb] Disable vcpkg_test_cmake due to misbehavior in x64 * [tiff] Use lzma on linux
2018-07-08Upgrades 2018.07.08Robert Schumacher
2018-07-03Upgrades 2018.07.01Robert Schumacher
2018-06-12Upgrades for 2018.06.12Robert Schumacher
2018-05-172018.05.17 updatesAlexander Karatarakis
2018-05-01[abseil][aws-sdk-cpp][directxmesh][directxtex][directxtk][discord-rpc][exiv2 ↵Robert Schumacher
][folly][jsonnet][libuv][ms-gsl][nuklear][rocksdb][rs-core-lib][thrift][unicorn][zeromq] Upgrades
2018-04-05[abseil][aws-sdk-cpp][azure-c-shared-utility][azure-iot-sdk-c][azure-uamqp-c ↵Robert Schumacher
][azure-umqtt-c][breakpad][exiv2][gdcm2][grpc][nuklear][rocksdb][rs-core-lib][thrift][zeromq] Upgrades
2018-04-02[rocksdb] Make zlib support an optional feature (#3189)Koby Kahane
* [rocksdb] Make zlib support an optional feature. * [rocksdb] Add zlib as a default feature
2018-03-30[folly][rocksdb] Fix lz4+snappy supportRobert Schumacher
2018-03-13[abseil][breakpad][cimg][matio][piex][rocksdb][thrift][tiny-dnn][unicorn-lib ↵Robert Schumacher
][unicorn] Updates
2018-03-13[matio][rocksdb] Fix buildRobert Schumacher
2018-03-12Update versionsYury Bura
2018-03-12[rocksdb] Fix build and use debug suffix 'd'yurybura
[gtest] Fix issue #2373
2018-03-09[rocksdb] Disable optional dependencies to improve reliability.Robert Schumacher
2018-03-02[grpc][harfbuzz][jsoncpp][libuv][openjpeg][rocksdb] UpgradesRobert Schumacher
2018-02-23[rocksdb] UpdateRobert Schumacher
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2017-06-28[rocksdb] fixed third party depsatkawa7
2017-06-21fixed zlib debug ext, added gtest to depsatkawa7
2017-06-20 rocks db initial framework #1057atkawa7