Commit Graph

57 Commits

Author SHA1 Message Date
autoantwort
6cfec8f9f0
[rocksdb] update to 9.1.0 (#38264)
<!-- If your PR fixes issues, please note that here by adding "Fixes
#NNNNNN." for each fixed issue on separate lines. -->

- [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.
- [x] The "supports" clause reflects platforms that may be fixed by this
new version.
- [x] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.
- [x] 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-04-19 07:38:24 -04:00
Yury Bura
b72d02c81d
[rocksdb] update to v9.0.0 (#37555) 2024-03-20 13:49:07 -07:00
Jia Yue Hua
e5c8e3fb3e
[rocksdb] update to 8.11.3 (#37329)
- [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:56 -07:00
Bruce Mitchener
e6263e5067
[rocksdb] Update to 8.10.0 (#36221) 2024-01-23 11:51:23 -08:00
Yury Bura
47728ffbeb
[rocksdb] Update to v8.9.1 (#35636)
* [rocksdb] update to v8.9.1

* add version
2023-12-13 23:29:24 -08:00
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
NancyLi1013
ce5d30cb96
[osgearth/rocksdb] Update to latest release (#14976) 2020-12-17 11:53:17 -08:00
Koby Kahane
4e3e210e8d
[rocksdb] update to v6.13.3 (#14085) 2020-10-20 16:12:34 -07:00
Koby Kahane
248169d8ee
[rocksdb] update to v6.11.4 (#13643) 2020-10-12 17:13:33 -07:00
Koby Kahane
a181bed0cf
[rocksdb] Update to v6.6.4 (#10123) 2020-03-10 17:21:14 -07:00
Robert Schumacher
1550b9e71b
[many ports] Updates 2019.07.09 (#7217)
* [many ports] Upgrades 2019.07.11

* Re-generate patches and fix build errors.

* [manyport]Fix build errors.

* Fix avro-c and console-bridge failures, revert curl and tesseract

* fix botan failure

* Fix build errors and undo some ports upgrades.

* [aws-c-common,chipmunk,cxxopts,grpc]Fix build errors

* Fix build errors.

* [angle]Undo upgrade changes.

* [directxtk]Fix UWP build error (#7233)

* Revert leptonica since it cause tesseract failed

* Revert jsonnet

* [google-cloud-cpp] Disable parallel configure due to source directory writes

* [many ports] Undo undesired changes

* [bitsery] Fix indentation

* [avro-c][aws-c-common][graphite2] Convert line endings to minimize PR diff

* fix console-bridge and remove usockets unused patch

* update ogre patch

* [many ports] Revert unneeded changes w.r.t. master. Add missing write to console-bridge.

* [console-bridge] Fix export macro

* [avro-c] Revert upgrade; split to #7875

* [avro-c] Complete previous revert
2019-08-24 13:43:57 -07:00
Victor Romero
a3a6530631
[vcpkg_check_features] Set output variable explicitly and allow reverse-logic check (#7558)
* [vcpkg_check_features] Set OUT_EXPAND_OPTIONS explicitly

* [vcpkg_check_features] Allow reverse logic for features

* [vcpkg_check_features] Document new parameters

* [vcpkg_check_features] Remove unnecessary logging

* Do not create variables for each feature only set OUT_FEATURE_OPTIONS

* Improve documentation

* Update ports that use vcpkg_check_features()

* Missing documentation updates

* [pcl] Fix tools feature

* [opencv,opencv4] Fix usage of vcpkg_check_features()

* [opencv4] Fix typo
2019-08-13 20:13:55 -07:00
JackBoosY
fffcd0a5ae [rocksdb]Change linkage type to static. (#7452) 2019-08-11 23:55:09 -07:00
Brad Barnich
4d2d85765f Update rocksdb to 6.1.2, adds optional zstd feature (#7304) 2019-07-17 15:13:28 -07:00
pravic
18b029a5e3 [WIP] Add a Homepage URL entry for vcpkg ports (#2933)
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-06-15 16:54:47 -07:00
Robert Schumacher
223d5d82ac
[many ports] Updates 2019.05.07 (#6338)
* [many ports] Updates 2019.05.07

* Undo assimp and gdcm2 changes since they caused regressions
2019-05-08 17:51:44 -07:00
JackBoosY
d5f4b24095 [rocksdb]Update rocksdb to v6.0.1 and fix patching failure. 2019-04-23 10:02:50 +00:00
Hongxu Xu
68759e0dfe [rocksdb] Supported static linking in Linux (#6144)
* [rocksdb] Supported static linking in Linux

* Updated rocksdb CONTROL version
2019-04-19 17:05:36 -07:00
Phoebe
4d224838df [RocksDB] Updates 2019.03.29 (#5933) 2019-04-03 22:15:26 -07:00
Peter Goodman
477ba33fbf [rocksdb] Add tbb support (#5142)
* Add tbb feature support to rocksdb to enable CLOCK algorithm

* Use RocksDB master branch.

* Undid RocksDB head requirement.

* fix: remove unnecessary FindTbb.cmake
2019-02-11 14:47:17 -08:00
Peter Goodman
2f4a723ed4 feat(rocksdb): enable RTTI (#5130)
This is so that you can derive a class from things like `rocksdb::AssociativeMergeOperator`. Perhaps a more "correct" patch would be to see if rtti is enabled for other builds, and enable it here, though it's not clear to me if that's feasible, so I'm suggesting this.
2019-02-07 15:16:16 -08:00
Robert Schumacher
bb1bb1c94a Updates 2018.12.14 2019-01-09 12:27:19 -08:00
Koby Kahane
91ba6e4631 [rocksdb] update to v5.15.10 (#4342)
* [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-11-01 20:47:44 -07:00
Robert Schumacher
86fecfc61c Upgrades 2018.07.08 2018-07-08 22:29:53 -07:00
Robert Schumacher
feb0e9af9a Upgrades 2018.07.01 2018-07-03 00:52:10 -07:00
Robert Schumacher
2a0bf9c488 Upgrades for 2018.06.12 2018-06-12 21:14:14 -07:00
Alexander Karatarakis
6ad96b7e7a 2018.05.17 updates 2018-05-17 22:56:05 -07:00
Erwan BERNARD
723225f529 [rocksdb] fix zlib findpackage 2018-05-16 08:15:01 +02:00
Robert Schumacher
8eac561107 [abseil][aws-sdk-cpp][directxmesh][directxtex][directxtk][discord-rpc][exiv2][folly][jsonnet][libuv][ms-gsl][nuklear][rocksdb][rs-core-lib][thrift][unicorn][zeromq] Upgrades 2018-05-01 15:49:11 -07:00
Robert Schumacher
89201f4aec [abseil][aws-sdk-cpp][azure-c-shared-utility][azure-iot-sdk-c][azure-uamqp-c][azure-umqtt-c][breakpad][exiv2][gdcm2][grpc][nuklear][rocksdb][rs-core-lib][thrift][zeromq] Upgrades 2018-04-05 22:02:37 -07:00
Koby Kahane
c4aaab17b4 [rocksdb] Make zlib support an optional feature (#3189)
* [rocksdb] Make zlib support an optional feature.

* [rocksdb] Add zlib as a default feature
2018-04-02 16:32:41 -07:00
Robert Schumacher
eea766d2d0 [folly][rocksdb] Fix lz4+snappy support 2018-03-30 15:24:36 -07:00
Robert Schumacher
51f93e27f1 [abseil][breakpad][cimg][matio][piex][rocksdb][thrift][tiny-dnn][unicorn-lib][unicorn] Updates 2018-03-13 11:16:07 -07:00
Robert Schumacher
c4457ea6a7 [matio][rocksdb] Fix build 2018-03-13 01:52:00 -07:00
Yury Bura
ffb7725355 Update versions 2018-03-12 22:44:59 +03:00
yurybura
cc3d12b16b [rocksdb] Fix build and use debug suffix 'd'
[gtest] Fix issue #2373
2018-03-12 19:16:43 +03:00
Robert Schumacher
4bf7b42571 [rocksdb] Disable optional dependencies to improve reliability. 2018-03-09 06:08:45 -08:00
Robert Schumacher
c0a6371880 [grpc][harfbuzz][jsoncpp][libuv][openjpeg][rocksdb] Upgrades 2018-03-02 17:25:02 -08:00
Robert Schumacher
43172e2318 [rocksdb] Update 2018-02-23 03:27:49 -08:00
Alexander Karatarakis
26516fe485 vcpkg_configure_cmake (and _meson) now embed debug symbols within static libs (/Z7) 2017-09-09 00:12:54 -07:00