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

113 lines
4.1 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.6.tar.gz"
sha256 "ef2bee616031316bc4cbc416cf9932fd1b2273f5f8fe9c24d2b3602c14277e8a"
license "BSD-3-Clause"
revision 3
bottle do
sha256 cellar: :any, arm64_monterey: "0b3ff796f8f384c630d74fed859dc5b6e093f8a11611e18ba94f7cd94fb412a4"
sha256 cellar: :any, arm64_big_sur: "78a49fd2ae226663eb30887e696b531bd83ca57ea223aca63ae496c89b98e0e6"
sha256 cellar: :any, monterey: "4c2b98a226dc6c95099b46d8007e86595ae4132c618001452c91e9495e8a6b6f"
sha256 cellar: :any, big_sur: "6b7748b3dd248a4bfd4acf48a6d7814be8ff1f10ebe149f09d04a1dcc9afc624"
sha256 cellar: :any, catalina: "8866215ace8113afcd75fd54edbf34131a50e900e4ddbd75254ddf9e7fb3394a"
sha256 cellar: :any_skip_relocation, x86_64_linux: "331ac6e0f061212ef36f91eab7f7c4df0aaa5c8c8e5abf59b4c39832bbf231d7"
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"
# grpc requrires high version of gcc and are built with high version of gcc,
# thus gcc 5 won't work
on_linux do
depends_on "gcc"
end
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
on_macos do
if 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
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