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

ghcup 0.1.22.0 #166349

Merged
merged 2 commits into from
Mar 16, 2024
Merged
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
1 change: 1 addition & 0 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,7 @@ genact
geph4
gettext
gf
ghcup
ghostscript
ghostunnel
ghq
Expand Down
22 changes: 12 additions & 10 deletions Formula/g/ghcup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ class Ghcup < Formula
desc "Installer for the general purpose language Haskell"
homepage "https://www.haskell.org/ghcup/"
# There is a tarball at Hackage, but that doesn't include the shell completions.
url "https://github.com/haskell/ghcup-hs/archive/refs/tags/v0.1.20.0.tar.gz"
sha256 "9de3f367f298e9efecf9e9c2d50b828cec3af8cfd391e3b235057822b75d8fad"
url "https://github.com/haskell/ghcup-hs/archive/refs/tags/v0.1.22.0.tar.gz"
sha256 "73e1644731ebe9b4782c5dc080ce2b2c3022449c92bcec9cda15fc06300568df"
license "LGPL-3.0-only"
head "https://github.com/haskell/ghcup-hs.git", branch: "master"

Expand All @@ -14,17 +14,19 @@ class Ghcup < Formula
end

bottle do
sha256 cellar: :any_skip_relocation, arm64_sonoma: "259f8770f24440b6e5aa7594134b1263c2cb66c155f78fca04a7ff55d7dd4678"
sha256 cellar: :any_skip_relocation, arm64_ventura: "3f05315c6f407f4dc560ed00bd7c4c7c4c86c9fa264e5c90ac9074b79040350c"
sha256 cellar: :any_skip_relocation, arm64_monterey: "e04caf7839e4da312f6db4431cb0ffbe882cd46b8e7d5c0a06565f8ca43ab666"
sha256 cellar: :any_skip_relocation, sonoma: "b894cd8dd9d2570f6ca6e814128904d293cbd8e35b628b7eb4ba318934077e13"
sha256 cellar: :any_skip_relocation, ventura: "1649af0010637b6ec7723044039a28bbf2f50b98e1b52dcd9c66bd669254e748"
sha256 cellar: :any_skip_relocation, monterey: "1dc45bf75bf42343f5e2d587d06e2daad75e21e1ff756c6026250dbf9aff8686"
sha256 cellar: :any_skip_relocation, x86_64_linux: "b2fc50a099c577a15fefb25b51c0d957748866bb5a02ead57d82fc9d78c5ce29"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "42ade76db70a776050120860ff93699c3aea29033b1f409b1bcfd3d4357515d5"
sha256 cellar: :any_skip_relocation, arm64_ventura: "eb6fcf558e4075c0f118218b0370b5c8c25cd6454098205c9b30a32b274c1284"
sha256 cellar: :any_skip_relocation, arm64_monterey: "10ffa68e887981f4a1dd857a8c049ee8660ea42ab01c80c7dec345206c1e705b"
sha256 cellar: :any_skip_relocation, sonoma: "9241ef68c71ad68977dc3816f8b7c00c09fc718e4e831cb4a7cf478b2c1d271d"
sha256 cellar: :any_skip_relocation, ventura: "6fc49198466290116e20dcf5fa18a3c769b7a596a25e4cbe3f24ecbfe7991013"
sha256 cellar: :any_skip_relocation, monterey: "17892b43dabe9cd9264e48541de4e1e2239786891bccae722ab52838ef6580ff"
sha256 cellar: :any_skip_relocation, x86_64_linux: "816ed6721a32b7a8a3fe14dca949cf6383a54544ef9bcf5dab4cd0e2f32867ba"
end

depends_on "cabal-install" => :build
depends_on "ghc@9.4" => :build
depends_on "ghc@9.4" => :build # ghc 9.6 support issue, https://github.com/haskell/ghcup-hs/issues/979

uses_from_macos "bzip2"
uses_from_macos "ncurses"
uses_from_macos "zlib"

Expand Down
Loading