From de82428e520f0a1a71089043140c4bfc3b44e554 Mon Sep 17 00:00:00 2001 From: Rodrigo Queiro Date: Mon, 12 Nov 2018 10:55:01 +0100 Subject: [PATCH] Use gflags 2.2.2 in Bazel build The newly-released gflags 2.2.2 includes fixes to the Bazel BUILD files that weren't in the older 2.2.1 release. --- WORKSPACE | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index bef4d37..b5760d0 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -2,10 +2,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "com_github_gflags_gflags", - sha256 = "6e16c8bc91b1310a44f3965e616383dbda48f83e8c1eaa2370a215057b00cabe", - strip_prefix = "gflags-77592648e3f3be87d6c7123eb81cbad75f9aef5a", + strip_prefix = "gflags-2.2.2", urls = [ - "https://mirror.bazel.build/github.com/gflags/gflags/archive/77592648e3f3be87d6c7123eb81cbad75f9aef5a.tar.gz", - "https://github.com/gflags/gflags/archive/77592648e3f3be87d6c7123eb81cbad75f9aef5a.tar.gz", + "https://mirror.bazel.build/github.com/gflags/gflags/archive/v2.2.2.tar.gz", + "https://github.com/gflags/gflags/archive/v2.2.2.tar.gz", ], )