30 lines
1.5 KiB
Ruby
30 lines
1.5 KiB
Ruby
class Reg < Formula
|
|
desc "Docker registry v2 command-line client"
|
|
homepage "https://r.j3ss.co"
|
|
url "https://github.com/genuinetools/reg/archive/v0.16.1.tar.gz"
|
|
sha256 "b65787bff71bff21f21adc933799e70aa9b868d19b1e64f8fd24ebdc19058430"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "cf9938a3488e5e4ceb2534f2a032c4d9427787a92e6550f90eea0ff70cdb77da"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "6bf430c32dbb66c850bf8c6acbe2fc2953a8ada29e12c0e7b474317fe537fffb"
|
|
sha256 cellar: :any_skip_relocation, monterey: "9dad4aea34600bf11782f4c4e9867439369a4b59e1eae7ad05a7640fe39c1917"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "ca9db7f72804b3701ea833c24802b5c81f4297d556482596cc755f67a1061dbb"
|
|
sha256 cellar: :any_skip_relocation, catalina: "566141035e7c94c92a4422addea68ea86431916055d14bfe5e20de79c3a6451c"
|
|
sha256 cellar: :any_skip_relocation, mojave: "fc74e858cf6aa00783292b40d24ddbe0597d53c0e2f04c66dbbb0f103cbb50ec"
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "6c834ffc790787be203c01f7d153971f34d4c75f70245058717e4a13f0afcf79"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "0e1f1396a2eec2571aed2861955e94d41c841e2e57d85202084f263e95ecb1ca"
|
|
end
|
|
|
|
# Bump to 1.18 on the next release, if possible.
|
|
depends_on "go@1.17" => :build
|
|
|
|
def install
|
|
system "go", "build", *std_go_args
|
|
end
|
|
|
|
test do
|
|
assert_match "buster", shell_output("#{bin}/reg tags debian")
|
|
end
|
|
end
|