Skip to content
Closed
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
17 changes: 14 additions & 3 deletions Formula/kapacitor.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
class Kapacitor < Formula
desc "Open source time series data processor"
homepage "https://github.com/influxdata/kapacitor"
url "https://github.com/influxdata/kapacitor.git",
tag: "v1.6.5",
revision: "c6c917f3097573544574ae94b5ef955a15256772"

license "MIT"
head "https://github.com/influxdata/kapacitor.git", branch: "master"

stable do
url "https://github.com/influxdata/kapacitor.git",
tag: "v1.6.5",
revision: "c6c917f3097573544574ae94b5ef955a15256772"

# build patch to upgrade flux so that it can be built with rust 1.66.0
# upstream PR, https://github.com/influxdata/kapacitor/pull/2738
patch do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/58a8918/kapacitor/1.6.5-flux.patch"
sha256 "6b03f69d4139ecfff128e7eac088b73b6b11ef395451e44ee33c2e7556661fa1"
end
end

livecheck do
url :stable
regex(/^v?(\d+(?:\.\d+)+)$/i)
Expand Down