From 73cc0344af9f390b4990337d6a0328f080a46986 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:30:30 +0000 Subject: [PATCH 01/26] bwfmetaedit: fix style --- Formula/b/bwfmetaedit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/b/bwfmetaedit.rb b/Formula/b/bwfmetaedit.rb index 77306751e21a4..751c21ee6bb0d 100644 --- a/Formula/b/bwfmetaedit.rb +++ b/Formula/b/bwfmetaedit.rb @@ -24,7 +24,7 @@ class Bwfmetaedit < Formula def install cd "Project/GNU/CLI" do - system "./configure", "--disable-debug", "--prefix=#{prefix}" + system "./configure", "--disable-debug", "--prefix=#{prefix}" system "make", "install" end end From d7fadae554907a18702a6997c301d203f913916d Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:30:44 +0000 Subject: [PATCH 02/26] clojure-lsp: fix style --- Formula/c/clojure-lsp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/c/clojure-lsp.rb b/Formula/c/clojure-lsp.rb index 3ca71fc09ccda..8cc5721ebf739 100644 --- a/Formula/c/clojure-lsp.rb +++ b/Formula/c/clojure-lsp.rb @@ -12,7 +12,7 @@ class ClojureLsp < Formula regex(%r{^(?:release[._-])?v?(\d+(?:[T/.-]\d+)+)$}i) strategy :git do |tags, regex| # Convert tags like `2021.03.01-19.18.54` to `20210301T191854` format - tags.map { |tag| tag[regex, 1]&.gsub(".", "")&.gsub(%r{[/-]}, "T") }.compact + tags.map { |tag| tag[regex, 1]&.delete(".")&.gsub(%r{[/-]}, "T") }.compact end end From 75076af1646171626136fd4e2133f074eed800d9 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:30:55 +0000 Subject: [PATCH 03/26] crystal: fix style --- Formula/c/crystal.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/c/crystal.rb b/Formula/c/crystal.rb index 0f3e5eb5a2eb2..deeba8ce553e4 100644 --- a/Formula/c/crystal.rb +++ b/Formula/c/crystal.rb @@ -32,7 +32,7 @@ class Crystal < Formula head do url "https://github.com/crystal-lang/crystal.git", branch: "master" - uses_from_macos "libffi" # for the interpreter + uses_from_macos "libffi" # for the interpreter resource "shards" do url "https://github.com/crystal-lang/shards.git", branch: "master" From b554a9d1bbef0553df38f92b326a031733d6fda7 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:31:07 +0000 Subject: [PATCH 04/26] crytic-compile: fix style --- Formula/c/crytic-compile.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/c/crytic-compile.rb b/Formula/c/crytic-compile.rb index 074c528cff1a6..d6ec3679db3b1 100644 --- a/Formula/c/crytic-compile.rb +++ b/Formula/c/crytic-compile.rb @@ -43,7 +43,7 @@ def install end resource("testdata").stage do - system bin/"crytic-compile", "variable-0.8.0.sol-0.8.15-compact.zip", \ + system bin/"crytic-compile", "variable-0.8.0.sol-0.8.15-compact.zip", "--export-format=solc", "--export-dir=#{testpath}/export" end From f1e1a0993bcfd99aa14e55f51b6eef900532c53e Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:31:24 +0000 Subject: [PATCH 05/26] dvanalyzer: fix style --- Formula/d/dvanalyzer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/d/dvanalyzer.rb b/Formula/d/dvanalyzer.rb index b68a1123eee5a..510aa662bbf46 100644 --- a/Formula/d/dvanalyzer.rb +++ b/Formula/d/dvanalyzer.rb @@ -46,7 +46,7 @@ def install end cd "AVPS_DV_Analyzer/Project/GNU/CLI" do - system "./configure", "--disable-debug", "--enable-staticlibs", "--prefix=#{prefix}" + system "./configure", "--disable-debug", "--enable-staticlibs", "--prefix=#{prefix}" system "make", "install" end end From 7b05a9e86ce3f4c59327b832ffb749edee8d7052 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:31:35 +0000 Subject: [PATCH 06/26] eatmemory: fix style --- Formula/e/eatmemory.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/e/eatmemory.rb b/Formula/e/eatmemory.rb index 4f4a4fc564d64..c7423ae0ee2c8 100644 --- a/Formula/e/eatmemory.rb +++ b/Formula/e/eatmemory.rb @@ -22,7 +22,7 @@ def install test do # test version match out = shell_output "#{bin}/eatmemory -?" - version_escaped = version.to_s.gsub(/\./, '\.') + version_escaped = version.to_s.gsub(".", '\.') assert_match %r{^eatmemory #{version_escaped} - https://github.com/julman99/eatmemory\n.*}, out # test for expected output From c85da7c8b051990b84706b9b724ed990812c49a7 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:31:48 +0000 Subject: [PATCH 07/26] g3log: fix style --- Formula/g/g3log.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/g/g3log.rb b/Formula/g/g3log.rb index 4e43271a327ad..4dfd64d2a85ac 100644 --- a/Formula/g/g3log.rb +++ b/Formula/g/g3log.rb @@ -24,7 +24,7 @@ def install end test do - (testpath/"test.cpp").write <<~EOS.gsub(/TESTDIR/, testpath) + (testpath/"test.cpp").write <<~EOS.gsub("TESTDIR", testpath) #include #include int main() From 1d233136661ec6cb9e3219b118f83cd86a6714ba Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:31:58 +0000 Subject: [PATCH 08/26] gdal: fix style --- Formula/g/gdal.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/g/gdal.rb b/Formula/g/gdal.rb index 07b19ea4875b3..0c5f6e0d39281 100644 --- a/Formula/g/gdal.rb +++ b/Formula/g/gdal.rb @@ -27,7 +27,7 @@ class Gdal < Formula depends_on "doxygen" => :build end - depends_on "boost" => :build # for `libkml` + depends_on "boost" => :build # for `libkml` depends_on "cmake" => :build depends_on "pkg-config" => :build depends_on "swig" => :build From 1679345783bb953568bdf184003c0b6d48278c9f Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:32:11 +0000 Subject: [PATCH 09/26] haskell-language-server: fix style --- Formula/h/haskell-language-server.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/h/haskell-language-server.rb b/Formula/h/haskell-language-server.rb index 8e854d75369a7..658f168bbae05 100644 --- a/Formula/h/haskell-language-server.rb +++ b/Formula/h/haskell-language-server.rb @@ -53,7 +53,7 @@ def install end def caveats - ghc_versions = ghcs.map(&:version).map(&:to_s).join(", ") + ghc_versions = ghcs.map { |ghc| ghc.version.to_s }.join(", ") <<~EOS #{name} is built for GHC versions #{ghc_versions}. From 7c3c3c5a01670e4ec12ed51af72fff59356079ed Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:32:22 +0000 Subject: [PATCH 10/26] hyperspec: fix style --- Formula/h/hyperspec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/h/hyperspec.rb b/Formula/h/hyperspec.rb index 72539883c6f13..478e4a9eb197f 100644 --- a/Formula/h/hyperspec.rb +++ b/Formula/h/hyperspec.rb @@ -9,7 +9,7 @@ class Hyperspec < Formula url :homepage regex(/href=.*?HyperSpec[._-]v?(\d+(?:[.-]\d+)+)\.t/i) strategy :page_match do |page, regex| - page.scan(regex).map { |match| match&.first&.gsub("-", ".") } + page.scan(regex).map { |match| match&.first&.tr("-", ".") } end end From 9ca237a7bc85e854c8465c9ad08f8a333ba27a44 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:32:32 +0000 Subject: [PATCH 11/26] icu4c: fix style --- Formula/i/icu4c.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/i/icu4c.rb b/Formula/i/icu4c.rb index 8c967f81fa01b..4c7d7a5d6f755 100644 --- a/Formula/i/icu4c.rb +++ b/Formula/i/icu4c.rb @@ -10,7 +10,7 @@ class Icu4c < Formula url :stable regex(/^release[._-]v?(\d+(?:[.-]\d+)+)$/i) strategy :git do |tags, regex| - tags.map { |tag| tag[regex, 1]&.gsub("-", ".") }.compact + tags.map { |tag| tag[regex, 1]&.tr("-", ".") }.compact end end From 3518a87318b7163450c9ef9896d1f3771a5e585f Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:32:47 +0000 Subject: [PATCH 12/26] iozone: fix style --- Formula/i/iozone.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/i/iozone.rb b/Formula/i/iozone.rb index 9cb37e99d3f60..c1a335ce6f681 100644 --- a/Formula/i/iozone.rb +++ b/Formula/i/iozone.rb @@ -9,7 +9,7 @@ class Iozone < Formula url "https://www.iozone.org/src/current/" regex(/href=.*?iozone[._-]?v?(\d+(?:[._]\d+)+)\.t/i) strategy :page_match do |page, regex| - page.scan(regex).map { |match| match&.first&.gsub("_", ".") } + page.scan(regex).map { |match| match&.first&.tr("_", ".") } end end From fc1ab52723262f41009883f7573ca98e6b23ae70 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:32:59 +0000 Subject: [PATCH 13/26] julia: fix style --- Formula/j/julia.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Formula/j/julia.rb b/Formula/j/julia.rb index 97fa30d98fc8e..78c45f5184565 100644 --- a/Formula/j/julia.rb +++ b/Formula/j/julia.rb @@ -193,8 +193,7 @@ def install # This also checks that these libraries can be loaded even when # the symlinks are broken (e.g. by version bumps). libs = (lib/"julia").glob(shared_library("*")) - .map(&:basename) - .map(&:to_s) + .map { |library| library.basename.to_s } .reject do |name| name.start_with?("sys", "libjulia-internal", "libccalltest") end From 506d470189f351de2031c16bcfd6311899b53bac Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:33:10 +0000 Subject: [PATCH 14/26] ledit: fix style --- Formula/l/ledit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/l/ledit.rb b/Formula/l/ledit.rb index cf9a35056a944..dc7aaec5a96df 100644 --- a/Formula/l/ledit.rb +++ b/Formula/l/ledit.rb @@ -10,7 +10,7 @@ class Ledit < Formula url :stable regex(/^ledit[._-]v?(\d+(?:[.-]\d+)+)$/i) strategy :git do |tags, regex| - tags.map { |tag| tag[regex, 1]&.gsub("-", ".") }.compact + tags.map { |tag| tag[regex, 1]&.tr("-", ".") }.compact end end From 3a15cbe85899b9dded6d76a656b0c634b78aa166 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:33:24 +0000 Subject: [PATCH 15/26] litecli: fix style --- Formula/l/litecli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/l/litecli.rb b/Formula/l/litecli.rb index 17c5988364181..543449c765eea 100644 --- a/Formula/l/litecli.rb +++ b/Formula/l/litecli.rb @@ -87,7 +87,7 @@ def install # remove ANSI colors output.gsub!(/\e\[([;\d]+)?m/, "") # normalize line endings - output.gsub!(/\r\n/, "\n") + output.gsub!("\r\n", "\n") expected = <<~EOS name From 132e4d6a2837af574ebfec37162856af49a56f2e Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:33:36 +0000 Subject: [PATCH 16/26] millet: fix style --- Formula/m/millet.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/m/millet.rb b/Formula/m/millet.rb index 7df9e57161f09..7f4b3a1704e2e 100644 --- a/Formula/m/millet.rb +++ b/Formula/m/millet.rb @@ -46,22 +46,22 @@ def install parse_content_length = lambda { |header_part| content_length_header = header_part.split("\r\n")[0] content_length = content_length_header.split(":")[1].to_i - return content_length + content_length } read_header_part = lambda { |pipe| - return pipe.readline("\r\n\r\n") + pipe.readline("\r\n\r\n") } read_response = lambda { |pipe| header_part = read_header_part.call(pipe) content_length = parse_content_length.call(header_part) - return JSON.parse(pipe.readpartial(content_length)) + JSON.parse(pipe.readpartial(content_length)) } json_rpc_message = lambda { |msg| msg_string = msg.to_json - return "Content-Length: #{msg_string.length}\r\n\r\n" + msg_string + "Content-Length: #{msg_string.length}\r\n\r\n" + msg_string } send_message = lambda { |pipe, msg| From 7f72903438a28eb1934a04861a81f4680f76552d Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:33:51 +0000 Subject: [PATCH 17/26] minio-mc: fix style --- Formula/m/minio-mc.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/m/minio-mc.rb b/Formula/m/minio-mc.rb index 802db4f31fe86..3b830db36acd7 100644 --- a/Formula/m/minio-mc.rb +++ b/Formula/m/minio-mc.rb @@ -35,7 +35,7 @@ def install system "go", "build", *std_go_args(output: bin/"mc") else minio_release = stable.specs[:tag] - minio_version = minio_release.gsub(/RELEASE\./, "").chomp.gsub(/T(\d+)-(\d+)-(\d+)Z/, 'T\1:\2:\3Z') + minio_version = minio_release.gsub("RELEASE.", "").chomp.gsub(/T(\d+)-(\d+)-(\d+)Z/, 'T\1:\2:\3Z') proj = "github.com/minio/mc" ldflags = %W[ -X #{proj}/cmd.Version=#{minio_version} From 17d5ae3152580836cf56f4b93925d2145236eb5f Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:34:04 +0000 Subject: [PATCH 18/26] minio: fix style --- Formula/m/minio.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/m/minio.rb b/Formula/m/minio.rb index bec9436d77cbb..dc2563bf712b5 100644 --- a/Formula/m/minio.rb +++ b/Formula/m/minio.rb @@ -33,7 +33,7 @@ def install system "go", "build", *std_go_args else release = `git tag --points-at HEAD`.chomp - version = release.gsub(/RELEASE\./, "").chomp.gsub(/T(\d+)-(\d+)-(\d+)Z/, 'T\1:\2:\3Z') + version = release.gsub("RELEASE.", "").chomp.gsub(/T(\d+)-(\d+)-(\d+)Z/, 'T\1:\2:\3Z') ldflags = %W[ -s -w From 852a9872a3ffd8cb118505c046fe59d76666958f Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:34:13 +0000 Subject: [PATCH 19/26] opencascade: fix style --- Formula/o/opencascade.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/o/opencascade.rb b/Formula/o/opencascade.rb index f35ec21a017d0..8c2d179bba31e 100644 --- a/Formula/o/opencascade.rb +++ b/Formula/o/opencascade.rb @@ -16,7 +16,7 @@ class Opencascade < Formula url "https://git.dev.opencascade.org/repos/occt.git" regex(/^v?(\d+(?:[._]\d+)+(?:p\d+)?)$/i) strategy :git do |tags, regex| - tags.map { |tag| tag[regex, 1]&.gsub("_", ".") }.compact + tags.map { |tag| tag[regex, 1]&.tr("_", ".") }.compact end end @@ -82,7 +82,7 @@ def install output = shell_output("#{bin}/DRAWEXE -b -c \"pload ALL\"") # Discard the first line ("DRAW is running in batch mode"), and check that the second line is "1" - assert_equal "1", output.split(/\n/, 2)[1].chomp + assert_equal "1", output.split("\n", 2)[1].chomp # Make sure hardcoded library name references in our CMake config files are valid. # https://github.com/Homebrew/homebrew-core/issues/129111 From e8683ea2feecf78830af9b101d4bc71feeb91849 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:34:22 +0000 Subject: [PATCH 20/26] pinot: fix style --- Formula/p/pinot.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Formula/p/pinot.rb b/Formula/p/pinot.rb index fd88d21b520ab..a834923128396 100644 --- a/Formula/p/pinot.rb +++ b/Formula/p/pinot.rb @@ -56,7 +56,6 @@ def install sleep 40 assert_match("HTTP/1.1 200 OK", shell_output("curl -i http://localhost:#{controller_port} 2>&1")) - ensure Process.kill "TERM", controller_pid Process.wait controller_pid From 8eb124c463b8c2a890eed524873ddad1c1d00f3b Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:34:33 +0000 Subject: [PATCH 21/26] pioneers: fix style --- Formula/p/pioneers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/pioneers.rb b/Formula/p/pioneers.rb index d9e737abdbe79..74dc865ffa96b 100644 --- a/Formula/p/pioneers.rb +++ b/Formula/p/pioneers.rb @@ -36,7 +36,7 @@ def install # GNU ld-only options inreplace Dir["configure{,.ac}"] do |s| - s.gsub!(/ -Wl,--as-needed/, "") + s.gsub!(" -Wl,--as-needed", "") s.gsub!(/ -Wl,-z,(relro|now)/, "") end From 127ecd022666e5403fb9c10c0a379cc3bb4f3c8c Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:34:44 +0000 Subject: [PATCH 22/26] pytorch: fix style --- Formula/p/pytorch.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/pytorch.rb b/Formula/p/pytorch.rb index 7db91d984e3fb..46176f32ae74b 100644 --- a/Formula/p/pytorch.rb +++ b/Formula/p/pytorch.rb @@ -80,7 +80,7 @@ def install # Update references to shared libraries inreplace "torch/__init__.py" do |s| s.sub!(/here = os.path.abspath\(__file__\)/, "here = \"#{lib}\"") - s.sub!(/get_file_path\('torch', 'bin', 'torch_shm_manager'\)/, "\"#{bin}/torch_shm_manager\"") + s.sub!("get_file_path('torch', 'bin', 'torch_shm_manager')", "\"#{bin}/torch_shm_manager\"") end inreplace "torch/utils/cpp_extension.py", "_TORCH_PATH = os.path.dirname(os.path.dirname(_HERE))", From 840eeda3f297d5d304d310dd7c8d8c89f6865442 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:34:56 +0000 Subject: [PATCH 23/26] qp: fix style --- Formula/q/qp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/q/qp.rb b/Formula/q/qp.rb index 35c47e71924c2..7b27595941fa6 100644 --- a/Formula/q/qp.rb +++ b/Formula/q/qp.rb @@ -32,7 +32,7 @@ def install resource("csp-js").stage { cp_r "index.js", buildpath/"src/csp.js" } - system "qjsc", "-o", "#{bin}/qp", + system "qjsc", "-o", "#{bin}/qp", "-fno-proxy", "-fno-eval", "-fno-string-normalize", From cd7b0ff02e6302ec32304079c13bede30aa94d6b Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:35:10 +0000 Subject: [PATCH 24/26] rdkit: fix style --- Formula/r/rdkit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/r/rdkit.rb b/Formula/r/rdkit.rb index aba6df5027439..9af8570953458 100644 --- a/Formula/r/rdkit.rb +++ b/Formula/r/rdkit.rb @@ -10,7 +10,7 @@ class Rdkit < Formula url :stable regex(/^Release[._-](\d+(?:[._]\d+)+)$/i) strategy :git do |tags| - tags.map { |tag| tag[regex, 1]&.gsub("_", ".") }.compact + tags.map { |tag| tag[regex, 1]&.tr("_", ".") }.compact end end From ab4cbd98c03652dff1a7d559213bf20abb722313 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:35:19 +0000 Subject: [PATCH 25/26] sqlite: fix style --- Formula/s/sqlite.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/s/sqlite.rb b/Formula/s/sqlite.rb index 0df8abbcc094c..88d7d54153587 100644 --- a/Formula/s/sqlite.rb +++ b/Formula/s/sqlite.rb @@ -10,7 +10,7 @@ class Sqlite < Formula url :homepage regex(%r{href=.*?releaselog/v?(\d+(?:[._]\d+)+)\.html}i) strategy :page_match do |page, regex| - page.scan(regex).map { |match| match&.first&.gsub("_", ".") } + page.scan(regex).map { |match| match&.first&.tr("_", ".") } end end From 0664c758b78989a58e94d468363ba3bcd104a14a Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 15 Dec 2023 15:35:28 +0000 Subject: [PATCH 26/26] tfel: fix style --- Formula/t/tfel.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/t/tfel.rb b/Formula/t/tfel.rb index 8b9e6d57d35ca..52e2ad4429b0a 100644 --- a/Formula/t/tfel.rb +++ b/Formula/t/tfel.rb @@ -29,7 +29,7 @@ def install "-Denable-website=OFF", "-Dlocal-castem-header=ON", "-Denable-python=ON", - "-Denable-python-bindings=ON", # requires boost-python + "-Denable-python-bindings=ON", # requires boost-python "-Denable-numpy-support=OFF", "-Denable-fortran=ON", "-Denable-cyrano=ON",