From 146ac38549e767d92de15b3f2d118c8f729d05b3 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Sun, 12 Jul 2020 16:48:25 +0200 Subject: [PATCH] Add 8.10.1 freebsd bindist --- ghcup-0.0.2.json | 7 +++++++ lib/GHCup/Data/GHCupDownloads.hs | 13 +++++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/ghcup-0.0.2.json b/ghcup-0.0.2.json index f3245cb..63ee310 100644 --- a/ghcup-0.0.2.json +++ b/ghcup-0.0.2.json @@ -698,6 +698,13 @@ "dlUri": "https://downloads.haskell.org/~ghc/8.10.1/ghc-8.10.1-x86_64-alpine3.10-linux-integer-simple.tar.xz" } }, + "FreeBSD": { + "unknown_versioning": { + "dlHash": "52d27dbf9de82005dde9bfc521bff612e381b5228af194259c2306d2b75825c2", + "dlSubdir": "ghc-8.10.1", + "dlUri": "https://downloads.haskell.org/ghc/8.10.1/ghc-8.10.1-x86_64-portbld-freebsd.tar.xz" + } + }, "Linux_Debian": { "unknown_versioning": { "dlHash": "d1cf7886f27af070f3b7dbe1975a78b43ef2d32b86362cbe953e79464fe70761", diff --git a/lib/GHCup/Data/GHCupDownloads.hs b/lib/GHCup/Data/GHCupDownloads.hs index dd2e2fc..230989f 100644 --- a/lib/GHCup/Data/GHCupDownloads.hs +++ b/lib/GHCup/Data/GHCupDownloads.hs @@ -2,7 +2,10 @@ {-# LANGUAGE QuasiQuotes #-} -module GHCup.Data.GHCupDownloads where +module GHCup.Data.GHCupDownloads + ( ghcupDownloads + ) +where import GHCup.Types import GHCup.Utils.Version.QQ @@ -887,6 +890,11 @@ ghc_8101_64_alpine = DownloadInfo "cb13b645d103e2fba2eb8dfcc4e5f2fbd9550c00c4df42f342b4210436dcb8a8" +ghc_8101_64_freebsd :: DownloadInfo +ghc_8101_64_freebsd = DownloadInfo + [uri|https://downloads.haskell.org/ghc/8.10.1/ghc-8.10.1-x86_64-portbld-freebsd.tar.xz|] + (Just [rel|ghc-8.10.1|]) + "52d27dbf9de82005dde9bfc521bff612e381b5228af194259c2306d2b75825c2" @@ -1840,7 +1848,7 @@ ghcupDownloads = M.fromList , (Just [vers|7|], ghc_8101_64_centos) ] ) - , ( Linux RedHat, M.fromList [(Nothing, ghc_8101_64_centos)]) + , (Linux RedHat, M.fromList [(Nothing, ghc_8101_64_centos)]) , ( Linux AmazonLinux , M.fromList [(Nothing, ghc_8101_64_centos)] ) @@ -1861,6 +1869,7 @@ ghcupDownloads = M.fromList ) , (Darwin , M.fromList [(Nothing, ghc_8101_64_darwin)]) , (Linux Alpine, M.fromList [(Nothing, ghc_8101_64_alpine)]) + , (FreeBSD , M.fromList [(Nothing, ghc_8101_64_freebsd)]) ] ) , ( A_32