Skip to content

Commit 7234e1c

Browse files
authored
fix abseil repo name mismatch (#67)
* fix abseil repo name mismatch * fix abseil repo name mismatch
1 parent d4868fc commit 7234e1c

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

bazel/repositories.bzl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ def cpp2sky_dependencies():
1414
def skywalking_data_collect_protocol():
1515
http_archive(
1616
name = "skywalking_data_collect_protocol",
17-
sha256 = "015d152be6efc653cf0f9f9c2e7edff1b38b826273f03fffedd307026ef56e28",
17+
# 2021-03-01
18+
sha256 = "4a3401098e0e49ae56d03cc4890b21c75bab6ccf1c157d73bb0c93fc15bb07c7",
1819
urls = [
19-
"https://github.com/Shikugawa/skywalking-data-collect-protocol/archive/fbce318842c40c81cf909d50a7f6dd1556d2e4b2.tar.gz"
20+
"https://github.com/apache/skywalking-data-collect-protocol/archive/c987be061e570ce7d0d8f415753f05555e787407.tar.gz"
2021
],
21-
strip_prefix = "skywalking-data-collect-protocol-fbce318842c40c81cf909d50a7f6dd1556d2e4b2",
22+
strip_prefix = "skywalking-data-collect-protocol-c987be061e570ce7d0d8f415753f05555e787407",
2223
)
2324

2425
def com_github_grpc_grpc():
@@ -85,7 +86,7 @@ def com_github_gabime_spdlog():
8586

8687
def com_google_abseil():
8788
http_archive(
88-
name = "com_github_abseil-cpp",
89+
name = "com_google_absl",
8990
sha256 = "e3812f256dd7347a33bf9d93a950cf356c61c0596842ff07d8154cd415145d83",
9091
strip_prefix = "abseil-cpp-5d8fc9192245f0ea67094af57399d7931d6bd53f",
9192
urls = ["https://github.com/abseil/abseil-cpp/archive/5d8fc9192245f0ea67094af57399d7931d6bd53f.tar.gz"],

source/BUILD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cc_library(
2525
"@skywalking_data_collect_protocol//language-agent:configuration_discovery_service_cc_grpc",
2626
"@com_github_grpc_grpc//:grpc++",
2727
"@com_github_gabime_spdlog//:spdlog",
28-
"@com_github_abseil-cpp//absl/strings:strings",
28+
"@com_google_absl//absl/strings:strings",
2929
"//cpp2sky/internal:async_client_interface",
3030
"//cpp2sky/internal:stream_builder_interface",
3131
"//cpp2sky/internal:matcher_interface",
@@ -51,7 +51,7 @@ cc_library(
5151
"@skywalking_data_collect_protocol//language-agent:tracing_protocol_cc_grpc",
5252
"@com_github_grpc_grpc//:grpc++",
5353
"@com_github_gabime_spdlog//:spdlog",
54-
"@com_github_abseil-cpp//absl/strings:strings",
54+
"@com_google_absl//absl/strings:strings",
5555
"//cpp2sky/internal:async_client_interface",
5656
"//cpp2sky/internal:stream_builder_interface",
5757
"//cpp2sky/internal:matcher_interface",
@@ -77,7 +77,7 @@ cc_library(
7777
deps = [
7878
"@skywalking_data_collect_protocol//language-agent:configuration_discovery_service_cc_proto",
7979
"@skywalking_data_collect_protocol//language-agent:tracing_protocol_cc_proto",
80-
"@com_github_abseil-cpp//absl/strings:strings",
80+
"@com_google_absl//absl/strings:strings",
8181
"//cpp2sky:config_cc_proto",
8282
"//cpp2sky:cpp2sky_interface",
8383
"//source/utils:util_lib",

source/matchers/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cc_library(
55
hdrs = ["suffix_matcher.h"],
66
srcs = ["suffix_matcher.cc"],
77
deps = [
8-
"@com_github_abseil-cpp//absl/strings:strings",
8+
"@com_google_absl//absl/strings:strings",
99
"//cpp2sky/internal:matcher_interface",
1010
],
1111
visibility = ["//visibility:public"],

0 commit comments

Comments
 (0)