homebrew-core/Formula/etcd-cpp-apiv3.rb

105 lines
4.0 KiB
Ruby

class EtcdCppApiv3 < Formula
desc "C++ implementation for etcd's v3 client API, i.e., ETCDCTL_API=3"
homepage "https://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3"
url "https://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3/archive/refs/tags/v0.2.10.tar.gz"
sha256 "d78bf656076bc657009d6ef1c6e7045932b3bcb410751b6f8ee2fecfd97d5784"
license "BSD-3-Clause"
bottle do
sha256 cellar: :any, arm64_ventura: "af5450cc690f17b36861e492dfa9c997507c4f9b874a57c4eb86af6d4c1a5e25"
sha256 cellar: :any, arm64_monterey: "60f311f325f6a6e4fc590c35385d4fc64b285c57fddec1f7965518e082d682e0"
sha256 cellar: :any, arm64_big_sur: "b2a15dd18b99b2989cbdde9bec6be78f41b812569edb5741d36014cc243f0a89"
sha256 cellar: :any, ventura: "98e82c8d8ca53eb2ff95334fd899b76a0e76baadc7cf0b609768cc4c8683d9ae"
sha256 cellar: :any, monterey: "e94394cf0703c843a5a9f684790b9f7733ddefc1d66a3dc157dd5e9ef8989676"
sha256 cellar: :any, big_sur: "2ede14639ad08c698b3b096ccfc6c669681c21b75491d30eef8c5a4f86319e7d"
sha256 cellar: :any_skip_relocation, x86_64_linux: "579da0ce8caf61c161ffd33147d8da7f0d43bf875756c5a35e8a15a333cef9f4"
end
depends_on "cmake" => :build
depends_on "etcd" => :test
depends_on "boost"
depends_on "cpprestsdk"
depends_on "grpc"
depends_on "openssl@1.1"
depends_on "protobuf"
fails_with gcc: "5"
def install
system "cmake", "-S", ".", "-B", "build",
"-DCMAKE_CXX_STANDARD=17",
"-DCMAKE_CXX_STANDARD_REQUIRED=TRUE",
"-DBUILD_ETCD_TESTS=OFF",
"-DOPENSSL_ROOT_DIR=#{Formula["openssl@1.1"].opt_prefix}",
*std_cmake_args
system "cmake", "--build", "build"
system "cmake", "--install", "build"
end
test do
port = free_port
(testpath/"test.cc").write <<~EOS
#include <iostream>
#include <etcd/Client.hpp>
int main() {
etcd::Client etcd("http://127.0.0.1:#{port}");
etcd.set("foo", "bar").wait();
auto response = etcd.get("foo").get();
std::cout << response.value().as_string() << std::endl;
}
EOS
system ENV.cxx, "test.cc", "-std=c++17",
"-I#{Formula["boost"].include}",
"-I#{Formula["cpprestsdk"].include}",
"-I#{Formula["grpc"].include}",
"-I#{Formula["openssl@1.1"].include}",
"-I#{Formula["protobuf"].include}",
"-I#{include}",
"-L#{Formula["boost"].lib}",
"-L#{Formula["cpprestsdk"].lib}",
"-L#{Formula["grpc"].lib}",
"-L#{Formula["openssl@1.1"].lib}",
"-L#{Formula["protobuf"].lib}",
"-L#{lib}",
"-lboost_random-mt",
"-lboost_chrono-mt",
"-lboost_thread-mt",
"-lboost_system-mt",
"-lboost_filesystem-mt",
"-lcpprest",
"-letcd-cpp-api",
"-lgpr", "-lgrpc", "-lgrpc++",
"-lssl", "-lcrypto",
"-lprotobuf",
"-o", "test_etcd_cpp_apiv3"
# prepare etcd
etcd_pid = fork do
if OS.mac? && Hardware::CPU.arm?
# etcd isn't officially supported on arm64
# https://github.com/etcd-io/etcd/issues/10318
# https://github.com/etcd-io/etcd/issues/10677
ENV["ETCD_UNSUPPORTED_ARCH"]="arm64"
end
exec "#{Formula["etcd"].opt_prefix}/bin/etcd",
"--force-new-cluster",
"--data-dir=#{testpath}",
"--listen-client-urls=http://127.0.0.1:#{port}",
"--advertise-client-urls=http://127.0.0.1:#{port}"
end
# sleep to let etcd get its wits about it
sleep 10
assert_equal("bar\n", shell_output("./test_etcd_cpp_apiv3"))
ensure
# clean up the etcd process before we leave
Process.kill("HUP", etcd_pid)
end
end