From 1c5f839e51e32685e1ecb282f523790c8dfb9952 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Fri, 22 Aug 2025 15:30:09 +0200 Subject: [PATCH] chore: remove unbound-schemas formula file This commit removes the unbound-schemas.rb formula file as it is no longer needed. The file was autogenerated by GoReleaser, and its removal cleans up the repository by eliminating unnecessary artifacts. --- Formula/unbound-schemas.rb | 45 -------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 Formula/unbound-schemas.rb diff --git a/Formula/unbound-schemas.rb b/Formula/unbound-schemas.rb deleted file mode 100644 index 7c0c900..0000000 --- a/Formula/unbound-schemas.rb +++ /dev/null @@ -1,45 +0,0 @@ -# typed: false -# frozen_string_literal: true - -# This file was generated by GoReleaser. DO NOT EDIT. -class UnboundSchemas < Formula - desc "" - homepage "https://schemas.unbound.se/" - version "0.5.0" - - on_macos do - if Hardware::CPU.intel? - url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.5.0/downloads/unbound-schemas_0.5.0_darwin_amd64.tar.gz" - sha256 "d52f5dd9ba40041f817ccb6447229d566f1ea21251d561516285fa0aa8e9404b" - - def install - bin.install "schemactl" - end - end - if Hardware::CPU.arm? - url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.5.0/downloads/unbound-schemas_0.5.0_darwin_arm64.tar.gz" - sha256 "a706db9096453ae1113421bb07763790893991493aebdaff54d3e9153b3c4d4e" - - def install - bin.install "schemactl" - end - end - end - - on_linux do - if Hardware::CPU.intel? and Hardware::CPU.is_64_bit? - url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.5.0/downloads/unbound-schemas_0.5.0_linux_amd64.tar.gz" - sha256 "a7e523e6c4df3f8333900f270f9a22d4270f182db730e90a8609af25072f3954" - def install - bin.install "schemactl" - end - end - if Hardware::CPU.arm? and Hardware::CPU.is_64_bit? - url "https://gitlab.com/unboundsoftware/schemas/-/releases/v0.5.0/downloads/unbound-schemas_0.5.0_linux_arm64.tar.gz" - sha256 "ceab90fbc894a1b21941c2f2187ed529e9757b28f264bcf5f61e1164e75dc295" - def install - bin.install "schemactl" - end - end - end -end