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

Ockam Release 06-05-2024 #126

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions Casks/portals.rb
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
cask "portals" do
version "ockam_v0.123.0"
version "ockam_v0.124.0"
name "Portals, by Ockam"
desc "Privately share TCP services from your Mac with anyone, anywhere."
homepage "https://github.com/build-trust/ockam"

if Hardware::CPU.arm?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.123.0/ockam.app.aarch64-apple-darwin.dmg"
sha256 "7e3b4c3a4de901ca8a263c7dec0eadae363503d73d4d20a33d8cc03697903221"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.124.0/ockam.app.aarch64-apple-darwin.dmg"
sha256 "2d3b24becabd260d3bca04caf1e3b49a19d415adbf8791d23ed3d3e9e12ad6ea"
end

if Hardware::CPU.intel?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.123.0/ockam.app.x86_64-apple-darwin.dmg"
sha256 "4d090b5c96ed155707b83b332161ece687e1277b4f0e811523a9b5993f05ffdc"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.124.0/ockam.app.x86_64-apple-darwin.dmg"
sha256 "6b27b3ca411ead2d951c0aabc26d353f9962aceec339b13cda4ab8ec9c8077e9"
end

depends_on formula: "ockam"
Expand Down
16 changes: 8 additions & 8 deletions ockam.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ class Ockam < Formula

on_macos do
if Hardware::CPU.arm?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.123.0/ockam.aarch64-apple-darwin"
sha256 "899aa5ca19766b70d3b03b98ae6f720d786fc33e4a44ebbce1c1a4d5b826ecb5"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.124.0/ockam.aarch64-apple-darwin"
sha256 "bd425b698e41621c59f397041c8d5f87fc73221e979a3a164cd85a45787c49e7"

def install
bin.install "ockam.aarch64-apple-darwin" => "ockam"
Expand All @@ -19,8 +19,8 @@ def install
end

if Hardware::CPU.intel?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.123.0/ockam.x86_64-apple-darwin"
sha256 "b172d77a65ced0e773ae9ce30480b3075f1c39066ecd656bc6a75a617df27d62"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.124.0/ockam.x86_64-apple-darwin"
sha256 "16df64c6042420e9da874aec421c13b30c3c401bf1e7e8dcb854bcd6f9a15233"

def install
bin.install "ockam.x86_64-apple-darwin" => "ockam"
Expand All @@ -32,8 +32,8 @@ def install

on_linux do
if Hardware::CPU.arm?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.123.0/ockam.aarch64-unknown-linux-musl"
sha256 "f51e98f80b11ed6b6bc54266d4094c6082e6805967b8c30d37eb837f44d8099d"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.124.0/ockam.aarch64-unknown-linux-musl"
sha256 "a8c32ee186484bfb277427c6e6f288a4ece036001da082ff0bfdf7219c5d247a"

def install
bin.install "ockam.aarch64-unknown-linux-musl" => "ockam"
Expand All @@ -43,8 +43,8 @@ def install
end

if Hardware::CPU.intel?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.123.0/ockam.x86_64-unknown-linux-musl"
sha256 "6335c536eda41e107be0b1ee55fe128ec7c1e18ea80b59db2c9b2cb6a8aa7070"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.124.0/ockam.x86_64-unknown-linux-musl"
sha256 "cf81899ac8ed767b6aa707208ec55474fb839ce725073419649038f47ef3282a"

def install
bin.install "ockam.x86_64-unknown-linux-musl" => "ockam"
Expand Down