Files
macports-ports/math/arowpp/files/fix-build.patch
2021-01-15 12:14:29 -06:00

25 lines
964 B
Diff

Fix build failure with current bazel.
https://github.com/tetsuok/arowpp/issues/1
https://github.com/tetsuok/arowpp/commit/803b10a3fc4306b033a00db8bb50b6146d282e0c
--- WORKSPACE.orig
+++ WORKSPACE
@@ -15,10 +15,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-new_http_archive(
+workspace(name = "com_github_tetsuok_arowpp")
+load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
+
+http_archive(
name = "gtest",
- url = "https://googletest.googlecode.com/files/gtest-1.7.0.zip",
- sha256 = "247ca18dd83f53deb1328be17e4b1be31514cedfc1e3424f672bf11fd7e0d60d",
- build_file = "gtest.BUILD",
- strip_prefix = "gtest-1.7.0",
+ url = "https://github.com/google/googletest/archive/release-1.7.0.zip",
+ sha256 = "b58cb7547a28b2c718d1e38aee18a3659c9e3ff52440297e965f5edffe34b6d0",
+ build_file = "@//:gtest.BUILD",
+ strip_prefix = "googletest-release-1.7.0",
)