Skip to content
Merged
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
19 changes: 10 additions & 9 deletions Formula/l/ladybug.rb
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
class Ladybug < Formula
desc "Embedded graph database built for query speed and scalability"
homepage "https://ladybugdb.com/"
url "https://github.com/LadybugDB/ladybug/archive/refs/tags/v0.15.4.tar.gz"
sha256 "4c2ef23b5e7220033e8560f295435180df926d0ebab46c46d59d4fed74dc69f8"
url "https://github.com/LadybugDB/ladybug/archive/refs/tags/v0.15.4.2.tar.gz"
sha256 "7ca796ff20f88ac374a835a7bc3689ee12faae621fcfee9fa5d5de5a8c1cda81"
license "MIT"

bottle do
sha256 cellar: :any_skip_relocation, arm64_tahoe: "d29b740559332508ee6574ef8f23a91be1e251e54b1d2580686796b0161869be"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "c27099692f7bdfdea1af84d824f8d52d09008094541995bff2e798dc93aeef20"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "89c76718768907a5b145395f1427a1cde9c03432aba71d23678b64226f095cf5"
sha256 cellar: :any_skip_relocation, sonoma: "009335258cd549a6587e9d18935b614e3227cf2e102a693e5387a632279d585c"
sha256 cellar: :any_skip_relocation, arm64_linux: "50c4387b86c07559288b0537d2d8f703a424372002f655bd51eb48e64024a0eb"
sha256 cellar: :any_skip_relocation, x86_64_linux: "9b34d9f65b785081a480a4c291277d961baa37a7e73e73e83d691e2f97506cc4"
sha256 cellar: :any_skip_relocation, arm64_tahoe: "449a8f5cd5d3afb0dc3407b14d3be64c710e048685e9b66a1492d1414f540a87"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "0e2f4fcde43748b50dc831d9e1b411f238e6aa9ef31ce9ebf7486b7b2930dc10"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "1598b77622c7e2111adb5414fc6249257f264cb005056295f31471fd6337299e"
sha256 cellar: :any_skip_relocation, sonoma: "4995ff8a2853b2fd2fa9203bdb25f5a03b2e9bff390dac1a898f90faf1dafd4a"
sha256 cellar: :any_skip_relocation, arm64_linux: "3eca97bbee0d9056e9dae624ac9c7e91a4b3ea5520706a6c3ccfef8504d5bbcd"
sha256 cellar: :any_skip_relocation, x86_64_linux: "3dd6120d9267693ae1bf7b6d08578f10bca1dd27ec258c7fcc7b0d2b9a0caa5e"
end

depends_on "cmake" => :build
Expand All @@ -37,7 +37,8 @@ def install
end

test do
assert_match version.to_s, shell_output("#{bin}/lbug --version")
# Upstream versioning up to patch version, so skip for 4th number in version
assert_match version.major_minor_patch.to_s, shell_output("#{bin}/lbug --version")

# Test basic query functionality
output = pipe_output("#{bin}/lbug -m csv -s", "UNWIND [1, 2, 3, 4, 5] as i return i;")
Expand Down
Loading