Skip to content

Commit

Permalink
Brew formula update for oathkeeper version v0.40.9
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Jan 30, 2025
1 parent bdd1275 commit 9403a68
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions oathkeeper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@
class Oathkeeper < Formula
desc "The Ory Identity and Access Proxy (Ory Oathkeeper)"
homepage "https://www.ory.sh"
version "0.40.8"
version "0.40.9"
license "Apache-2.0"

on_macos do
on_intel do
url "https://github.com/ory/oathkeeper/releases/download/v0.40.8/oathkeeper_0.40.8-macOS_sqlite_64bit.tar.gz"
sha256 "15eecd872060ab28216c4bb4ecddcf908a0cd83684fb855f5afb7ae81a9de900"
if Hardware::CPU.intel?
url "https://github.com/ory/oathkeeper/releases/download/v0.40.9/oathkeeper_0.40.9-macOS_sqlite_64bit.tar.gz"
sha256 "8cde10f1c15249e08a2212e00c540881e6afb413915952f7186fa06f4cd017fd"

def install
bin.install "oathkeeper"
end
end
on_arm do
url "https://github.com/ory/oathkeeper/releases/download/v0.40.8/oathkeeper_0.40.8-macOS_sqlite_arm64.tar.gz"
sha256 "23139fab27f9ff118be5dbc4de18944e2909bc8fcf95586b2607cfdb8a131cfa"
if Hardware::CPU.arm?
url "https://github.com/ory/oathkeeper/releases/download/v0.40.9/oathkeeper_0.40.9-macOS_sqlite_arm64.tar.gz"
sha256 "f7ca67c1683e491c6af829f8aa14a52d48a7343b4ca4347f1df687b3a2be20fd"

def install
bin.install "oathkeeper"
Expand All @@ -28,30 +28,30 @@ def install
end

on_linux do
on_intel do
if Hardware::CPU.intel?
if Hardware::CPU.is_64_bit?
url "https://github.com/ory/oathkeeper/releases/download/v0.40.8/oathkeeper_0.40.8-linux_sqlite_64bit.tar.gz"
sha256 "f8e6bef6d7b60f88946aabf98d3936b82354943c649d88e357cb901563fd7856"
url "https://github.com/ory/oathkeeper/releases/download/v0.40.9/oathkeeper_0.40.9-linux_sqlite_64bit.tar.gz"
sha256 "6c51f79e63cc655d5f873b230fd32f78a058f68e53cc7f469e173f95e9f50e35"

def install
bin.install "oathkeeper"
end
end
end
on_arm do
if Hardware::CPU.arm?
if !Hardware::CPU.is_64_bit?
url "https://github.com/ory/oathkeeper/releases/download/v0.40.8/oathkeeper_0.40.8-linux_sqlite_armv6.tar.gz"
sha256 "bf201c74eabe65ed238bb26b31fde1eb7f39d4eb34cdeb65e4967a098727495c"
url "https://github.com/ory/oathkeeper/releases/download/v0.40.9/oathkeeper_0.40.9-linux_sqlite_armv6.tar.gz"
sha256 "04570758ad7b14da7d73224adf58cc56c1184e84895fe4c88f45cdab919e4085"

def install
bin.install "oathkeeper"
end
end
end
on_arm do
if Hardware::CPU.arm?
if Hardware::CPU.is_64_bit?
url "https://github.com/ory/oathkeeper/releases/download/v0.40.8/oathkeeper_0.40.8-linux_sqlite_arm64.tar.gz"
sha256 "bb9bb02574ff3e5b47f1809c83e295bf80107b98522c771dee37ce6df3aab93b"
url "https://github.com/ory/oathkeeper/releases/download/v0.40.9/oathkeeper_0.40.9-linux_sqlite_arm64.tar.gz"
sha256 "298afd31a9af54d89a0561635e5fddf1384422e8d5259ade1880f352cabe5762"

def install
bin.install "oathkeeper"
Expand Down

0 comments on commit 9403a68

Please sign in to comment.