121 lines
4.2 KiB
Ruby
121 lines
4.2 KiB
Ruby
class Grpc < Formula
|
|
desc "Next generation open source RPC library and framework"
|
|
homepage "https://grpc.io/"
|
|
url "https://github.com/grpc/grpc.git",
|
|
tag: "v1.48.1",
|
|
revision: "d52ed193d11dee797c0d51dc8db06032998b33f4"
|
|
license "Apache-2.0"
|
|
head "https://github.com/grpc/grpc.git", branch: "master"
|
|
|
|
# The "latest" release on GitHub is sometimes for an older major/minor and
|
|
# there's sometimes a notable gap between when a version is tagged and
|
|
# released, so we have to check the releases page instead.
|
|
livecheck do
|
|
url "https://github.com/grpc/grpc/releases?q=prerelease%3Afalse"
|
|
regex(%r{href=["']?[^"' >]*?/tag/v?(\d+(?:\.\d+)+)["' >]}i)
|
|
strategy :page_match
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "568c39ad7d9610f41bcb34209cb427e9b79d367bdd36fb3d7feecba05758fced"
|
|
sha256 cellar: :any, arm64_big_sur: "368def753bba0318add78063e1ddf700791d93c2a461df64c58b9f8496fe1212"
|
|
sha256 cellar: :any, monterey: "620229f74c80fab4b0fdb5fb8fa251566261c3ec48f93ebe4594a21100f3cb5f"
|
|
sha256 cellar: :any, big_sur: "2fc59389644e24a64c8900f0c9da4b6c1bc546cea62aff5a40128271b618d4a8"
|
|
sha256 cellar: :any, catalina: "4a64e22eb6c832174fd04630b838af5225d0b5aa9ce2f3f0b620047ad9381dc3"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "b0acd012d2e2281dba7412472f271daefc5b1f30a020dbf24f1e661246df98fc"
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "cmake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "pkg-config" => :test
|
|
depends_on "abseil"
|
|
depends_on "c-ares"
|
|
depends_on "openssl@1.1"
|
|
depends_on "protobuf"
|
|
depends_on "re2"
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
on_macos do
|
|
# This shouldn't be needed for `:test`, but there's a bug in `brew`:
|
|
# CompilerSelectionError: pdnsrec cannot be built with any available compilers.
|
|
depends_on "llvm" => [:build, :test] if DevelopmentTools.clang_build_version <= 1100
|
|
end
|
|
|
|
on_linux do
|
|
depends_on "gcc"
|
|
end
|
|
|
|
fails_with :clang do
|
|
build 1100
|
|
cause "Requires C++17 features not yet implemented"
|
|
end
|
|
|
|
fails_with gcc: "5" # C++17
|
|
|
|
def install
|
|
ENV.remove "HOMEBREW_LIBRARY_PATHS", Formula["llvm"].opt_lib
|
|
ENV.llvm_clang if OS.mac? && (DevelopmentTools.clang_build_version <= 1100)
|
|
mkdir "cmake/build" do
|
|
args = %W[
|
|
../..
|
|
-DCMAKE_CXX_STANDARD=17
|
|
-DCMAKE_CXX_STANDARD_REQUIRED=TRUE
|
|
-DCMAKE_INSTALL_RPATH=#{rpath}
|
|
-DBUILD_SHARED_LIBS=ON
|
|
-DgRPC_BUILD_TESTS=OFF
|
|
-DgRPC_INSTALL=ON
|
|
-DgRPC_ABSL_PROVIDER=package
|
|
-DgRPC_CARES_PROVIDER=package
|
|
-DgRPC_PROTOBUF_PROVIDER=package
|
|
-DgRPC_SSL_PROVIDER=package
|
|
-DgRPC_ZLIB_PROVIDER=package
|
|
-DgRPC_RE2_PROVIDER=package
|
|
] + std_cmake_args
|
|
|
|
system "cmake", *args
|
|
system "make", "install"
|
|
|
|
args = %W[
|
|
../..
|
|
-DCMAKE_INSTALL_RPATH=#{rpath}
|
|
-DBUILD_SHARED_LIBS=ON
|
|
-DgRPC_BUILD_TESTS=ON
|
|
] + std_cmake_args
|
|
system "cmake", *args
|
|
system "make", "grpc_cli"
|
|
bin.install "grpc_cli"
|
|
lib.install Dir[shared_library("libgrpc++_test_config", "*")]
|
|
|
|
if OS.mac?
|
|
# These are installed manually, so need to be relocated manually as well
|
|
MachO::Tools.add_rpath(bin/"grpc_cli", rpath)
|
|
MachO::Tools.add_rpath(lib/shared_library("libgrpc++_test_config"), rpath)
|
|
end
|
|
end
|
|
end
|
|
|
|
test do
|
|
# Force use of system clang on Mojave
|
|
ENV.clang if OS.mac? && (DevelopmentTools.clang_build_version <= 1100)
|
|
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <grpc/grpc.h>
|
|
int main() {
|
|
grpc_init();
|
|
grpc_shutdown();
|
|
return GRPC_STATUS_OK;
|
|
}
|
|
EOS
|
|
ENV.prepend_path "PKG_CONFIG_PATH", Formula["openssl@1.1"].opt_lib/"pkgconfig"
|
|
pkg_config_flags = shell_output("pkg-config --cflags --libs libcares protobuf re2 grpc++").chomp.split
|
|
system ENV.cc, "test.cpp", "-L#{Formula["abseil"].opt_lib}", *pkg_config_flags, "-o", "test"
|
|
system "./test"
|
|
|
|
output = shell_output("grpc_cli ls localhost:#{free_port} 2>&1", 1)
|
|
assert_match "Received an error when querying services endpoint.", output
|
|
end
|
|
end
|