Move entirely to casks

This commit is contained in:
2025-12-07 14:36:33 +00:00
parent 5998b20314
commit 7687ba0d1d
3 changed files with 2 additions and 105 deletions
+2 -3
View File
@@ -37,11 +37,10 @@ jobs:
continue-on-error: true
- name: Fix style issues from GoReleaser-generated files
run: brew style --fix lukaszraczylo/taps || true
run: brew style --fix Casks/*.rb || true
working-directory: ${{ steps.set-up-homebrew.outputs.repository-path }}
- run: brew test-bot --only-tap-syntax
- run: brew test-bot --only-formulae
if: github.event_name == 'pull_request'
- name: Upload bottles as artifact
if: always() && github.event_name == 'pull_request'
-52
View File
@@ -1,52 +0,0 @@
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Kportal < Formula
desc "Modern Kubernetes port-forward manager with interactive TUI"
homepage "https://lukaszraczylo.github.io/kportal"
version "0.2.39"
license "MIT"
depends_on "kubernetes-cli" => :optional
on_macos do
if Hardware::CPU.intel?
url "https://github.com/lukaszraczylo/kportal/releases/download/v0.2.39/kportal-0.2.39-darwin-amd64.tar.gz"
sha256 "9332e3230b689dc42317c3ca377a4f71835f21a381cff23ef7d35fdb62ce05f1"
def install
bin.install "kportal"
end
end
if Hardware::CPU.arm?
url "https://github.com/lukaszraczylo/kportal/releases/download/v0.2.39/kportal-0.2.39-darwin-arm64.tar.gz"
sha256 "90b4e4d7f65e54b15df58a6729b70c6019205549cab2a6dcad6b19029c17987f"
def install
bin.install "kportal"
end
end
end
on_linux do
if Hardware::CPU.intel? && Hardware::CPU.is_64_bit?
url "https://github.com/lukaszraczylo/kportal/releases/download/v0.2.39/kportal-0.2.39-linux-amd64.tar.gz"
sha256 "6b3335b67a39d829194eeaaf87cd35701d7e8847812436cb3d52d74ab8342c4e"
def install
bin.install "kportal"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/lukaszraczylo/kportal/releases/download/v0.2.39/kportal-0.2.39-linux-arm64.tar.gz"
sha256 "4a2443444b2165ede7801200ac346824f9d7d2932f3303c84ef53972f94eb615"
def install
bin.install "kportal"
end
end
end
test do
system "#{bin}/kportal", "--version"
end
end
-50
View File
@@ -1,50 +0,0 @@
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Lolcathost < Formula
desc "Dynamic host management tool for macOS and Linux with TUI"
homepage "https://github.com/lukaszraczylo/lolcathost"
version "0.1.19"
license "MIT"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/lukaszraczylo/lolcathost/releases/download/v0.1.19/lolcathost-0.1.19-darwin-amd64.tar.gz"
sha256 "898d95bd942dea4ff3ffd852f919e34b22de117b83909ce039ede963fbf84a1d"
def install
bin.install "lolcathost"
end
end
if Hardware::CPU.arm?
url "https://github.com/lukaszraczylo/lolcathost/releases/download/v0.1.19/lolcathost-0.1.19-darwin-arm64.tar.gz"
sha256 "21ef2b95a0e4793fd1e5229926668203cfc98dfa531acce3acdcdb3c25df6ec9"
def install
bin.install "lolcathost"
end
end
end
on_linux do
if Hardware::CPU.intel? && Hardware::CPU.is_64_bit?
url "https://github.com/lukaszraczylo/lolcathost/releases/download/v0.1.19/lolcathost-0.1.19-linux-amd64.tar.gz"
sha256 "968893bbe764fe293eeb4a1787693757c7df27412c70224551f885db885527c6"
def install
bin.install "lolcathost"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/lukaszraczylo/lolcathost/releases/download/v0.1.19/lolcathost-0.1.19-linux-arm64.tar.gz"
sha256 "c2567ad9170da12bf990c7bec65badf32937fe8727f73ef0df6879dab5dc2c56"
def install
bin.install "lolcathost"
end
end
end
test do
system "#{bin}/lolcathost", "--version"
end
end