-
-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
autobump: add azure-core-cpp Signed-off-by: Rui Chen <[email protected]>
- Loading branch information
1 parent
d886aab
commit a6c2816
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168,6 +168,7 @@ awsdac | |
awslogs | ||
axel | ||
azcopy | ||
azure-core-cpp | ||
b2-tools | ||
babel | ||
babl | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
class AzureCoreCpp < Formula | ||
Check notice on line 1 in Formula/a/azure-core-cpp.rb GitHub Actions / LinuxBottle cache hit
Check notice on line 1 in Formula/a/azure-core-cpp.rb GitHub Actions / macOS 15-arm64Bottle cache hit
Check notice on line 1 in Formula/a/azure-core-cpp.rb GitHub Actions / macOS 14-arm64Bottle cache hit
Check notice on line 1 in Formula/a/azure-core-cpp.rb GitHub Actions / macOS 14-x86_64Bottle cache hit
Check notice on line 1 in Formula/a/azure-core-cpp.rb GitHub Actions / macOS 13-arm64Bottle cache hit
|
||
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 | ||
|
||
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 |