From 4b08fafd5b7aa4debcb47c343303e960889e191b Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Fri, 20 Sep 2024 23:08:40 +0800 Subject: [PATCH 1/2] extra-cmake-modules: build an `:all` bottle There are a few stray `/usr/local` references that can point to HOMEBREW_PREFIX instead. --- Formula/e/extra-cmake-modules.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Formula/e/extra-cmake-modules.rb b/Formula/e/extra-cmake-modules.rb index 44c8e594a01b..10d99a8db6a8 100644 --- a/Formula/e/extra-cmake-modules.rb +++ b/Formula/e/extra-cmake-modules.rb @@ -32,6 +32,10 @@ def install system "cmake", "-S", ".", "-B", "build", *args, *std_cmake_args system "cmake", "--build", "build" system "cmake", "--install", "build" + + # Ensure uniform bottles. + inreplace_files = %w[prefix.sh.cmake prefix.sh.fish.cmake].map { |f| share/"ECM/kde-modules"/f } + inreplace inreplace_files, "/usr/local", HOMEBREW_PREFIX end test do From eb303c9a514951669cf6fbb5a4ae43c68eb2253f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:28:49 +0000 Subject: [PATCH 2/2] extra-cmake-modules: update 6.6.0 bottle. --- Formula/e/extra-cmake-modules.rb | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Formula/e/extra-cmake-modules.rb b/Formula/e/extra-cmake-modules.rb index 10d99a8db6a8..ed26520681f8 100644 --- a/Formula/e/extra-cmake-modules.rb +++ b/Formula/e/extra-cmake-modules.rb @@ -12,12 +12,8 @@ class ExtraCmakeModules < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "42961b34dad3b6b7ebbf3eb0b3619e5487800b3435c3208661bf9fbf300d9cf7" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "42961b34dad3b6b7ebbf3eb0b3619e5487800b3435c3208661bf9fbf300d9cf7" - sha256 cellar: :any_skip_relocation, arm64_ventura: "42961b34dad3b6b7ebbf3eb0b3619e5487800b3435c3208661bf9fbf300d9cf7" - sha256 cellar: :any_skip_relocation, sonoma: "cefb9795390363bc8cdc6f8c930de5a451efbe0eb658138f19be3d35d3318d6a" - sha256 cellar: :any_skip_relocation, ventura: "cefb9795390363bc8cdc6f8c930de5a451efbe0eb658138f19be3d35d3318d6a" - sha256 cellar: :any_skip_relocation, x86_64_linux: "42961b34dad3b6b7ebbf3eb0b3619e5487800b3435c3208661bf9fbf300d9cf7" + rebuild 1 + sha256 cellar: :any_skip_relocation, all: "5a172ff30c38ea9f5bd85b5d3d0493edfc7ae63c907491c402946ec5eda5f520" end depends_on "cmake" => [:build, :test]