Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azure-core-cpp 1.14.1 (new formula) #199596

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ awsdac
awslogs
axel
azcopy
azure-core-cpp
b2-tools
babel
babl
Expand Down
51 changes: 51 additions & 0 deletions Formula/a/azure-core-cpp.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
class AzureCoreCpp < Formula
chenrui333 marked this conversation as resolved.
Show resolved Hide resolved
desc "Primitives, abstractions and helpers for Azure SDK client libraries"
homepage "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/core/azure-core"
url "https://github.com/Azure/azure-sdk-for-cpp/archive/refs/tags/azure-core_1.14.1.tar.gz"
sha256 "e0173a675363463c63f52a215e4b3f1bfb28c901d70fe7eea420b5dc4aa591cb"
license "MIT"

livecheck do
url :stable
regex(/^azure-core[._-]v?(\d+(?:\.\d+)+)$/i)
end

bottle do
sha256 cellar: :any, arm64_sequoia: "35dd75437ffee884b48f62fcbf9b78d0166d08943990af00d3b73ec8847ee28b"
sha256 cellar: :any, arm64_sonoma: "7cb7895078ff88f4bd2b1495bc567b06d9c2d7beb1ddbe97a245ae525a6aff2a"
sha256 cellar: :any, arm64_ventura: "01a5bb7fcd40b9e7203db81a3505dc44fc295fb48cabea1a2009b8bb63688197"
sha256 cellar: :any, sonoma: "9808cb4439c393a94a69033c5190e999648b3824d0b38122609d727a0defffed"
sha256 cellar: :any, ventura: "c641fe6c2e5a32df63d61ddc4a21ef04d04e25c92d42da3c434a02201ef67b72"
sha256 cellar: :any_skip_relocation, x86_64_linux: "a1901b330cd4461a948c90d730cb3dd3b9afda6495151712ab168bb1bcf5c72e"
end

depends_on "cmake" => :build
depends_on "openssl@3"

uses_from_macos "curl"

def install
ENV["AZURE_SDK_DISABLE_AUTO_VCPKG"] = "1"
system "cmake", "-S", "sdk/core/azure-core", "-B", "build", "-DBUILD_SHARED_LIBS=ON", *std_cmake_args
system "cmake", "--build", "build"
system "cmake", "--install", "build"
end

test do
# From https://github.com/Azure/azure-sdk-for-cpp/blob/main/sdk/core/azure-core/test/ut/datetime_test.cpp
(testpath/"test.cpp").write <<~CPP
#include <cassert>
#include <azure/core/datetime.hpp>

int main() {
auto dt1 = Azure::DateTime::Parse("20130517T00:00:00Z", Azure::DateTime::DateFormat::Rfc3339);
auto dt2 = Azure::DateTime::Parse("Fri, 17 May 2013 00:00:00 GMT", Azure::DateTime::DateFormat::Rfc1123);
assert(0 != dt2.time_since_epoch().count());
assert(dt1 == dt2);
return 0;
}
CPP
system ENV.cxx, "-std=c++14", "test.cpp", "-o", "test", "-L#{lib}", "-lazure-core"
system "./test"
end
end
Loading