From 5cdc44cc12ac1ebce181072131b6c1f14b819d20 Mon Sep 17 00:00:00 2001 From: Claudia Date: Sun, 30 Aug 2020 17:03:40 +0200 Subject: [PATCH] miniupnpc: conflicts_with "wownero" Add a `conflicts_with` directive to indicate that the newly-added `wownero` formula [1] also installs a `libminiupnpc.a` library. This currently blocks CI on PR #59257 [2]. To get this out of the way quickly, use `conflicts_with` for now instead of making `miniupnpc` a dependency of `wownero`. [1]: https://github.com/Homebrew/homebrew-core/pull/59687 [2]: https://github.com/Homebrew/homebrew-core/pull/59257 --- Formula/miniupnpc.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Formula/miniupnpc.rb b/Formula/miniupnpc.rb index 0ed8bbdcf4855..961ff45376bec 100644 --- a/Formula/miniupnpc.rb +++ b/Formula/miniupnpc.rb @@ -20,6 +20,8 @@ class Miniupnpc < Formula sha256 "b65b947374b703c4473c6f4daa74090181c7372e4b2d663a05890f988605eab9" => :el_capitan end + conflicts_with "wownero", because: "wownero ships its own copy of miniupnpc" + def install system "make", "INSTALLPREFIX=#{prefix}", "install" end