From 05df97f085d6e55f8b3a36060ddcae8dfe243c48 Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Thu, 22 Aug 2024 17:01:23 -0700 Subject: [PATCH] gz-math8: use stable branch in url Signed-off-by: Steve Peters --- Formula/gz-math8.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/gz-math8.rb b/Formula/gz-math8.rb index ad4d70e8f..a94d52185 100644 --- a/Formula/gz-math8.rb +++ b/Formula/gz-math8.rb @@ -1,7 +1,7 @@ class GzMath8 < Formula desc "Math API for robotic applications" homepage "https://gazebosim.org" - url "https://github.com/gazebosim/gz-math.git", branch: "main" + url "https://github.com/gazebosim/gz-math.git", branch: "gz-math8" version "7.999.999-0-20231006" license "Apache-2.0" @@ -48,7 +48,7 @@ def install } EOS (testpath/"CMakeLists.txt").write <<-EOS - cmake_minimum_required(VERSION 3.5 FATAL_ERROR) + cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR) find_package(gz-math8 QUIET REQUIRED) add_executable(test_cmake test.cpp) target_link_libraries(test_cmake gz-math8::gz-math8)