mirror of
https://github.com/microsoft/plcrashreporter.git
synced 2026-01-18 04:01:18 +01:00
* Update protobuf.rb * Use macos 13 and xcode 14 * Update xcode version in tests * Fix warning in plcrashutil * Increase macos target for plcrashutil * Increase minimum supported version of macOS to 11.5
76 lines
2.7 KiB
Ruby
76 lines
2.7 KiB
Ruby
class Protobuf < Formula
|
|
desc "Protocol buffers (Google's data interchange format)"
|
|
homepage "https://protobuf.dev/"
|
|
url "https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protobuf-28.3.tar.gz"
|
|
sha256 "7c3ebd7aaedd86fa5dc479a0fda803f602caaf78d8aff7ce83b89e1b8ae7442a"
|
|
license "BSD-3-Clause"
|
|
|
|
livecheck do
|
|
url :stable
|
|
strategy :github_latest
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_sequoia: "cec9ebadfa0ff65482e3e195660a13ca43844792ed98822ad10b2bca4ef8e45c"
|
|
sha256 cellar: :any, arm64_sonoma: "537ab66678b04aa2e770bc65aa710d63f37a1b5a1c65717c2e8954cdbb94d883"
|
|
sha256 cellar: :any, arm64_ventura: "4a0a0e6db20bd8444491b35c34d6c51e42b493bcb3a3e6b309bdbd06bd85eab9"
|
|
sha256 cellar: :any, sonoma: "446d7adcff7604c570a50f2aca5484612a32481cbe677e1bccdbe62989062de4"
|
|
sha256 cellar: :any, ventura: "e52757d69a1f986314de2dd508eae336a544fb96838038fb76d0915b017bcc32"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "b62500bd2fcf54e820720441d969bca0204ce95bab6e16dcb247bb28398356bd"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "abseil"
|
|
uses_from_macos "zlib"
|
|
|
|
on_macos do
|
|
# We currently only run tests on macOS.
|
|
# Running them on Linux requires rebuilding googletest with `-fPIC`.
|
|
depends_on "googletest" => :build
|
|
end
|
|
|
|
patch do
|
|
url "https://github.com/protocolbuffers/protobuf/commit/e490bff517916495ed3a900aa85791be01f674f5.patch?full_index=1"
|
|
sha256 "7e89d0c379d89b24cb6fe795cd9d68e72f0b83fcc95dd91af721d670ad466022"
|
|
end
|
|
|
|
def install
|
|
# Keep `CMAKE_CXX_STANDARD` in sync with the same variable in `abseil.rb`.
|
|
abseil_cxx_standard = 17
|
|
cmake_args = %W[
|
|
-DBUILD_SHARED_LIBS=ON
|
|
-Dprotobuf_BUILD_LIBPROTOC=ON
|
|
-Dprotobuf_BUILD_SHARED_LIBS=ON
|
|
-Dprotobuf_INSTALL_EXAMPLES=ON
|
|
-Dprotobuf_BUILD_TESTS=#{OS.mac? ? "ON" : "OFF"}
|
|
-Dprotobuf_USE_EXTERNAL_GTEST=ON
|
|
-Dprotobuf_ABSL_PROVIDER=package
|
|
-Dprotobuf_JSONCPP_PROVIDER=package
|
|
]
|
|
cmake_args << "-DCMAKE_CXX_STANDARD=#{abseil_cxx_standard}"
|
|
|
|
system "cmake", "-S", ".", "-B", "build", *cmake_args, *std_cmake_args
|
|
system "cmake", "--build", "build"
|
|
system "ctest", "--test-dir", "build", "--verbose" if OS.mac?
|
|
system "cmake", "--install", "build"
|
|
|
|
(share/"vim/vimfiles/syntax").install "editors/proto.vim"
|
|
elisp.install "editors/protobuf-mode.el"
|
|
end
|
|
|
|
test do
|
|
testdata = <<~EOS
|
|
syntax = "proto3";
|
|
package test;
|
|
message TestCase {
|
|
string name = 4;
|
|
}
|
|
message Test {
|
|
repeated TestCase case = 1;
|
|
}
|
|
EOS
|
|
(testpath/"test.proto").write testdata
|
|
system bin/"protoc", "test.proto", "--cpp_out=."
|
|
end
|
|
end
|