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

fnm 1.35.0 #136311

Merged
merged 2 commits into from
Jul 18, 2023
Merged

fnm 1.35.0 #136311

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
25 changes: 16 additions & 9 deletions Formula/fnm.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Fnm < Formula
desc "Fast and simple Node.js version manager"
homepage "https://github.com/Schniz/fnm"
url "https://github.com/Schniz/fnm/archive/v1.34.0.tar.gz"
sha256 "6ee954538e0af38b53004ea8834e8fec6b36d22711b67132888d1cbdbb06a09d"
url "https://github.com/Schniz/fnm/archive/v1.35.0.tar.gz"
sha256 "31b29e4534f17240ae576c9b726498bf551f1c14b3a0fb3ecc9f4aa95843d27a"
license "GPL-3.0-only"
head "https://github.com/Schniz/fnm.git", branch: "master"

Expand All @@ -12,19 +12,26 @@ class Fnm < Formula
end

bottle do
sha256 cellar: :any_skip_relocation, arm64_ventura: "2d3ae83e1a1f664c5ee162492ae01ecee19ea12110060eb869f1e2e75d4ff82b"
sha256 cellar: :any_skip_relocation, arm64_monterey: "d2397a629fb2fcecc656157462a1e6094d2b723f5045fd5d539cd037549b0c87"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "8593e1a72d8c6e68a9862fed7e85dd0d19004abec196401e4cc4b48c2723b59f"
sha256 cellar: :any_skip_relocation, ventura: "84092e440209c0ec3312bcfa5d32ae3757bde98905a49ea3997d6aba5e536df8"
sha256 cellar: :any_skip_relocation, monterey: "3fd7ce94f124a2e7cf2a74b7977da767d79d6207150abae8d15392824094d275"
sha256 cellar: :any_skip_relocation, big_sur: "850c4e2f5ac8521a17a53ddb9fed193c6c0ef46a65365cac589b98f5e5e91dbc"
sha256 cellar: :any_skip_relocation, x86_64_linux: "8dfd58287bcaff326767b7f5423255ad28255c596b038ab2cf2341545b5088cd"
sha256 cellar: :any_skip_relocation, arm64_ventura: "41b0b4de195053d7e0783a450f8dd39d5d72602df49add9476bdd8492323b1b9"
sha256 cellar: :any_skip_relocation, arm64_monterey: "fc3e5e4fa5564f86632cd597221363f9a17f1e22b74aca03a91bcfc4d2779629"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "071a1fd257337f5117e250aa6d717c0ae0a6068b45e39058f5ed1ea1c270641c"
sha256 cellar: :any_skip_relocation, ventura: "2c307a1b9300d457839ea51fe2e6737a022c973923b2a159b2066ae0f188ac91"
sha256 cellar: :any_skip_relocation, monterey: "ed23f0955e804b4730aa9c88bd0294514e7c9638e8e3be4e5f1c4acf90f2a294"
sha256 cellar: :any_skip_relocation, big_sur: "5995db0e7d6fa3f99072534e402561e6270114ba521a6f81d87698640507792b"
sha256 cellar: :any_skip_relocation, x86_64_linux: "880434fe4224787d632b52126de18bfbb3953ba5f10f1b62ed6c2b1a1f7c39ac"
end

depends_on "rust" => :build

uses_from_macos "zlib"

# Patch the completion generation per clap v4 upgrade
# upstream PR ref, https://github.com/Schniz/fnm/pull/1010
patch do
url "https://github.com/Schniz/fnm/commit/85625e64d596c6fc5d1ff20d4af54d43c2561b4b.patch?full_index=1"
sha256 "30c30985ea14f6c7124e7035cb193b4280a9537a7627ea45f3efd2b0baf327b2"
end

def install
system "cargo", "install", *std_cargo_args

Expand Down