From 517a99a707e8431029b002811aef9681a59f5fd4 Mon Sep 17 00:00:00 2001 From: taoxu Date: Wed, 27 Apr 2022 14:02:08 +0800 Subject: [PATCH] Bump orc version to latest stable 1.6.14 --- WORKSPACE | 6 +++--- third_party/liborc.BUILD | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index e232897fb..11e449fc0 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -590,10 +590,10 @@ http_archive( patch_cmds = [ "tar -xzf c++/libs/libhdfspp/libhdfspp.tar.gz -C c++/libs/libhdfspp", ], - sha256 = "abdffe48b8d2e7776c3b541ee2241401e49774941ca4a8c759e5d795daec8a45", - strip_prefix = "orc-rel-release-1.6.7", + sha256 = "39d983f4c7feb8ea1e8ab8e3e53e9afc643282b7a500b3a93c91aa6490f65c17", + strip_prefix = "orc-rel-release-1.6.14", urls = [ - "https://github.com/apache/orc/archive/refs/tags/rel/release-1.6.7.tar.gz", + "https://github.com/apache/orc/archive/refs/tags/rel/release-1.6.14.tar.gz", ], ) diff --git a/third_party/liborc.BUILD b/third_party/liborc.BUILD index 9cc2e6a01..0ca325fd6 100644 --- a/third_party/liborc.BUILD +++ b/third_party/liborc.BUILD @@ -92,7 +92,7 @@ genrule( srcs = ["c++/include/orc/orc-config.hh.in"], outs = ["c++/include/orc/orc-config.hh"], cmd = ("sed " + - "-e 's/@ORC_VERSION@/1.6.7/g' " + + "-e 's/@ORC_VERSION@/1.6.14/g' " + "-e 's/cmakedefine/define/g' " + "$< >$@"), )