Compare commits
24 Commits
hls-1.9.1.
...
libarchive
| Author | SHA1 | Date | |
|---|---|---|---|
|
9a262dc451
|
|||
|
d4f085edf4
|
|||
|
9c4b70f495
|
|||
|
3e05dee7bf
|
|||
|
f8d0da5743
|
|||
|
dfe477c1b7
|
|||
|
f752a23491
|
|||
|
df38f4edf2
|
|||
|
ad42891618
|
|||
|
|
fe5f56580b
|
||
|
4f8635e560
|
|||
|
8501a6d4b2
|
|||
|
94b469197d
|
|||
|
b1c5e84b42
|
|||
|
51aa203205
|
|||
|
0b98de04cc
|
|||
|
3e07ac0a20
|
|||
|
d819571955
|
|||
|
d33b26a495
|
|||
|
0ba569e44c
|
|||
|
ea9b67d5d0
|
|||
|
f47527468b
|
|||
|
|
0939170115 | ||
|
2941394cb1
|
14
.github/workflows/bindists.yaml
vendored
14
.github/workflows/bindists.yaml
vendored
@@ -3,10 +3,6 @@ defaults:
|
||||
run:
|
||||
shell: bash
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened]
|
||||
issue_comment:
|
||||
types: [created]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tool:
|
||||
@@ -45,10 +41,10 @@ jobs:
|
||||
toolRequirements: build-essential curl libffi-dev libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5
|
||||
- image: debian:10
|
||||
installCmd: apt-get update && apt-get install -y
|
||||
toolRequirements: build-essential curl libffi-dev libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5
|
||||
toolRequirements: build-essential curl libffi-dev libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5 libnuma-dev
|
||||
- image: debian:11
|
||||
installCmd: apt-get update && apt-get install -y
|
||||
toolRequirements: build-essential curl libffi-dev libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5
|
||||
toolRequirements: build-essential curl libffi-dev libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5 libnuma-dev
|
||||
- image: ubuntu:18.04
|
||||
installCmd: apt-get update && apt-get install -y
|
||||
toolRequirements: build-essential curl libffi-dev libffi6 libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5
|
||||
@@ -70,12 +66,18 @@ jobs:
|
||||
- image: rockylinux:8
|
||||
installCmd: dnf install -y
|
||||
toolRequirements: which findutils gcc gcc-c++ gmp gmp-devel make ncurses ncurses-compat-libs xz perl
|
||||
- image: rockylinux:9
|
||||
installCmd: dnf install -y --allowerasing
|
||||
toolRequirements: which findutils gcc gcc-c++ gmp gmp-devel make ncurses xz perl
|
||||
- image: linuxmintd/mint19.3-amd64
|
||||
installCmd: apt-get update && apt-get install -y
|
||||
toolRequirements: build-essential curl libffi-dev libffi6 libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5
|
||||
- image: linuxmintd/mint20.2-amd64
|
||||
installCmd: apt-get update && apt-get install -y
|
||||
toolRequirements: build-essential curl libffi-dev libffi7 libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5
|
||||
- image: linuxmintd/mint21.1-amd64
|
||||
installCmd: apt-get update && apt-get install -y
|
||||
toolRequirements: build-essential curl libffi-dev libffi7 libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5
|
||||
container:
|
||||
image: ${{ matrix.image }}
|
||||
steps:
|
||||
|
||||
30
.github/workflows/common.sh
vendored
Normal file
30
.github/workflows/common.sh
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ "${RUNNER_OS}" = "Windows" ] ; then
|
||||
ext=".exe"
|
||||
else
|
||||
ext=''
|
||||
fi
|
||||
|
||||
echo_color() {
|
||||
local color="$1"
|
||||
local msg="$2"
|
||||
echo -e "\033[${color}m${msg}\033[0m"
|
||||
}
|
||||
|
||||
error() { echo_color "${RED}" "$1"; }
|
||||
warn() { echo_color "${LT_BROWN}" "$1"; }
|
||||
info() { echo_color "${LT_BLUE}" "$1"; }
|
||||
|
||||
fail() { error "error: $1"; exit 1; }
|
||||
|
||||
mktempdir() {
|
||||
case "$(uname -s)" in
|
||||
"Darwin"|"darwin")
|
||||
mktemp -d -t hls_ci.XXXXXXX
|
||||
;;
|
||||
*)
|
||||
mktemp -d
|
||||
;;
|
||||
esac
|
||||
}
|
||||
76
.github/workflows/install-bindist.sh
vendored
76
.github/workflows/install-bindist.sh
vendored
@@ -2,21 +2,24 @@
|
||||
set -x
|
||||
set -eo pipefail
|
||||
|
||||
. .github/workflows/common.sh
|
||||
|
||||
export GHCUP_INSTALL_BASE_PREFIX=$RUNNER_TEMP/foobarbaz
|
||||
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh
|
||||
|
||||
source $GHCUP_INSTALL_BASE_PREFIX/.ghcup/env || source ~/.bashrc
|
||||
source "$GHCUP_INSTALL_BASE_PREFIX"/.ghcup/env || source "$HOME/.bashrc"
|
||||
|
||||
ghcup --version
|
||||
which ghcup | grep foobarbaz
|
||||
|
||||
# oh no
|
||||
if [ "${TOOL}" = "hls" ] ; then
|
||||
ghcup -v --url-source=file:$METADATA_FILE install ghc --set 9.2.4
|
||||
fi
|
||||
|
||||
ghcup -v --url-source=file:$METADATA_FILE install $TOOL --set $VERSION
|
||||
case $TOOL in
|
||||
ghcup)
|
||||
ghcup -v --url-source=file:$METADATA_FILE upgrade --force
|
||||
;;
|
||||
*) ghcup -v --url-source=file:$METADATA_FILE install $TOOL --set $VERSION
|
||||
;;
|
||||
esac
|
||||
|
||||
mkdir -p /tmp/install-bindist-ci
|
||||
cd /tmp/install-bindist-ci
|
||||
@@ -30,9 +33,64 @@ main = print $ 1 + 1
|
||||
EOF
|
||||
|
||||
case $TOOL in
|
||||
ghcup)
|
||||
ghcup --verbose list
|
||||
;;
|
||||
hls)
|
||||
haskell-language-server-wrapper --version
|
||||
haskell-language-server-wrapper typecheck main.hs
|
||||
ghcup install cabal latest
|
||||
ghcup install ghc --set recommended
|
||||
cabal update
|
||||
|
||||
test_package="bytestring-0.11.1.0"
|
||||
test_module="Data/ByteString.hs"
|
||||
|
||||
create_cradle() {
|
||||
echo "cradle:" > hie.yaml
|
||||
echo " cabal:" >> hie.yaml
|
||||
}
|
||||
|
||||
enter_test_package() {
|
||||
local tmp_dir
|
||||
tmp_dir=$(mktempdir)
|
||||
cd "$tmp_dir"
|
||||
cabal unpack "${test_package}"
|
||||
cd "${test_package}"
|
||||
}
|
||||
|
||||
# For all HLS GHC versions and the wrapper, run 'typecheck'
|
||||
# over the $test_module
|
||||
test_all_hls() {
|
||||
local bin
|
||||
local bin_noexe
|
||||
local bindir
|
||||
local hls
|
||||
bindir=$1
|
||||
|
||||
for hls in "${bindir}/"haskell-language-server-* ; do
|
||||
bin=${hls##*/}
|
||||
bin_noexe=${bin/.exe/}
|
||||
if ! [[ "${bin_noexe}" =~ "haskell-language-server-wrapper" ]] && ! [[ "${bin_noexe}" =~ "~" ]] && ! [[ "${bin_noexe}" =~ ".shim" ]] ; then
|
||||
if ghcup install ghc --set "${bin_noexe/haskell-language-server-/}" ; then
|
||||
"${hls}" typecheck "${test_module}" || fail "failed to typecheck with HLS for GHC ${bin_noexe/haskell-language-server-/}"
|
||||
else
|
||||
fail "GHCup failed to install GHC ${bin_noexe/haskell-language-server-/}"
|
||||
fi
|
||||
ghcup rm ghc "${bin_noexe/haskell-language-server-/}"
|
||||
fi
|
||||
done
|
||||
"$bindir/haskell-language-server-wrapper${ext}" typecheck "${test_module}" || fail "failed to typecheck with HLS wrapper"
|
||||
}
|
||||
|
||||
enter_test_package
|
||||
create_cradle
|
||||
case "$(uname -s)" in
|
||||
MSYS_*|MINGW*)
|
||||
test_all_hls "$(dirname "$(which ghcup)")"
|
||||
;;
|
||||
*)
|
||||
test_all_hls "$(ghcup whereis bindir)"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
ghc)
|
||||
ghc --version
|
||||
|
||||
9
.github/workflows/test.yaml
vendored
9
.github/workflows/test.yaml
vendored
@@ -19,7 +19,7 @@ jobs:
|
||||
cabal:
|
||||
- '3.6.2.0'
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
@@ -58,6 +58,13 @@ jobs:
|
||||
run: cabal update
|
||||
shell: bash
|
||||
|
||||
- name: Install some deps
|
||||
run: |
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
export TZ=Asia/Singapore
|
||||
sudo apt install -y libarchive-dev
|
||||
shell: bash
|
||||
|
||||
- name: Install ghcup-gen
|
||||
run: |
|
||||
cabal install --installdir="$HOME/.local/bin" --overwrite-policy=always --install-method=copy ghcup-gen
|
||||
|
||||
@@ -7,13 +7,13 @@ package ghcup
|
||||
source-repository-package
|
||||
type: git
|
||||
location: https://github.com/haskell/ghcup-hs.git
|
||||
tag: v0.1.19.0
|
||||
tag: v0.1.19.2
|
||||
|
||||
constraints: http-io-streams -brotli,
|
||||
any.aeson >= 2.0.1.0
|
||||
|
||||
package libarchive
|
||||
flags: -system-libarchive
|
||||
flags: +system-libarchive
|
||||
|
||||
package aeson-pretty
|
||||
flags: +lib-only
|
||||
|
||||
137
ghcup-0.0.7.yaml
137
ghcup-0.0.7.yaml
@@ -2558,8 +2558,8 @@ ghcupDownloads:
|
||||
dlHash: 8cf8408544a1a43adf1bbbb0dd6b074efadffc68bfa1a792947c52e825171224
|
||||
9.2.5:
|
||||
viTags:
|
||||
- Recommended
|
||||
- base-4.16.4.0
|
||||
- Recommended
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.2.5/docs/html/users_guide/index.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.5/ghc-9.2.5-src.tar.xz
|
||||
@@ -2735,6 +2735,94 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.6-aarch64-apple-darwin
|
||||
dlHash: 68e54fd1af808395584e73b6a9a5b6c7dd85d451da00429aa124a821f4e96ad0
|
||||
9.2.7:
|
||||
viTags:
|
||||
- base-4.16.4.0
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.2.7/docs/html/users_guide/index.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-src.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: a253567a17b734a4c0dd0ffa296d33c2a5b5a54a77df988806a2a1e1ca7e88b8
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-927-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: d57b7df77ed80b7a37601c6b99a9458f9d1e937f3ec91b1454bb88a70302919a
|
||||
'>= 10': &ghc-927-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: 3a76ad6b96915eebf960d1b757ee57341302a76c6a8f97af63fd84eddb45362b
|
||||
unknown_versioning: *ghc-927-64-deb10
|
||||
Linux_Ubuntu:
|
||||
'< 20': *ghc-927-64-deb9
|
||||
'>= 20': &ghc-927-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/ghc/9.2.7/ghc-9.2.7-x86_64-ubuntu20.04-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: b74d8d1afd181dd48ba81a2e8991c01281975b7a25791a0504835d049ae416c3
|
||||
Linux_Mint:
|
||||
'< 20': *ghc-927-64-deb9
|
||||
'>= 20': *ghc-927-64-ubuntu20
|
||||
Linux_Fedora:
|
||||
unknown_versioning: &ghc-927-64-fedora
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-fedora27-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: f38a62b4e4f6b55bf819113b98284e084f190a6c8dc23d8313aa7d895045a0a6
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &ghc-927-64-centos
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-centos7-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: b4db141559b9e9df18ead9647447016ea29d55e306ab6eb4a612ef2493ef8871
|
||||
unknown_versioning: *ghc-927-64-centos
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *ghc-927-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-927-64-fedora
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.7-x86_64-apple-darwin
|
||||
dlHash: 9ab3bc98e32978d555b9ee8cb5996ead330fdcb530575788eb1c12c67441f975
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/ghc/9.2.7/ghc-9.2.7-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.2.7-x86_64-portbld-freebsd
|
||||
dlHash: 006aa69e5c7309ed599549f392797be3e7f22d86728db86ec3dd3464f1b7fd99
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-unknown-mingw32.tar.xz
|
||||
dlSubdir: ghc-9.2.7-x86_64-unknown-mingw32
|
||||
dlHash: 30b9545a18eeb509dac427415fa1c45c264e09ec6ab0e93c8ec48742cbb90f24
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-alpine3.12-linux-gmp.tar.xz
|
||||
dlSubdir: ghc-9.2.7-x86_64-unknown-linux
|
||||
dlHash: 0d506e3b12728bba25a729b00de755710e9710292f37d56a227d5374e8225aa6
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-927-32-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-i386-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: 02d63c411dba82ae46ae9d7e775057d0de36a5da27791809bf9d9750a824b0bd
|
||||
unknown_versioning: *ghc-927-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-927-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-927-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-927-32-deb9
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-aarch64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.7
|
||||
dlHash: b4829dd2f4bdaa4b21b22b50edec17616848ab22ab64188047a3eb12bb4da85a
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.7-aarch64-apple-darwin
|
||||
dlHash: a4b63dad502e45da4c65d5255844868eed6bc9157b63fe3fd920f4efb82bb11e
|
||||
9.4.1:
|
||||
viTags:
|
||||
- base-4.17.0.0
|
||||
@@ -3054,6 +3142,11 @@ ghcupDownloads:
|
||||
unknown_versioning: *ghc-944-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-944-64-fedora
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/ghc/9.4.4/ghc-9.4.4-x86_64-portbld-freebsd.tar.xz
|
||||
dlSubdir: ghc-9.4.4-x86_64-portbld-freebsd
|
||||
dlHash: 42eba2c1eb0b7a420a79ee3f3bb1f649926ea78ca8fee176491c087aa48ea7ef
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.4/ghc-9.4.4-x86_64-apple-darwin.tar.xz
|
||||
@@ -3450,7 +3543,7 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.8.1.0/armv7-linux-cabal-3.8.1.0.tar.xz
|
||||
dlHash: 836d89aa1c98a3a848b8b691f9b99123f260dcd4cc1163cb77435a31559475fe
|
||||
GHCup:
|
||||
0.1.19.0:
|
||||
0.1.19.2:
|
||||
viTags:
|
||||
- Recommended
|
||||
- Latest
|
||||
@@ -3460,43 +3553,43 @@ ghcupDownloads:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghcup-64
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/x86_64-linux-ghcup-0.1.19.0
|
||||
dlHash: 33ee6a758ee06e3b520be176905e6192e31f5fa2e2acdc525b1bea77ca368a12
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-linux-ghcup-0.1.19.2
|
||||
dlHash: 25b7fc417c1a811dd7ff439b67ea647a59cf5b8d71b274f97e917d50b2150d5b
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/x86_64-apple-darwin-ghcup-0.1.19.0
|
||||
dlHash: 416de8509092fd95f97ee19a5f3def91fbd6e6fa4fa630a5c5e7226f49a83af7
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-apple-darwin-ghcup-0.1.19.2
|
||||
dlHash: b0ee8f9604810b51253754dca326bc03592e2b866bf1177755de102f26e729d8
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/x86_64-portbld-freebsd-ghcup-0.1.19.0
|
||||
dlHash: dadf49f8ac045946ccea7369d0c80cf3a5221b2282d8f9943cc3dc86e8516a62
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-portbld-freebsd-ghcup-0.1.19.2
|
||||
dlHash: 7f12d65d71246542d29e4786fcbc6bc63d0251e3f3825e63376f8e65ff572023
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/x86_64-mingw64-ghcup-0.1.19.0.exe
|
||||
dlHash: c4e4a764b0844e351eb6939ff236452f33c34808aaca69f973ea82e18d3aa1ac
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-mingw64-ghcup-0.1.19.2.exe
|
||||
dlHash: 8cac0e2cbd1ffe8609fc457ac491dea3b98d9332966a46b8f643a6d42ffc22b1
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghcup-64
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghcup-32
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/i386-linux-ghcup-0.1.19.0
|
||||
dlHash: 0308ebed4431241ef2886a9d374feb20a795d97ef3a24dd38b6bc7dd69e81e53
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/i386-linux-ghcup-0.1.19.2
|
||||
dlHash: c8132b996150714f0013c5a66ffc6899d8bbb7740021873898969a4e384068fe
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghcup-32
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/aarch64-linux-ghcup-0.1.19.0
|
||||
dlHash: a546dcd23a7e56f31bc4d6afad0276f88d3f0b850a3d3c36369721797dc3c3d5
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/aarch64-linux-ghcup-0.1.19.2
|
||||
dlHash: 7ab3606f3de49c363444dd5879edde27a3e7df0adbd981a8c12a153861fde271
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/aarch64-apple-darwin-ghcup-0.1.19.0
|
||||
dlHash: 69bd8e37cd07606d928dca9215c066564a264e0def3c81171b76d5747dc6507c
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/aarch64-apple-darwin-ghcup-0.1.19.2
|
||||
dlHash: ea1f70a049d15f7d296f9ca1fe788ac4d9120c7962edce9aacbbaf06f70095d6
|
||||
A_ARM:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/armv7-linux-ghcup-0.1.19.0
|
||||
dlHash: 58a170c1fb0b4e701ebb40f90a23f6ababe9e61291726aad82e18d4649aed908
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/armv7-linux-ghcup-0.1.19.2
|
||||
dlHash: a18b6723ef0ee143f69c8d6657e1b749ac61938f81a7413656349c9fda3c7021
|
||||
HLS:
|
||||
1.1.0:
|
||||
viTags:
|
||||
@@ -4246,8 +4339,7 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.7.5/stack-2.7.5-linux-armv7.tar.gz
|
||||
dlHash: 8be2342deea5309a32e28a0c5eb341ea9557401f08484676036471250ca12e21
|
||||
2.9.1:
|
||||
viTags:
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v291
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -4296,6 +4388,7 @@ ghcupDownloads:
|
||||
2.9.3:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v293
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -4318,6 +4411,10 @@ ghcupDownloads:
|
||||
dlHash: 816be0ce817f74c18074b1a496b4ac9ea0b22b7745d9a7bf77c19161e251e8ad
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.9.3/stack-2.9.3-freebsd-x86_64.tar.xz
|
||||
dlHash: b1184820aa42f15188c2dc14d4566195f9ecc71f191dde7643caff84e027a80b
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *stack-293-64
|
||||
A_32:
|
||||
|
||||
Binary file not shown.
@@ -55,6 +55,7 @@ ghcupDownloads:
|
||||
3.8.0.20220526:
|
||||
viTags:
|
||||
- Prerelease
|
||||
- old
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
@@ -95,7 +96,7 @@ ghcupDownloads:
|
||||
dlHash: 143589378a4a0e6a948c9130e42832feee189dc89ab7f29088db4b11db6d61a3
|
||||
3.9.0.0:
|
||||
viTags:
|
||||
- Prerelease
|
||||
- LatestPrerelease
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
@@ -375,6 +376,7 @@ ghcupDownloads:
|
||||
viTags:
|
||||
- Prerelease
|
||||
- base-4.17.0.0
|
||||
- old
|
||||
viChangeLog: https://downloads.haskell.org/ghc/9.4.1-rc1/docs/users_guide/index.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.1-rc1/ghc-9.4.0.20220721-src.tar.xz
|
||||
@@ -636,10 +638,110 @@ ghcupDownloads:
|
||||
viTags:
|
||||
- Prerelease
|
||||
- base-4.18.0.0
|
||||
9.6.0.20230210:
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
<10: &ghc-961alpha3-32-deb9
|
||||
dlHash: 1e4c19f2f9352eba7392ef7055b476ce6793af33ec61164524c65e5297cbf302
|
||||
dlSubdir: ghc-9.6.0.20230210-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-i386-deb9-linux.tar.xz
|
||||
unknown_versioning: *ghc-961alpha3-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-961alpha3-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-961alpha3-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-961alpha3-32-deb9
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 25c32514e6aba55c510f01bb264d959a56c5fed114d7ef508de665c5eeaf47ed
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: 5722aca0e4da55e1e05c20bfcd63d21c59d0800e1850e87b4b9ad0066a918279
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-alpine3_12-linux-static-int_native.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-961alpha3-64-centos7
|
||||
dlHash: 0f68876231e7bab3f261238533461aed0e231fa93b1483eef08a91dc510eddc1
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc-961alpha3-64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11): &ghc-961alpha3-64-deb10
|
||||
dlHash: fa0c2b8e31ea182f5111feeec3c3fcff2074857b5a068d8902519fdcc96b26e3
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-deb10-linux.tar.xz
|
||||
< 10: &ghc-961alpha3-64-deb9
|
||||
dlHash: 9a43cad78680d6a47e338ae5bc13deada164d7203996f7791e6957945c5aa5f3
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc-961alpha3-64-deb11
|
||||
dlHash: d552b709426dd8e1afa499789bd9ac775c1f062005656b4c41d28bb338d6692e
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc-961alpha3-64-deb11
|
||||
Linux_Fedora:
|
||||
'>= 33': &ghc-961alpha3-64-fedora33
|
||||
dlHash: ade217760de958e6ed8693b16245bd244a2ccf54c262b37222d784b839d8a699
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc-961alpha3-64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc-961alpha3-64-ubuntu18_04
|
||||
dlHash: 2b9fc6fe9adcc16472040653d76707cdec2b3d3bc587d970998a2bd0d897e074
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc-961alpha3-64-ubuntu20_04
|
||||
dlHash: c560cc7f64d1dd5d74660b31d1949a12b3fb451b1e7684e50c2b6013b78d7e00
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *ghc-961alpha3-64-centos7
|
||||
Linux_Ubuntu:
|
||||
'< 19': *ghc-961alpha3-64-ubuntu18_04
|
||||
unknown_versioning: *ghc-961alpha3-64-ubuntu20_04
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: 4d5b4139ad285475af84cf09e61737925f2ce1bba61aafcf2af2a49791472449
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-rocky-linux.tar.xz
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: a40ab69c7dde09fa0e1afa3e45a3a7d307637a116a4a1ab0a34deda330dcf627
|
||||
dlSubdir: ghc-9.6.0.20230210-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-x86_64-unknown-mingw32.tar.xz
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: d6d44b25e2112ef0f86c936af97513c1cf398a5bdd6f112361abf5da3e9b990a
|
||||
dlSubdir: ghc-9.6.0.20230210-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: 00d5d68e4795629f6279796bba4ae8281361c6ca78b574a0563703218ba27c8b
|
||||
dlSubdir: ghc-9.6.0.20230210-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-aarch64-deb10-linux.tar.xz
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.6.0.20230210/docs/users_guide/9.6.1-notes.html
|
||||
viSourceDL:
|
||||
dlHash: def4a7485162266e91ef4600dfcca84248bed6414717dd7eebacdad96a204f47
|
||||
dlSubdir: ghc-9.6.0.20230210
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-src.tar.xz
|
||||
viTestDL:
|
||||
dlHash: 06e1c78cd6f199e091ae6fcf5249eaad8c1fc93a85aa3002448cbccc608a2f8e
|
||||
dlSubdir: ghc-9.6.0.20230210
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230210/ghc-9.6.0.20230210-testsuite.tar.xz
|
||||
viTags:
|
||||
- LatestPrerelease
|
||||
- base-4.18.0.0
|
||||
|
||||
Stack:
|
||||
2.9.2.1:
|
||||
viTags:
|
||||
- Prerelease
|
||||
- LatestPrerelease
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/rc/v2.9/ChangeLog.md#v2921-release-candidate
|
||||
viArch:
|
||||
A_64:
|
||||
|
||||
Binary file not shown.
@@ -3169,7 +3169,7 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.8.1.0/cabal-install-3.8.1.0-aarch64-darwin.tar.xz
|
||||
dlHash: f75b129c19cf3aa88cf9885cbf5da6d16f9972c7f770c528ca765b9f0563ada3
|
||||
GHCup:
|
||||
0.1.19.0:
|
||||
0.1.19.2:
|
||||
viTags:
|
||||
- Recommended
|
||||
- Latest
|
||||
@@ -3179,43 +3179,43 @@ ghcupDownloads:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghcup-64
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/x86_64-linux-ghcup-0.1.19.0
|
||||
dlHash: 33ee6a758ee06e3b520be176905e6192e31f5fa2e2acdc525b1bea77ca368a12
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-linux-ghcup-0.1.19.2
|
||||
dlHash: 25b7fc417c1a811dd7ff439b67ea647a59cf5b8d71b274f97e917d50b2150d5b
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/x86_64-apple-darwin-ghcup-0.1.19.0
|
||||
dlHash: 416de8509092fd95f97ee19a5f3def91fbd6e6fa4fa630a5c5e7226f49a83af7
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-apple-darwin-ghcup-0.1.19.2
|
||||
dlHash: b0ee8f9604810b51253754dca326bc03592e2b866bf1177755de102f26e729d8
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/x86_64-portbld-freebsd-ghcup-0.1.19.0
|
||||
dlHash: dadf49f8ac045946ccea7369d0c80cf3a5221b2282d8f9943cc3dc86e8516a62
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-portbld-freebsd-ghcup-0.1.19.2
|
||||
dlHash: 7f12d65d71246542d29e4786fcbc6bc63d0251e3f3825e63376f8e65ff572023
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/x86_64-mingw64-ghcup-0.1.19.0.exe
|
||||
dlHash: c4e4a764b0844e351eb6939ff236452f33c34808aaca69f973ea82e18d3aa1ac
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/x86_64-mingw64-ghcup-0.1.19.2.exe
|
||||
dlHash: 8cac0e2cbd1ffe8609fc457ac491dea3b98d9332966a46b8f643a6d42ffc22b1
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghcup-64
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghcup-32
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/i386-linux-ghcup-0.1.19.0
|
||||
dlHash: 0308ebed4431241ef2886a9d374feb20a795d97ef3a24dd38b6bc7dd69e81e53
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/i386-linux-ghcup-0.1.19.2
|
||||
dlHash: c8132b996150714f0013c5a66ffc6899d8bbb7740021873898969a4e384068fe
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghcup-32
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/aarch64-linux-ghcup-0.1.19.0
|
||||
dlHash: a546dcd23a7e56f31bc4d6afad0276f88d3f0b850a3d3c36369721797dc3c3d5
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/aarch64-linux-ghcup-0.1.19.2
|
||||
dlHash: 7ab3606f3de49c363444dd5879edde27a3e7df0adbd981a8c12a153861fde271
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/aarch64-apple-darwin-ghcup-0.1.19.0
|
||||
dlHash: 69bd8e37cd07606d928dca9215c066564a264e0def3c81171b76d5747dc6507c
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/aarch64-apple-darwin-ghcup-0.1.19.2
|
||||
dlHash: ea1f70a049d15f7d296f9ca1fe788ac4d9120c7962edce9aacbbaf06f70095d6
|
||||
A_ARM:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.0/armv7-linux-ghcup-0.1.19.0
|
||||
dlHash: 58a170c1fb0b4e701ebb40f90a23f6ababe9e61291726aad82e18d4649aed908
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.2/armv7-linux-ghcup-0.1.19.2
|
||||
dlHash: a18b6723ef0ee143f69c8d6657e1b749ac61938f81a7413656349c9fda3c7021
|
||||
HLS:
|
||||
1.1.0:
|
||||
viTags:
|
||||
@@ -3860,8 +3860,7 @@ ghcupDownloads:
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *stack-275-64
|
||||
2.9.1:
|
||||
viTags:
|
||||
- Recommended
|
||||
viTags: []
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v291
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -3894,6 +3893,7 @@ ghcupDownloads:
|
||||
2.9.3:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v293
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user