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

sops 3.9.2 #199782

Merged
merged 2 commits into from
Dec 2, 2024
Merged

sops 3.9.2 #199782

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
18 changes: 10 additions & 8 deletions Formula/s/sops.rb
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
class Sops < Formula
desc "Editor of encrypted files"
homepage "https://github.com/getsops/sops"
url "https://github.com/getsops/sops/archive/refs/tags/v3.9.1.tar.gz"
sha256 "d79e8caaef3134d00f759231e8ef587b791996e2e45319ffe83dee1ab01aebda"
url "https://github.com/getsops/sops/archive/refs/tags/v3.9.2.tar.gz"
sha256 "8d4cbb30afacc88b5b55d1f7c9b22c82e2dde68905dc8e797a52aafe2c96f466"
license "MPL-2.0"
head "https://github.com/getsops/sops.git", branch: "master"

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "e22f5ce17fed2e4704f79bdffc815f283426fb623b9420e0be89658a26040e9d"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "e22f5ce17fed2e4704f79bdffc815f283426fb623b9420e0be89658a26040e9d"
sha256 cellar: :any_skip_relocation, arm64_ventura: "e22f5ce17fed2e4704f79bdffc815f283426fb623b9420e0be89658a26040e9d"
sha256 cellar: :any_skip_relocation, sonoma: "1f16877a71f0526a575d3777303bc4ad3d2e911a0c5b57e7cbcfd879e0f46b30"
sha256 cellar: :any_skip_relocation, ventura: "1f16877a71f0526a575d3777303bc4ad3d2e911a0c5b57e7cbcfd879e0f46b30"
sha256 cellar: :any_skip_relocation, x86_64_linux: "a964b4b1c32e6343dedfb934d0bd29b42591a9c6408123a7f4ced3b094059be5"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "7567b33797e17e0f3d1a85da1913ca11b85010a0421c1d2562252f60e51584db"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "7567b33797e17e0f3d1a85da1913ca11b85010a0421c1d2562252f60e51584db"
sha256 cellar: :any_skip_relocation, arm64_ventura: "7567b33797e17e0f3d1a85da1913ca11b85010a0421c1d2562252f60e51584db"
sha256 cellar: :any_skip_relocation, sonoma: "5492d1bd65d75f608a2695dbd2b665a6fd28b83d12594ce3b13e8bf5836d4e5d"
sha256 cellar: :any_skip_relocation, ventura: "5492d1bd65d75f608a2695dbd2b665a6fd28b83d12594ce3b13e8bf5836d4e5d"
sha256 cellar: :any_skip_relocation, x86_64_linux: "8c0529de1eeb34a8a7b489a760c813c72d1071ec2a0cd05452bdb05ea5b3c39e"
end

depends_on "go" => :build

def install
system "go", "mod", "tidy"

ldflags = "-s -w -X github.com/getsops/sops/v3/version.Version=#{version}"
system "go", "build", *std_go_args(ldflags:), "./cmd/sops"
pkgshare.install "example.yaml"
Expand Down
Loading