Compare commits
1 Commits
armv7-agai
...
bryans-pgp
| Author | SHA1 | Date | |
|---|---|---|---|
| 31448202b8 |
28
.github/scripts/brew.sh
vendored
28
.github/scripts/brew.sh
vendored
@@ -1,28 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -eux
|
||||
|
||||
# shellcheck disable=SC1091
|
||||
. .github/scripts/env.sh
|
||||
|
||||
if [ -e "$HOME/.brew" ] ; then
|
||||
(
|
||||
cd "$HOME/.brew"
|
||||
git fetch --depth 1
|
||||
git reset --hard origin/master
|
||||
)
|
||||
else
|
||||
git clone --depth=1 https://github.com/Homebrew/brew "$HOME/.brew"
|
||||
fi
|
||||
export PATH="$HOME/.brew/bin:$HOME/.brew/sbin:$PATH"
|
||||
|
||||
mkdir -p "$CI_PROJECT_DIR/.brew_cache"
|
||||
export HOMEBREW_CACHE="$CI_PROJECT_DIR/.brew_cache"
|
||||
mkdir -p "$CI_PROJECT_DIR/.brew_logs"
|
||||
export HOMEBREW_LOGS="$CI_PROJECT_DIR/.brew_logs"
|
||||
mkdir -p /private/tmp/.brew_tmp
|
||||
export HOMEBREW_TEMP=/private/tmp/.brew_tmp
|
||||
|
||||
#brew update
|
||||
brew install ${1+"$@"}
|
||||
|
||||
66
.github/scripts/build.sh
vendored
66
.github/scripts/build.sh
vendored
@@ -1,66 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -eux
|
||||
|
||||
# shellcheck disable=SC1091
|
||||
. .github/scripts/env.sh
|
||||
# shellcheck disable=SC1091
|
||||
. .github/scripts/common.sh
|
||||
|
||||
uname -a
|
||||
uname -p
|
||||
uname
|
||||
pwd
|
||||
env
|
||||
|
||||
# ensure ghcup
|
||||
install_ghcup
|
||||
|
||||
# build
|
||||
ghcup install ghc "${GHC_VERSION}"
|
||||
ghcup set ghc "${GHC_VERSION}"
|
||||
sed -i.bak -e '/DELETE MARKER FOR CI/,/END DELETE/d' cabal.project # see comment in cabal.project
|
||||
ecabal update
|
||||
ecabal user-config diff
|
||||
ecabal user-config init -f
|
||||
"ghc-${GHC_VERSION}" --info
|
||||
"ghc" --info
|
||||
|
||||
# https://github.com/haskell/cabal/issues/7313#issuecomment-811851884
|
||||
if [ "$(getconf LONG_BIT)" == "32" ] || [ "${DISTRO}" == "CentOS" ] ; then
|
||||
echo 'constraints: lukko -ofd-locking' >> cabal.project.release.local
|
||||
fi
|
||||
|
||||
# shellcheck disable=SC2206
|
||||
args=(
|
||||
-w "ghc-$GHC_VERSION"
|
||||
--disable-profiling
|
||||
--enable-executable-stripping
|
||||
--project-file=cabal.project.release
|
||||
${ADD_CABAL_ARGS}
|
||||
)
|
||||
|
||||
run cabal v2-build "${args[@]}" cabal-install
|
||||
|
||||
mkdir -p "$CI_PROJECT_DIR/out"
|
||||
# shellcheck disable=SC2154
|
||||
cp "$(cabal list-bin "${args[@]}" cabal-install:exe:cabal)" "$CI_PROJECT_DIR/out/cabal$ext"
|
||||
cp dist-newstyle/cache/plan.json "$CI_PROJECT_DIR/out/plan.json"
|
||||
cd "$CI_PROJECT_DIR/out/"
|
||||
|
||||
# create tarball/zip
|
||||
TARBALL_PREFIX="cabal-install-$("$CI_PROJECT_DIR/out/cabal" --numeric-version)"
|
||||
case "${TARBALL_EXT}" in
|
||||
zip)
|
||||
zip "${TARBALL_PREFIX}-${ARTIFACT}.${TARBALL_EXT}" "cabal${ext}" plan.json
|
||||
;;
|
||||
tar.xz)
|
||||
tar caf "${TARBALL_PREFIX}-${ARTIFACT}.${TARBALL_EXT}" "cabal${ext}" plan.json
|
||||
;;
|
||||
*)
|
||||
fail "Unknown TARBALL_EXT: ${TARBALL_EXT}"
|
||||
;;
|
||||
esac
|
||||
|
||||
rm cabal plan.json
|
||||
|
||||
110
.github/scripts/common.sh
vendored
110
.github/scripts/common.sh
vendored
@@ -1,110 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# shellcheck disable=SC1091
|
||||
. .github/scripts/env.sh
|
||||
|
||||
# Colors
|
||||
RED="0;31"
|
||||
LT_BROWN="1;33"
|
||||
LT_BLUE="1;34"
|
||||
|
||||
ecabal() {
|
||||
cabal "$@"
|
||||
}
|
||||
|
||||
nonfatal() {
|
||||
"$@" || "$* failed"
|
||||
}
|
||||
|
||||
sha_sum() {
|
||||
if [ "${RUNNER_OS}" = "FreeBSD" ] ; then
|
||||
sha256 "$@"
|
||||
else
|
||||
sha256sum "$@"
|
||||
fi
|
||||
}
|
||||
|
||||
git_describe() {
|
||||
git config --global --get-all safe.directory | grep '^\*$' || git config --global --add safe.directory "*"
|
||||
git describe --always
|
||||
}
|
||||
|
||||
install_ghcup() {
|
||||
# find "$GHCUP_INSTALL_BASE_PREFIX"
|
||||
mkdir -p "$GHCUP_BIN"
|
||||
mkdir -p "$GHCUP_BIN"/../cache
|
||||
|
||||
if [ "${RUNNER_OS}" = "FreeBSD" ] ; then
|
||||
curl -o ghcup https://downloads.haskell.org/ghcup/tmp/x86_64-portbld-freebsd-ghcup-0.1.18.1
|
||||
chmod +x ghcup
|
||||
mv ghcup "$HOME/.local/bin/ghcup"
|
||||
else
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_MINIMAL=1 sh
|
||||
source "$(dirname "${GHCUP_BIN}")/env"
|
||||
ghcup install cabal --set "${BOOTSTRAP_HASKELL_CABAL_VERSION}"
|
||||
fi
|
||||
}
|
||||
|
||||
strip_binary() {
|
||||
(
|
||||
set -e
|
||||
local binary=$1
|
||||
case "$(uname -s)" in
|
||||
"Darwin"|"darwin")
|
||||
;;
|
||||
MSYS_*|MINGW*)
|
||||
;;
|
||||
*)
|
||||
strip -s "${binary}"
|
||||
;;
|
||||
esac
|
||||
)
|
||||
}
|
||||
|
||||
# GitLab Pipelines log section delimiters
|
||||
# https://gitlab.com/gitlab-org/gitlab-foss/issues/14664
|
||||
start_section() {
|
||||
name="$1"
|
||||
echo -e "section_start:$(date +%s):$name\015\033[0K"
|
||||
}
|
||||
|
||||
end_section() {
|
||||
name="$1"
|
||||
echo -e "section_end:$(date +%s):$name\015\033[0K"
|
||||
}
|
||||
|
||||
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; }
|
||||
|
||||
run() {
|
||||
info "Running $*..."
|
||||
"$@" || ( error "$* failed"; return 1; )
|
||||
}
|
||||
|
||||
emake() {
|
||||
if command -v gmake >/dev/null 2>&1 ; then
|
||||
gmake "$@"
|
||||
else
|
||||
make "$@"
|
||||
fi
|
||||
}
|
||||
|
||||
mktempdir() {
|
||||
case "$(uname -s)" in
|
||||
"Darwin"|"darwin")
|
||||
mktemp -d -t cabal_ci.XXXXXXX
|
||||
;;
|
||||
*)
|
||||
mktemp -d
|
||||
;;
|
||||
esac
|
||||
}
|
||||
38
.github/scripts/env.sh
vendored
38
.github/scripts/env.sh
vendored
@@ -1,38 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
mkdir -p "$HOME"/.local/bin
|
||||
|
||||
if [ "${RUNNER_OS}" = "Windows" ] ; then
|
||||
ext=".exe"
|
||||
else
|
||||
# shellcheck disable=SC2034
|
||||
ext=''
|
||||
fi
|
||||
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
|
||||
export BOOTSTRAP_HASKELL_NONINTERACTIVE=1
|
||||
export BOOTSTRAP_HASKELL_CABAL_VERSION="${CABAL_VER:-3.8.1.0}"
|
||||
export BOOTSTRAP_HASKELL_ADJUST_CABAL_CONFIG=no
|
||||
export BOOTSTRAP_HASKELL_INSTALL_NO_STACK=yes
|
||||
export BOOTSTRAP_HASKELL_ADJUST_BASHRC=1
|
||||
|
||||
if [ "${RUNNER_OS}" = "Windows" ] ; then
|
||||
# on windows use pwd to get unix style path
|
||||
CI_PROJECT_DIR="$(pwd)"
|
||||
export CI_PROJECT_DIR
|
||||
export GHCUP_INSTALL_BASE_PREFIX="/c"
|
||||
export GHCUP_BIN="$GHCUP_INSTALL_BASE_PREFIX/ghcup/bin"
|
||||
export PATH="$GHCUP_BIN:$PATH"
|
||||
export CABAL_DIR="C:\\Users\\runneradmin\\AppData\\Roaming\\cabal"
|
||||
else
|
||||
export CI_PROJECT_DIR="${GITHUB_WORKSPACE}"
|
||||
export GHCUP_INSTALL_BASE_PREFIX="$CI_PROJECT_DIR"
|
||||
export GHCUP_BIN="$GHCUP_INSTALL_BASE_PREFIX/.ghcup/bin"
|
||||
export PATH="$GHCUP_BIN:$PATH"
|
||||
export CABAL_DIR="$CI_PROJECT_DIR/cabal"
|
||||
export CABAL_CACHE="$CI_PROJECT_DIR/cabal-cache"
|
||||
fi
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
export TZ=Asia/Singapore
|
||||
68
.github/workflows/bindists.yaml
vendored
68
.github/workflows/bindists.yaml
vendored
@@ -16,12 +16,7 @@ on:
|
||||
metadataFile:
|
||||
description: Metadata file
|
||||
required: true
|
||||
default: ghcup-0.0.8.yaml
|
||||
type: string
|
||||
channel:
|
||||
description: Distribution channel (main|prerelease|nightly)
|
||||
required: true
|
||||
default: Main
|
||||
default: ghcup-0.0.7.yaml
|
||||
type: string
|
||||
env:
|
||||
BOOTSTRAP_HASKELL_NONINTERACTIVE: 1
|
||||
@@ -30,7 +25,6 @@ env:
|
||||
TOOL: ${{ github.event.inputs.tool }}
|
||||
VERSION: ${{ github.event.inputs.version }}
|
||||
METADATA_FILE: ${{ github.event.inputs.metadataFile }}
|
||||
CHANNEL: ${{ github.event.inputs.channel }}
|
||||
jobs:
|
||||
bindist-install:
|
||||
name: linux-${{ matrix.image }}
|
||||
@@ -48,9 +42,6 @@ jobs:
|
||||
- image: debian:11
|
||||
installCmd: apt-get update && apt-get install -y
|
||||
toolRequirements: build-essential curl libffi-dev libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5 libnuma-dev
|
||||
- image: debian:unstable
|
||||
installCmd: apt-get update && apt-get install -y
|
||||
toolRequirements: build-essential curl libffi-dev libgmp-dev libgmp10 libncurses-dev libncurses6 libtinfo6 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
|
||||
@@ -152,63 +143,6 @@ jobs:
|
||||
with:
|
||||
args: sh -c '.github/workflows/install-bindist.sh'
|
||||
|
||||
validate:
|
||||
name: ghcup-gen check
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
GHC: 9.2.8
|
||||
CABAL: 3.10.1.0
|
||||
steps:
|
||||
- name: create ~/.local/bin
|
||||
run: mkdir -p "$HOME/.local/bin"
|
||||
shell: bash
|
||||
|
||||
- name: Add ~/.local/bin to PATH
|
||||
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
|
||||
shell: bash
|
||||
|
||||
- name: install yamllint
|
||||
run: pip install yamllint
|
||||
|
||||
- name: Update cabal cache
|
||||
run: cabal update
|
||||
shell: bash
|
||||
|
||||
- name: Install requirements
|
||||
shell: sh
|
||||
run: |
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
export TZ=Asia/Singapore
|
||||
sudo apt-get update && sudo apt-get install -y curl bash git gnupg libarchive-dev
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Cache Cabal
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
cache-name: cache-cabal
|
||||
with:
|
||||
path: |
|
||||
~/.cabal/store
|
||||
~/.cabal/packages
|
||||
key: v2-${{ runner.os }}-${{ env.GHC }}-${{ env.CABAL }}-build-${{ hashFiles('cabal.project') }}
|
||||
restore-keys: |
|
||||
v2-${{ runner.os }}-${{ env.GHC }}-${{ env.CABAL }}-build-${{ hashFiles('cabal.project') }}
|
||||
v2-${{ runner.os }}-${{ env.GHC }}-${{ env.CABAL }}-build-
|
||||
v2-${{ runner.os }}-${{ env.GHC }}
|
||||
|
||||
- name: Install ghcup-gen
|
||||
run: |
|
||||
ghcup run --cabal 3.10.1.0 --ghc 9.2.8 --install -- cabal install --installdir="$HOME/.local/bin" --overwrite-policy=always --install-method=copy ghcup-gen
|
||||
shell: bash
|
||||
|
||||
- name: Check yaml
|
||||
run: |
|
||||
ghcup-gen -- check -f ${{ env.METADATA_FILE }} --channel ${{ env.CHANNEL }}
|
||||
yamllint ${{ env.METADATA_FILE }}
|
||||
python3 -c "import yaml ; stream = open('${{ env.METADATA_FILE }}', 'r') ; yaml.safe_load(stream)"
|
||||
shell: bash
|
||||
|
||||
signature-test:
|
||||
name: Test signatures
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
396
.github/workflows/cabal-release.yaml
vendored
396
.github/workflows/cabal-release.yaml
vendored
@@ -1,396 +0,0 @@
|
||||
name: Cabal Bindist build
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
repo:
|
||||
description: Repo
|
||||
required: true
|
||||
default: hasufell/cabal
|
||||
type: string
|
||||
ref:
|
||||
description: Git ref
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
build-linux:
|
||||
name: Build linux binaries
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
TARBALL_EXT: tar.xz
|
||||
ARCH: 64
|
||||
DEBIAN_FRONTEND: noninteractive
|
||||
TZ: Asia/Singapore
|
||||
GHC_VERSION: 9.2.3
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
platform: [ { image: "debian:9"
|
||||
, installCmd: "sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list && sed -i 's|security.debian.org|archive.debian.org/|g' /etc/apt/sources.list && sed -i /-updates/d /etc/apt/sources.list && apt-get update && apt-get install -y"
|
||||
, toolRequirements: "libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc autoconf automake build-essential curl ghc gzip libffi-dev libncurses-dev libncurses5 libtinfo5 patchelf"
|
||||
, DISTRO: "Debian"
|
||||
, ARTIFACT: "x86_64-linux-deb9"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "debian:10"
|
||||
, installCmd: "apt-get update && apt-get install -y"
|
||||
, toolRequirements: "libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc autoconf automake build-essential curl ghc gzip libffi-dev libncurses-dev libncurses5 libtinfo5 patchelf"
|
||||
, DISTRO: "Debian"
|
||||
, ARTIFACT: "x86_64-linux-deb10"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "debian:11"
|
||||
, installCmd: "apt-get update && apt-get install -y"
|
||||
, toolRequirements: "libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc autoconf automake build-essential curl ghc gzip libffi-dev libncurses-dev libncurses5 libtinfo5 patchelf"
|
||||
, DISTRO: "Debian"
|
||||
, ARTIFACT: "x86_64-linux-deb11"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "ubuntu:18.04"
|
||||
, installCmd: "apt-get update && apt-get install -y"
|
||||
, toolRequirements: "libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc autoconf automake build-essential curl ghc gzip libffi-dev libncurses-dev libncurses5 libtinfo5 patchelf"
|
||||
, DISTRO: "Ubuntu"
|
||||
, ARTIFACT: "x86_64-linux-ubuntu18.04"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "ubuntu:20.04"
|
||||
, installCmd: "apt-get update && apt-get install -y"
|
||||
, toolRequirements: "libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc autoconf automake build-essential curl ghc gzip libffi-dev libncurses-dev libncurses5 libtinfo5 patchelf"
|
||||
, DISTRO: "Ubuntu"
|
||||
, ARTIFACT: "x86_64-linux-ubuntu20.04"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "ubuntu:22.04"
|
||||
, installCmd: "apt-get update && apt-get install -y"
|
||||
, toolRequirements: "libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc autoconf automake build-essential curl ghc gzip libffi-dev libncurses-dev libncurses5 libtinfo5 patchelf"
|
||||
, DISTRO: "Ubuntu"
|
||||
, ARTIFACT: "x86_64-linux-ubuntu22.04"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "linuxmintd/mint19.3-amd64"
|
||||
, installCmd: "apt-get update && apt-get install -y"
|
||||
, toolRequirements: "libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc autoconf automake build-essential curl ghc gzip libffi-dev libncurses-dev libncurses5 libtinfo5 patchelf"
|
||||
, DISTRO: "Mint"
|
||||
, ARTIFACT: "x86_64-linux-mint19.3"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "linuxmintd/mint20.2-amd64"
|
||||
, installCmd: "apt-get update && apt-get install -y"
|
||||
, toolRequirements: "libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc autoconf automake build-essential curl ghc gzip libffi-dev libncurses-dev libncurses5 libtinfo5 patchelf"
|
||||
, DISTRO: "Mint"
|
||||
, ARTIFACT: "x86_64-linux-mint20.2"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "fedora:27"
|
||||
, installCmd: "dnf install -y"
|
||||
, toolRequirements: "autoconf automake binutils bzip2 coreutils curl elfutils-devel elfutils-libs findutils gcc gcc-c++ git gmp gmp-devel jq lbzip2 make ncurses ncurses-compat-libs ncurses-devel openssh-clients patch perl pxz python3 sqlite sudo wget which xz zlib-devel patchelf"
|
||||
, DISTRO: "Fedora"
|
||||
, ARTIFACT: "x86_64-linux-fedora27"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "fedora:33"
|
||||
, installCmd: "dnf install -y"
|
||||
, toolRequirements: "autoconf automake binutils bzip2 coreutils curl elfutils-devel elfutils-libs findutils gcc gcc-c++ git gmp gmp-devel jq lbzip2 make ncurses ncurses-compat-libs ncurses-devel openssh-clients patch perl pxz python3 sqlite sudo wget which xz zlib-devel patchelf"
|
||||
, DISTRO: "Fedora"
|
||||
, ARTIFACT: "x86_64-linux-fedora33"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "centos:7"
|
||||
, installCmd: "yum -y install epel-release && yum install -y"
|
||||
, toolRequirements: "autoconf automake binutils bzip2 coreutils curl elfutils-devel elfutils-libs findutils gcc gcc-c++ git gmp gmp-devel jq lbzip2 make ncurses ncurses-compat-libs ncurses-devel openssh-clients patch perl pxz python3 sqlite sudo wget which xz zlib-devel patchelf"
|
||||
, DISTRO: "CentOS"
|
||||
, ARTIFACT: "x86_64-linux-centos7"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "rockylinux:8"
|
||||
, installCmd: "yum -y install epel-release && yum install -y --allowerasing"
|
||||
, toolRequirements: "autoconf automake binutils bzip2 coreutils curl elfutils-devel elfutils-libs findutils gcc gcc-c++ git gmp gmp-devel jq lbzip2 make ncurses ncurses-compat-libs ncurses-devel openssh-clients patch perl pxz python3 sqlite sudo wget which xz zlib-devel patchelf"
|
||||
, DISTRO: "Unknown"
|
||||
, ARTIFACT: "x86_64-linux-rocky8"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections"
|
||||
},
|
||||
{ image: "alpine:latest"
|
||||
, installCmd: "apk update && apk add"
|
||||
, toolRequirements: "binutils-gold curl gcc g++ gmp-dev libc-dev libffi-dev make musl-dev ncurses-dev perl tar xz autoconf automake bzip2 coreutils elfutils-dev findutils git jq bzip2-dev patch python3 sqlite sudo wget which zlib-dev patchelf zlib zlib-dev zlib-static"
|
||||
, DISTRO: "Unknown"
|
||||
, ARTIFACT: "x86_64-linux-unknown"
|
||||
, ADD_CABAL_ARGS: "--enable-split-sections --enable-executable-static"
|
||||
}
|
||||
|
||||
]
|
||||
container:
|
||||
image: ${{ matrix.platform.image }}
|
||||
steps:
|
||||
- name: Install requirements
|
||||
shell: sh
|
||||
run: |
|
||||
${{ matrix.platform.installCmd }} curl bash git ${{ matrix.platform.toolRequirements }}
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ${{ github.event.inputs.repo }}
|
||||
ref: ${{ github.event.inputs.ref }}
|
||||
|
||||
|
||||
- name: Run build
|
||||
run: |
|
||||
bash .github/scripts/build.sh
|
||||
|
||||
env:
|
||||
ARTIFACT: ${{ matrix.platform.ARTIFACT }}
|
||||
DISTRO: ${{ matrix.platform.DISTRO }}
|
||||
ADD_CABAL_ARGS: ${{ matrix.platform.ADD_CABAL_ARGS }}
|
||||
|
||||
- if: always()
|
||||
name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
if-no-files-found: error
|
||||
retention-days: 2
|
||||
name: artifacts
|
||||
path: |
|
||||
./out/*
|
||||
|
||||
build-linux-32bit:
|
||||
name: Build linux binaries (32bit)
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
TARBALL_EXT: tar.xz
|
||||
ARCH: 32
|
||||
TZ: Asia/Singapore
|
||||
GHC_VERSION: 9.2.1
|
||||
DISTRO: "Unknown"
|
||||
ARTIFACT: "i386-linux-unknown"
|
||||
ADD_CABAL_ARGS: "--enable-split-sections --enable-executable-static"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ${{ github.event.inputs.repo }}
|
||||
ref: ${{ github.event.inputs.ref }}
|
||||
submodules: 'true'
|
||||
|
||||
- name: Run build (32 bit linux)
|
||||
uses: docker://hasufell/i386-alpine-haskell:3.12
|
||||
with:
|
||||
args: sh -c "apk update && apk add bash binutils-gold curl gcc g++ gmp-dev libc-dev libffi-dev make musl-dev ncurses-dev perl tar xz autoconf automake bzip2 coreutils elfutils-dev findutils git jq bzip2-dev patch python3 sqlite sudo wget which zlib-dev patchelf zlib zlib-dev zlib-static && bash .github/scripts/build.sh"
|
||||
|
||||
- if: always()
|
||||
name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
if-no-files-found: error
|
||||
retention-days: 2
|
||||
name: artifacts
|
||||
path: |
|
||||
./out/*
|
||||
|
||||
build-arm:
|
||||
name: Build ARM binary
|
||||
runs-on: ${{ matrix.os }}
|
||||
env:
|
||||
TARBALL_EXT: tar.xz
|
||||
ADD_CABAL_ARGS: ""
|
||||
DEBIAN_FRONTEND: noninteractive
|
||||
TZ: Asia/Singapore
|
||||
ARCH: ARM64
|
||||
DISTRO: Ubuntu
|
||||
GHC_VERSION: 9.2.2
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: [self-hosted, Linux, ARM64]
|
||||
ARCH: ARM
|
||||
ARTIFACT: "armv7-linux-ubuntu20"
|
||||
- os: [self-hosted, Linux, ARM64]
|
||||
ARCH: ARM64
|
||||
ARTIFACT: "aarch64-linux-ubuntu20"
|
||||
steps:
|
||||
- uses: docker://arm64v8/ubuntu:focal
|
||||
name: Cleanup (aarch64 linux)
|
||||
with:
|
||||
args: "find . -mindepth 1 -maxdepth 1 -exec rm -rf -- {} +"
|
||||
|
||||
- name: git config
|
||||
run: |
|
||||
git config --global --get-all safe.directory | grep '^\*$' || git config --global --add safe.directory "*"
|
||||
shell: bash
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ${{ github.event.inputs.repo }}
|
||||
ref: ${{ github.event.inputs.ref }}
|
||||
|
||||
- if: matrix.ARCH == 'ARM'
|
||||
uses: docker://hasufell/arm32v7-ubuntu-haskell:focal
|
||||
name: Run build (armv7 linux)
|
||||
with:
|
||||
args: bash .github/scripts/build.sh
|
||||
env:
|
||||
ARTIFACT: ${{ matrix.ARTIFACT }}
|
||||
|
||||
- if: matrix.ARCH == 'ARM64'
|
||||
uses: docker://hasufell/arm64v8-ubuntu-haskell:focal
|
||||
name: Run build (aarch64 linux)
|
||||
with:
|
||||
args: bash .github/scripts/build.sh
|
||||
env:
|
||||
ARTIFACT: ${{ matrix.ARTIFACT }}
|
||||
|
||||
- if: always()
|
||||
name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
if-no-files-found: error
|
||||
retention-days: 2
|
||||
name: artifacts
|
||||
path: |
|
||||
./out/*
|
||||
|
||||
build-mac-x86_64:
|
||||
name: Build binary (Mac x86_64)
|
||||
runs-on: macOS-11
|
||||
env:
|
||||
MACOSX_DEPLOYMENT_TARGET: 10.13
|
||||
ADD_CABAL_ARGS: ""
|
||||
ARTIFACT: "x86_64-apple-darwin"
|
||||
ARCH: 64
|
||||
TARBALL_EXT: tar.xz
|
||||
DISTRO: na
|
||||
GHC_VERSION: 9.2.3
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ${{ github.event.inputs.repo }}
|
||||
ref: ${{ github.event.inputs.ref }}
|
||||
|
||||
- name: Run build
|
||||
run: |
|
||||
brew install coreutils tree
|
||||
bash .github/scripts/build.sh
|
||||
|
||||
- if: always()
|
||||
name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
if-no-files-found: error
|
||||
retention-days: 2
|
||||
name: artifacts
|
||||
path: |
|
||||
./out/*
|
||||
|
||||
build-mac-aarch64:
|
||||
name: Build binary (Mac aarch64)
|
||||
runs-on: [self-hosted, macOS, ARM64]
|
||||
env:
|
||||
MACOSX_DEPLOYMENT_TARGET: 10.13
|
||||
ADD_CABAL_ARGS: ""
|
||||
ARTIFACT: "aarch64-apple-darwin"
|
||||
ARCH: ARM64
|
||||
TARBALL_EXT: tar.xz
|
||||
DISTRO: na
|
||||
HOMEBREW_CHANGE_ARCH_TO_ARM: 1
|
||||
GHC_VERSION: 9.2.3
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ${{ github.event.inputs.repo }}
|
||||
ref: ${{ github.event.inputs.ref }}
|
||||
|
||||
- name: Run build
|
||||
run: |
|
||||
bash .github/scripts/brew.sh git coreutils autoconf automake tree
|
||||
export PATH="$HOME/.brew/bin:$HOME/.brew/sbin:$PATH"
|
||||
export LD=ld
|
||||
bash .github/scripts/build.sh
|
||||
|
||||
- if: always()
|
||||
name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
if-no-files-found: error
|
||||
retention-days: 2
|
||||
name: artifacts
|
||||
path: |
|
||||
./out/*
|
||||
|
||||
build-win:
|
||||
name: Build binary (Win)
|
||||
runs-on: windows-latest
|
||||
env:
|
||||
ADD_CABAL_ARGS: ""
|
||||
ARTIFACT: "x86_64-mingw64"
|
||||
ARCH: 64
|
||||
TARBALL_EXT: "zip"
|
||||
DISTRO: na
|
||||
GHC_VERSION: 9.2.3
|
||||
steps:
|
||||
- name: install windows deps
|
||||
shell: pwsh
|
||||
run: |
|
||||
C:\msys64\usr\bin\bash -lc "pacman --disable-download-timeout --noconfirm -Syuu"
|
||||
C:\msys64\usr\bin\bash -lc "pacman --disable-download-timeout --noconfirm -Syuu"
|
||||
C:\msys64\usr\bin\bash -lc "pacman --disable-download-timeout --noconfirm -S make mingw-w64-x86_64-clang curl autoconf mingw-w64-x86_64-pkgconf ca-certificates base-devel gettext autoconf make libtool automake python p7zip patch unzip zip git"
|
||||
taskkill /F /FI "MODULES eq msys-2.0.dll"
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ${{ github.event.inputs.repo }}
|
||||
ref: ${{ github.event.inputs.ref }}
|
||||
|
||||
- name: Run build (windows)
|
||||
run: |
|
||||
$env:CHERE_INVOKING = 1
|
||||
$env:MSYS2_PATH_TYPE = "inherit"
|
||||
$ErrorActionPreference = "Stop"
|
||||
C:\msys64\usr\bin\bash -lc "bash .github/scripts/build.sh"
|
||||
shell: pwsh
|
||||
|
||||
- if: always()
|
||||
name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
if-no-files-found: error
|
||||
retention-days: 2
|
||||
name: artifacts
|
||||
path: |
|
||||
./out/*
|
||||
|
||||
release:
|
||||
name: release
|
||||
needs: ["build-linux", "build-linux-32bit", "build-arm", "build-mac-x86_64", "build-mac-aarch64", "build-win"]
|
||||
runs-on: ubuntu-latest
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ${{ github.event.inputs.repo }}
|
||||
ref: ${{ github.event.inputs.ref }}
|
||||
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: artifacts
|
||||
path: ./out
|
||||
|
||||
- name: Install requirements
|
||||
run: |
|
||||
sudo apt-get update && sudo apt-get install -y tar xz-utils
|
||||
shell: bash
|
||||
|
||||
- name: build sdists
|
||||
run: |
|
||||
cabal sdist -o out all
|
||||
shell: bash
|
||||
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
draft: true
|
||||
files: |
|
||||
./out/*
|
||||
|
||||
6
.github/workflows/install-bindist.sh
vendored
6
.github/workflows/install-bindist.sh
vendored
@@ -29,8 +29,6 @@ mkdir -p /tmp/install-bindist-ci
|
||||
cp "$METADATA_FILE" /tmp/install-bindist-ci/
|
||||
cd /tmp/install-bindist-ci
|
||||
|
||||
trap 'rm -rf -- /tmp/install-bindist-ci' EXIT
|
||||
|
||||
cat <<EOF > main.hs
|
||||
{- cabal:
|
||||
build-depends: base
|
||||
@@ -105,10 +103,6 @@ case $TOOL in
|
||||
ghc --info
|
||||
ghc -prof main.hs
|
||||
[[ $(./main +RTS -s) -eq 2 ]]
|
||||
ghcup_fun install cabal recommended
|
||||
cabal --version
|
||||
cabal update
|
||||
cabal install --lib --package-env=. clock
|
||||
;;
|
||||
cabal)
|
||||
ghcup_fun install ghc --set "$(ghcup_fun list -t ghc -r -c available | tail -1 | awk '{ print $2 }')"
|
||||
|
||||
1
.github/workflows/sigs
vendored
1
.github/workflows/sigs
vendored
@@ -3,4 +3,5 @@ keys=(
|
||||
FFEB7CE81E16A36B3E2DED6F2DE04D4E97DB64AD # Ben Gamari <ben@well-typed.com>
|
||||
88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4 # Zubin Duggal <zubin@well-typed.com>
|
||||
EAF2A9A722C0C96F2B431CA511AAD8CEDEE0CAEF # Hécate <hecate@glitchbra.in>
|
||||
FE5AB6C91FEA597C3B31180B73EDE9E8CFBAEF01 # Bryan Richter <b@chreekat.net>
|
||||
)
|
||||
|
||||
4
.github/workflows/test-sigs.sh
vendored
4
.github/workflows/test-sigs.sh
vendored
@@ -21,7 +21,3 @@ done
|
||||
unset key
|
||||
gpg --verify "${METADATA_FILE}.sig"
|
||||
|
||||
for f in ghcup-*.json ghcup-*.yaml hls-metadata-*.json ; do
|
||||
gpg --verify "${f}.sig"
|
||||
done
|
||||
|
||||
|
||||
51
README.md
51
README.md
@@ -1,34 +1,6 @@
|
||||
# GHCup metadata
|
||||
|
||||
## For end users
|
||||
|
||||
### Metadata variants (distribution channels)
|
||||
|
||||
* `ghcup-A.B.C.yaml`: this is the main metadata and what ghcup uses by default
|
||||
* `ghcup-vanilla-A.B.C.yaml`: this is similar to `ghcup-A.B.C.yaml`, but only uses upstream bindists (no patches/fixes are applied, no missing platforms added)
|
||||
* `ghcup-prereleases-A.B.C.yaml`: this contains pre-releases of all tools
|
||||
* `ghcup-cross-A.B.C.yaml`: this contains experimental cross compilers. See https://www.haskell.org/ghcup/guide/#cross-support for details.
|
||||
|
||||
### Using the metadata
|
||||
|
||||
If you want access to both pre-releases and cross compilers, run:
|
||||
|
||||
```
|
||||
ghcup config add-release-channel https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-prereleases-0.0.7.yaml
|
||||
ghcup config add-release-channel https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-cross-0.0.8.yaml
|
||||
```
|
||||
|
||||
If you want **only** vanilla upstream bindists and opt out of all unofficial stuff, you'd run:
|
||||
|
||||
```sh
|
||||
ghcup config set url-source https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-vanilla-0.0.8.yaml
|
||||
```
|
||||
|
||||
Also check the [config.yaml documentation](https://github.com/haskell/ghcup-hs/blob/master/data/config.yaml).
|
||||
|
||||
## For contributors
|
||||
|
||||
### Adding a new GHC version
|
||||
## Adding a new GHC version
|
||||
|
||||
1. open the latest `ghcup-<yaml-ver>.yaml`
|
||||
2. find the latest ghc version (in yaml tree e.g. `ghcupDownloads -> GHC -> 8.10.7`)
|
||||
@@ -39,24 +11,3 @@ Also check the [config.yaml documentation](https://github.com/haskell/ghcup-hs/b
|
||||
7. run `cabal run ghcup-gen -- check-tarballs -f ghcup-<yaml-ver>.yaml -u 'ghc-8\.10\.8'`
|
||||
8. run `cabal run ghcup-gen -- generate-hls-ghcs -f ghcup-<yaml-ver>.yaml --format json -o hls-metadata-0.0.1.json`
|
||||
9. run `cabal run ghcup-gen -- generate-table -f ghcup-<yaml-ver>.yaml --stdout` and adjust [docs/install](https://gitlab.haskell.org/haskell/ghcup-hs/-/blob/master/docs/install.md) tables
|
||||
|
||||
### During a pull request
|
||||
|
||||
* make sure to always add new versions to both `ghcup-A.B.C.yaml` and `ghcup-vanilla-A.B.C.yaml`
|
||||
* make sure to run the bindist action to check tool installation on all platforms: https://github.com/haskell/ghcup-metadata/actions/workflows/bindists.yaml
|
||||
- this is a manual pipeline
|
||||
- set the appropriate parameters
|
||||
* make sure to sign the yaml files you edited, e.g.: `gpg --detach-sign -u <your-email> ghcup-0.0.7.yaml` or ask a GHCup developer to sign
|
||||
- PGP pubkeys need to be cross-signed by the GHCup team
|
||||
- they need to be added to the CI: https://github.com/haskell/ghcup-metadata/blob/develop/.github/workflows/sigs
|
||||
- and need to be documented on the homepage
|
||||
* https://github.com/haskell/ghcup-hs/blob/master/docs/guide.md#gpg-verification
|
||||
* https://github.com/haskell/ghcup-hs/blob/master/docs/install.md#unix
|
||||
|
||||
### Understanding tags
|
||||
|
||||
Tags are documented [here](https://github.com/haskell/ghcup-hs/blob/master/lib/GHCup/Types.hs). Search for `data Tag`.
|
||||
Some tags are unique. Uniqueness is checked by `cabal run ghcup-gen -- check -f ghcup-<yaml-ver>.yaml`.
|
||||
|
||||
If you want to check prereleases, do: `cabal run ghcup-gen -- check -f ghcup-prereleases-<yaml-ver>.yaml --channel=prerelease`
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ package ghcup
|
||||
source-repository-package
|
||||
type: git
|
||||
location: https://github.com/haskell/ghcup-hs.git
|
||||
tag: e27fed09f3eb4b0b72ce7825c65f16a4202a2399
|
||||
tag: fd6ff9f8ece147bb4527843822462c72824e8ba7
|
||||
|
||||
constraints: http-io-streams -brotli,
|
||||
any.aeson >= 2.0.1.0
|
||||
|
||||
557
ghcup-0.0.7.yaml
557
ghcup-0.0.7.yaml
@@ -7,7 +7,19 @@ toolRequirements:
|
||||
GHC:
|
||||
unknown_version:
|
||||
Linux_Debian:
|
||||
"( >= 11 && <= 12 )":
|
||||
unknown_versioning:
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
- libffi-dev
|
||||
- libffi6
|
||||
- libgmp-dev
|
||||
- libgmp10
|
||||
- libncurses-dev
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
">= 11":
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
@@ -19,31 +31,19 @@ toolRequirements:
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
">= 12":
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning:
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
- libffi-dev
|
||||
- libffi8
|
||||
- libffi6
|
||||
- libgmp-dev
|
||||
- libgmp10
|
||||
- libncurses-dev
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
unknown_versioning:
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
- libffi-dev
|
||||
- libffi8
|
||||
- libgmp-dev
|
||||
- libgmp10
|
||||
- libncurses-dev
|
||||
- libncurses6
|
||||
- libtinfo6
|
||||
notes: ''
|
||||
Linux_Ubuntu:
|
||||
"( >= 20.04 && < 20.10 )":
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
@@ -56,7 +56,7 @@ toolRequirements:
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
"( >= 20.10 && < 23 )":
|
||||
"( >= 20.10 )":
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
@@ -68,28 +68,6 @@ toolRequirements:
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
">= 23":
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
- libffi-dev
|
||||
- libffi8ubuntu1
|
||||
- libgmp-dev
|
||||
- libgmp10
|
||||
- libncurses-dev
|
||||
notes: ''
|
||||
unknown_versioning:
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
- libffi-dev
|
||||
- libffi6
|
||||
- libgmp-dev
|
||||
- libgmp10
|
||||
- libncurses-dev
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )':
|
||||
distroPKGs:
|
||||
@@ -2873,6 +2851,7 @@ ghcupDownloads:
|
||||
9.2.8:
|
||||
viTags:
|
||||
- base-4.16.4.0
|
||||
- Recommended
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.2.8/docs/html/users_guide/index.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-src.tar.xz
|
||||
@@ -2954,12 +2933,6 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.8-aarch64-apple-darwin
|
||||
dlHash: 34db9b19571905b08ca1e444b46490e7c19cb73a0fe778696fa6ec02ff8d3c4b
|
||||
A_ARM:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/9.2.8/ghc-9.2.8-armv7-deb10-linux-gnueabihf.tar.xz
|
||||
dlSubdir: ghc-9.2.8-armv7-linux-gnueabihf
|
||||
dlHash: d8926744e542a89f150635fdb2d0234c715e39caface4dcb2f0f989c96af51f1
|
||||
9.4.1:
|
||||
viTags:
|
||||
- base-4.17.0.0
|
||||
@@ -3524,7 +3497,6 @@ ghcupDownloads:
|
||||
9.4.7:
|
||||
viTags:
|
||||
- base-4.17.2.0
|
||||
- Recommended
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.7/docs/users_guide/9.4.7-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.7/ghc-9.4.7-src.tar.xz
|
||||
@@ -3616,104 +3588,6 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.7/ghc-9.4.7-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.7-aarch64-apple-darwin
|
||||
dlHash: 5d85f9836d72d45634039218ed52e9faa0ed00c0db056f3d1162b4c2b3838e38
|
||||
9.4.8:
|
||||
viTags:
|
||||
- base-4.17.2.1
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.8/docs/users_guide/9.4.8-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-src.tar.xz
|
||||
dlSubdir: ghc-9.4.8
|
||||
dlHash: 06775a52b4d13ac09edc6dabc299fd11e59d8886bbcae450af367baee2684c8f
|
||||
viTestDL:
|
||||
dlUri: https://downloads.haskell.org/ghc/9.4.8/ghc-9.4.8-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.4.8/testsuite
|
||||
dlHash: a7ce907f7e3d38bee33af5cc23c74b53fe30d600fe5fc63b409c4c5675d2a69d
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-948-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: b9d2b4326c907c5ce5fe0502ea089583c1af4529a17f2e18d103f10f430bb036
|
||||
'(>= 10 && < 11)': &ghc-948-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: fc77eaae5b89f29177bf159fd95ce438066ec64a46bf69df61b267102afdb10e
|
||||
'>= 11': &ghc-948-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-deb11-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: 2743629d040f3213499146cb5154621d6f25e85271019afc9b9009e04d66bf6c
|
||||
unknown_versioning: *ghc-948-64-deb11
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-948-64-deb10
|
||||
'( >= 16 && < 19 )': *ghc-948-64-deb9
|
||||
'>= 20': &ghc-948-64-ubuntu2004
|
||||
dlHash: da1a1ddce5b39f6e30d8a2392753835a41ffc5ec4b914e0845270fe3a2ba4761
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_Mint:
|
||||
'< 20': *ghc-948-64-deb9
|
||||
'>= 20': *ghc-948-64-ubuntu2004
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &ghc-948-64-centos
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-centos7-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: e9240fdbf877ac218f95b46c40637e0b1a05cce659dc613451f8942a8e9bdd4c
|
||||
unknown_versioning: *ghc-948-64-centos
|
||||
Linux_Fedora:
|
||||
'( >= 27 && < 33 )': &ghc-948-64-fedora-27
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-fedora27-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: 788241ed035af45eb387ea379743edc6fe4683cd0f47f48499c1a0b728fc6778
|
||||
'>= 33': &ghc-948-64-fedora-33
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-fedora33-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: cc90dc1969af7e1d45b2c086602cea6cc92c2a770913a8c0e28570ca855ece5a
|
||||
unknown_versioning: *ghc-948-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-948-64-fedora-27
|
||||
unknown_versioning: *ghc-948-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-948-64-fedora-27
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-apple-darwin
|
||||
dlHash: fd9e21c2a9a10c60e39049e9cf1519b5b6a98a5b37e7623ba17bbd6e8dfc2036
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-unknown-mingw32.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-mingw32
|
||||
dlHash: c4a767218551210521c78ddb51bfb309b0e336eef21eba1cc076f3bc0cc99a00
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-alpine3_12-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: 55faf0ec6630d635f97a2bf8f8f79ef587b027962d237f0be3a667b1bbb512b8
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-948-32-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-i386-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-i386-unknown-linux
|
||||
dlHash: 1e3ed137346f6736ddd9a25045ccf686236216f198e7eb30671e2cf8546df658
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-aarch64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-aarch64-unknown-linux
|
||||
dlHash: 278e287e1ee624712b9c6d7803d1cf915ca1cce56e013b0a16215eb8dfeb1531
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.8-aarch64-apple-darwin
|
||||
dlHash: 32385043d824a56983b484da5c0b3504d14b6504764731b0d48f3522ed8497ca
|
||||
9.6.1:
|
||||
viArch:
|
||||
A_32:
|
||||
@@ -4009,128 +3883,13 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-9.6.3
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-src.tar.xz
|
||||
viTags:
|
||||
- Latest
|
||||
- base-4.18.1.0
|
||||
viTestDL:
|
||||
dlHash: b0f92579288adf2320206627248d80d2abfe0e1b9ad2a22cf8f889bbe6806448
|
||||
dlSubdir: ghc-9.6.3
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-src.tar.xz
|
||||
|
||||
9.8.1:
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
unknown_versioning: &ghc981-i386-deb10
|
||||
dlHash: f59a9914c3590e30a4ce2b74a205a7390bc5edd0259627036a685da1ccaff7a0
|
||||
dlOutput: ghc-9.8.1-i386-linux-deb10.tar.xz
|
||||
dlSubdir: ghc-9.8.1-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-i386-deb10-linux.tar.xz
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc981-i386-deb10
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc981-i386-deb10
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc981-i386-deb10
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 1ea10e3b4b81b4159737128434babefff891b68345e48516828547ad8949820e
|
||||
dlOutput: ghc-9.8.1-x86_64-darwin.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: d83e28a0ec6d9a88f7d16cdb64e1110cf122a64166b03b84cb87de38f0fb5e78
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-alpine3_12.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-alpine3_12-linux.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc981-x86_64-centos7
|
||||
dlHash: 9940f8ac028d210240edf3e788cdd9d568bb77994b740798fe8b3bb84ba74561
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc981-x86_64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11):
|
||||
dlHash: d498657ca00514bc4620b591f74b93f9a3b64e5282e5c4e2876a734c130f1fbf
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-deb10-linux.tar.xz
|
||||
< 10:
|
||||
dlHash: 9bfd288e495488ac352de045cc8b3bab509070a5b818cc36b2dfe6097dd7c872
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc981-x86_64-deb11
|
||||
dlHash: ca4dde3a6f34f1fe6d0783767671f02e862f1b0222ef2dc2c5c68cc2abc1abae
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc981-x86_64-deb11
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlHash: dd21379f9d2dfd27817adba94ac1209c03e1c40acc3f499eac94e245a56b5dc6
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc981-x86_64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc981-x86_64-ubuntu18_04
|
||||
dlHash: a9e30db7f2945ffe48de20eb32ad20a534e64f26c908d1feed2e6f3e0a3b467e
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-ubuntu18_04.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc981-x86_64-ubuntu20_04
|
||||
dlHash: 436a34dffafdd0fe2019e973805d479b6a0494f7bd1200502efa95a3c73053b1
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-ubuntu20_04.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *ghc981-x86_64-centos7
|
||||
Linux_Ubuntu:
|
||||
( >= 16 && < 19 ): *ghc981-x86_64-ubuntu18_04
|
||||
unknown_versioning: *ghc981-x86_64-ubuntu20_04
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: 3259df634fc8de876224007400ca2eec73831c59a9e55687809b66553a73c5f5
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-rocky8.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-rocky8-linux.tar.xz
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: eb74654419cb646e9d2e362b57f2f81bc9f5231bceb543b14cb0341aedb07fa3
|
||||
dlOutput: ghc-9.8.1-x86_64-windows.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-unknown-mingw32.tar.xz
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: a38bb06f60c92d348e3ee927a4a88e88488f874e99f440d06244a4e4f9db9e3b
|
||||
dlOutput: ghc-9.8.1-aarch64-darwin.tar.xz
|
||||
dlSubdir: ghc-9.8.1-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: aab7af72614f8bf9ca624407aa4dbc69bc009c2b4cc1a0f3c062008db81bdb95
|
||||
dlOutput: ghc-9.8.1-aarch64-linux-deb10.tar.xz
|
||||
dlSubdir: ghc-9.8.1-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-aarch64-deb10-linux.tar.xz
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.8.1/docs/users_guide/9.8.1-notes.html
|
||||
viReleaseDay: '2023-10-09'
|
||||
viSourceDL:
|
||||
dlHash: b2f8ed6b7f733797a92436f4ff6e088a520913149c9a9be90465b40ad1f20751
|
||||
dlOutput: ghc-9.8.1-src.tar.xz
|
||||
dlSubdir: ghc-9.8.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-src.tar.xz
|
||||
viTags:
|
||||
- Latest
|
||||
- base-4.19.0.0
|
||||
viTestDL:
|
||||
dlHash: 2626f3bb974428cbb795c5433017e18088f0d8de8a66d5a23ff4776847a5bec3
|
||||
dlOutput: ghc-9.8.1-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.8.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-src.tar.xz
|
||||
|
||||
Cabal:
|
||||
2.4.1.0:
|
||||
viTags:
|
||||
@@ -4487,7 +4246,8 @@ 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
|
||||
3.10.1.0:
|
||||
viTags: []
|
||||
viTags:
|
||||
- Latest
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.10.1.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
@@ -4532,141 +4292,57 @@ ghcupDownloads:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.10.1.0/cabal-install-3.10.1.0-armv7-linux-deb10.tar.xz
|
||||
dlHash: 79869dd72cb0a6f90f2e1e0e57af4ea6ee09b041550abc09252d1cf309b4f96e
|
||||
3.10.2.0:
|
||||
viPostInstall: "cabal run is currently partially broken on Windows, please see https://github.com/haskell/cabal/issues/9334"
|
||||
viTags:
|
||||
- Latest
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.10.2.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31020-64
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-alpine3_12.tar.xz
|
||||
dlHash: b54e1cd235c47c62c03cdb9f6cf90e5fe8ae38c5e5befb9e21c8d1395f4bde05
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-31020-64
|
||||
Linux_CentOS:
|
||||
unknown_versioning: &cabal-31020-64-centos7
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-centos7.tar.xz
|
||||
dlHash: cfcdab399380dec7fedda55898bff975ac30b5d5d579433cbf8773b17c15f410
|
||||
Linux_Debian:
|
||||
' ( >= 9 && < 10)': &cabal-31020-64-debian
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-deb9.tar.xz
|
||||
dlHash: af5ce42114cf7720c37fee3238781df4c75bb74914c62e6a68833fb434e0cad7
|
||||
' ( == 10 && < 11)':
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-deb10.tar.xz
|
||||
dlHash: bdeb27c008b09c3b86f8a2768018d62a1aee02565304d123fda87ed432549418
|
||||
' ( >= 11)':
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-deb11.tar.xz
|
||||
dlHash: 9ca5625c89e8fcada02edced5048c3a3db0254e2bef1eb792d549d633222b108
|
||||
unknown_versioning: *cabal-31020-64-debian
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-fedora33.tar.xz
|
||||
dlHash: 1e59dc1e1a1b33085a1789b8ddafb55026211454efe0b4e814c956ef86fe3ea5
|
||||
unknown_versioning: *cabal-31020-64-centos7
|
||||
Linux_Ubuntu:
|
||||
'< 20': &cabal-31020-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-ubuntu18_04.tar.xz
|
||||
dlHash: 7b0bb22c263ae0b43459de1995bf465560d412c12d47af011b2ac27b5d30c7aa
|
||||
'>= 20': &cabal-31020-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-ubuntu20_04.tar.xz
|
||||
dlHash: c2a8048caa3dbfe021d0212804f7f2faad4df1154f1ff52bd2f3c68c1d445fe1
|
||||
unknown_versioning: *cabal-31020-64-ubuntu18
|
||||
Linux_Mint:
|
||||
'< 20': *cabal-31020-64-ubuntu18
|
||||
'>= 20': *cabal-31020-64-ubuntu20
|
||||
unknown_versioning: *cabal-31020-64-ubuntu18
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-darwin.tar.xz
|
||||
dlHash: cd64f2a8f476d0f320945105303c982448ca1379ff54b8625b79fb982b551d90
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-windows.zip
|
||||
dlHash: b09e335b2ebeafa1db5e1e5614e3e10fb37da230a36865d76646ab27b2f3f46b
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-freebsd.tar.xz
|
||||
dlHash: 6dcd9d38a9f2101a0a3c3b74cacb2e41b8f7226f181780c0f872f2f1206dee37
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31020-32
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-i386-linux-alpine3_12.tar.xz
|
||||
dlHash: e219d2c6446c29e09644c4f064f4b87d486871ad6f6de16f0d2fcbd8626b5a5b
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-31020-32
|
||||
Linux_Debian:
|
||||
'( >= 9 )':
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-i386-linux-deb9.tar.xz
|
||||
dlHash: 2b26d2cb67f1ba3561509fbccc30810ccc1c5032238fca00666e3dcd03e941a8
|
||||
unknown_versioning: *cabal-31020-32
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-aarch64-darwin.tar.xz
|
||||
dlHash: d2bd336d7397cf4b76f3bb0d80dea24ca0fa047903e39c8305b136e855269d7b
|
||||
Linux_Debian:
|
||||
'( >= 10 && < 11)': &cabal-31020-arm64
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-aarch64-linux-deb10.tar.xz
|
||||
dlHash: 004ed4a7ca890fadee23f58f9cb606c066236a43e16b34be2532b177b231b06d
|
||||
'( >= 11)':
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-aarch64-linux-deb11.tar.xz
|
||||
dlHash: daa767a1b844fbc2bfa0cc14b7ba67f29543e72dd630f144c6db5a34c0d22eb1
|
||||
unknown_versioning: *cabal-31020-arm64
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *cabal-31020-arm64
|
||||
GHCup:
|
||||
0.1.20.0:
|
||||
0.1.19.4:
|
||||
viTags:
|
||||
- Recommended
|
||||
- Latest
|
||||
viChangeLog: https://github.com/haskell/ghcup-hs/blob/master/CHANGELOG.md
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/ghcup-0.1.20.0-src.tar.gz
|
||||
dlSubdir: ghcup-0.1.20.0
|
||||
dlHash: 6ae313d135a60f08fcd4a1720ceedfcd699d58e9381346d578a548438d1ccddb
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/ghcup-0.1.19.4-src.tar.gz
|
||||
dlSubdir: ghcup-0.1.19.4
|
||||
dlHash: 5008f9e9591b61746b11e28741fee4b4e1a0801c127021d07879ebc76aa9107a
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghcup-64
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/x86_64-linux-ghcup-0.1.20.0
|
||||
dlHash: 0634ab60c659ab14dab4f73d8ee9a7fb4c4e2e959406dc74ed967781df798a3d
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/x86_64-linux-ghcup-0.1.19.4
|
||||
dlHash: c79d45273c44f13bcbd8265ef05a6bad58de1563cc54b93b8a75b7e3cdf8f44d
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/x86_64-apple-darwin-ghcup-0.1.20.0
|
||||
dlHash: 0769f4751e9ff9c625a22470349c38cfaed11d135b52dfa59320a96b6521a57b
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/x86_64-apple-darwin-ghcup-0.1.19.4
|
||||
dlHash: cbace2c55e62e16a994b798d5c350eb618789ea8e2788cc92f2f5dd185c77b38
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/x86_64-portbld-freebsd-ghcup-0.1.20.0
|
||||
dlHash: cfa22b835c2901095f227f20ffa1993a4b5ad947bff3ad301298758bc371608f
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/x86_64-portbld-freebsd-ghcup-0.1.19.4
|
||||
dlHash: 318ecd132a1e06d64b3866ad3ead521d13ddc1d9dd71738acef80ee63521f4c6
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/x86_64-mingw64-ghcup-0.1.20.0.exe
|
||||
dlHash: c2058a510977e982332ee910cc717e6776502243fc1d53d58f3a58b79ce86f43
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/x86_64-mingw64-ghcup-0.1.19.4.exe
|
||||
dlHash: 7d8a8c8b89c26f4ac95b87bb0d2c7135bd504c9830ef30bab1dffeb5d76abcf9
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghcup-64
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghcup-32
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/i386-linux-ghcup-0.1.20.0
|
||||
dlHash: 99cb3e886fce5b8d880a5ff9dfe5f67f0fd812cd356db43ea38d2c7ae5cd366b
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/i386-linux-ghcup-0.1.19.4
|
||||
dlHash: fb7e501fcb2c1309257a7cd718e7dd1f906173fe8ba8ab172de31d18b0f307ae
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghcup-32
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/aarch64-linux-ghcup-0.1.20.0
|
||||
dlHash: 79cb967034ea20b495a7c4e99eefd2a3d4e41e964c69f50d5d626627995751e3
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/aarch64-linux-ghcup-0.1.19.4
|
||||
dlHash: 9850348d3a302f73d27a50108b611d8b66904658c1a46160f7f3bdd4c327d325
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/aarch64-apple-darwin-ghcup-0.1.20.0
|
||||
dlHash: d2068b4a58417c3cb1d90c5a30b83b33c044829a9daf18594dee3dcdf8a4d59b
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/aarch64-apple-darwin-ghcup-0.1.19.4
|
||||
dlHash: fb946e0e7affac27e39d744ea0052f0a4359c4700f8594582081c6ec18b59b0a
|
||||
A_ARM:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/armv7-linux-ghcup-0.1.20.0
|
||||
dlHash: 0e0d3db97a418847077e5f784f551ac21170caf519d6250e2be525bd120d87a0
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/armv7-linux-ghcup-0.1.19.4
|
||||
dlHash: 85980b3e64b5d2ce5420baa6ad5230e4df153db578b4ace238bb748158a3d5ef
|
||||
HLS:
|
||||
1.1.0:
|
||||
viTags:
|
||||
@@ -5630,7 +5306,8 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-2.1.0.0
|
||||
dlHash: dee63014af1ece4d49f88edcdd0396aaa03d1719966dc679118a725acd012060
|
||||
2.2.0.0:
|
||||
viTags: []
|
||||
viTags:
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -5724,7 +5401,8 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-2.2.0.0
|
||||
dlHash: 9e7af7aace18e6d0a42640fd50e3b8ca14c4b23cefa9c3422d9ce311d8554c5e
|
||||
2.3.0.0:
|
||||
viTags: []
|
||||
viTags:
|
||||
- Latest
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -5817,102 +5495,6 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.3.0.0/haskell-language-server-2.3.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.3.0.0
|
||||
dlHash: bb16e491117b7677742ca730b741b0d8154aa3222bbaa8578d487eda5152910a
|
||||
2.4.0.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-src.tar.gz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 398631d6fdd7208d77c939f6142a88d88ecbbbd323ccb40199d8dfe6efde7190
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &hls-2400-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 0d3a33bb474d7517f453bbbb344fc1cb38b46c3cc72454929c0accb6d16ea77f
|
||||
'(>= 10 && < 11)': &hls-2400-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: ac26c6d8648308247929102ed4a9fccbfb8d6245aa304b741b8317556b3110a9
|
||||
unknown_versioning: &hls-2400-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 9506fa48147f80edd3b1526d02ca99f242e84dd21619119b8d8e38872783296a
|
||||
Linux_Ubuntu:
|
||||
'( >= 16 && < 19 )': &hls-2400-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-ubuntu18.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: c2a369f3512e31ffad6791e91e75e96597137388c6bd6eb632f20bc862d4db00
|
||||
'( >= 20 && < 22 )': &hls-2400-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-ubuntu20.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: f4fba08c5ada13d243354274adfda286e95805e85e49cf459d3ab0ca212e7070
|
||||
unknown_versioning: &hls-2400-64-ubuntu22
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-ubuntu22.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: c61f4e2d5f49ee28263c3d975ba62f43a71e406f6d0579921ddf15d077bed269
|
||||
Linux_Mint:
|
||||
'< 20':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-mint19.3.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: e4634ea0353e1d4300315ff1b48f0bb787602ddbc7a82e443765a577f071eb0d
|
||||
'(>= 20 && < 21)':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-mint20.2.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 6236f2f92fea035ed2630a67b21bffd820227d54b674e3a6dfd8b0c96201979a
|
||||
'>= 21': *hls-2400-64-ubuntu22
|
||||
Linux_Fedora:
|
||||
'< 33': &hls-2400-64-fedora27
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-fedora27.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: f564c46a73a725b3557ed4a459d76ada2f50aa82841bb47e21179649362928d9
|
||||
'>= 33': &hls-2400-64-fedora33
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 03330ed40f733d985a51abab3640d3dc887186c0c5a12823689c844dc25322f2
|
||||
unknown_versioning: *hls-2400-64-fedora27
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &hls-2400-64-centos
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: a4de2a57fdc214efb85f8e976013759ddf4782034c7b4e35942adfb151e604b6
|
||||
unknown_versioning: *hls-2400-64-centos
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *hls-2400-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-unknown.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 24341c64725217bfb748d640a100a4c7c6c350f7b41a5c4be871458b79b45913
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: aecb93090ded96d76a11aad3cc4849c5c00faad9491856a020218aa6083409d8
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-mingw64.zip
|
||||
dlHash: be469b863e509705a26d776c798812cc12e757a76ce6bb58c26324ef3a03ab92
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-freebsd.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 311cb78a98ded13a4eb704bbc0d5c893775743bea2977fe635f911e21d1c0114
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-aarch64-linux-ubuntu20.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 2f7ef3e1ae1b40438e2d95218139f2e6985b3df15bc133aedab20c4686cfda20
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 74cfa47f961ac5607055ca2f400b471a535e7b982e910e187c7c1303b048eeaf
|
||||
Stack:
|
||||
2.5.1:
|
||||
viTags:
|
||||
@@ -6125,7 +5707,8 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.9.1/stack-2.9.1-linux-armv7.tar.gz
|
||||
dlHash: fa53c58d8d00a6d49ec26624aa7f817f5ece3c4df339fa6e4fccf1038b7f1fa5
|
||||
2.9.3:
|
||||
viTags: []
|
||||
viTags:
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v293
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -6174,7 +5757,7 @@ ghcupDownloads:
|
||||
dlHash: a56d2cd37611eccf00ab8df38c3718923cf5677f3aeacd250394e79b676dcb98
|
||||
2.11.1:
|
||||
viTags:
|
||||
- Recommended
|
||||
- Latest
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v2111---2023-05-18
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -6216,47 +5799,3 @@ ghcupDownloads:
|
||||
dlHash: 3ea56c5885c9c6d7e2dce927e44f48f6024a4a5a039f7acad79b19654a6f95b5
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
2.13.1:
|
||||
viTags:
|
||||
- Latest
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v2131---2023-09-29
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &stack-2131-64
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.13.1/stack-2.13.1-linux-x86_64.tar.gz
|
||||
dlHash: 45281bb2385e928916ec8bcbc7ab790ce8721bbf805f3d0752544ada22ad5ea3
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.13.1/stack-2.13.1-osx-x86_64.tar.gz
|
||||
dlHash: b7d46382edb17230d21943844550d3aaeacee8b6fb1fcc7980ca59bee500b2a5
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.13.1/stack-2.13.1-windows-x86_64.tar.gz
|
||||
dlHash: 728be2371e257c6960341167192fa704ff1f92ab61657dd4781710a257fae7c1
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
# FreeBSD:
|
||||
# unknown_versioning:
|
||||
# dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.13.1/stack-2.13.1-freebsd-x86_64.tar.xz
|
||||
# dlHash: <replace_me>
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *stack-2131-64
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.13.1/stack-2.13.1-linux-aarch64.tar.gz
|
||||
dlHash: 37b1dbf39131eea629a6e3685fd1153fdfd2f0cd2179db92bb33784987b4ddb8
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.13.1/stack-2.13.1-osx-aarch64.tar.gz
|
||||
dlHash: 18ececd7112b1aad01ab0f88cb68ae63f2dc74aa9b8b5319828979f43cba9907
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
|
||||
Binary file not shown.
6262
ghcup-0.0.8.yaml
6262
ghcup-0.0.8.yaml
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -27,30 +27,16 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/ghc/javascript-unknown-ghcjs-9.6.2/ghc-javascript-unknown-ghcjs-9.6.2-aarch64-apple-darwin.tar.xz
|
||||
dlHash: 0d65bb3940a820d95b4b33ea0cd61bf39670d48c4d8f747153ded01a7ef34821
|
||||
dlSubdir: ghc-9.6.2-javascript-unknown-ghcjs
|
||||
wasm32-wasi-9.6.3.20230927:
|
||||
wasm32-wasi-9.6.2.20230523:
|
||||
viTags:
|
||||
- base-4.18.1.0
|
||||
- base-4.18.0.0
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghc-wasm32-wasi-963-64-static
|
||||
dlHash: 2e1d363320c03e35fd9048a252a0cfed8f7b87da76c063c7fc52122c390f42c3
|
||||
dlSubdir: ghc-9.6.3.20230927-wasm32-wasi
|
||||
dlUri: https://github.com/amesgen/ghc-wasm-bindists/releases/download/20231001T201511/wasm32-wasi-ghc-9.6.tar.xz
|
||||
dlOutput: ghc-9.6.3.20230927-x86_64-linux-alpine3_12-cross_wasm32-wasi-release+fully_static.tar.xz
|
||||
unknown_versioning: &ghc-wasm32-wasi-64-static
|
||||
dlHash: 85433ce296f2f95a5c60f78060cb4a3a8bf8b56bf83ddd75f1b23cb2e2378888
|
||||
dlSubdir: ghc-9.6.2.20230523-wasm32-wasi
|
||||
dlUri: https://gitlab.haskell.org/api/v4/projects/3223/jobs/1530829/artifacts/ghc-x86_64-linux-alpine3_12-cross_wasm32-wasi-release%2Bfully_static.tar.xz
|
||||
dlOutput: ghc-9.6.2.20230523-x86_64-linux-alpine3_12-cross_wasm32-wasi-release+fully_static.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghc-wasm32-wasi-963-64-static
|
||||
wasm32-wasi-9.8.0.20230927:
|
||||
viTags:
|
||||
- base-4.19.0.0
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghc-wasm32-wasi-980-64-static
|
||||
dlHash: bad3393b6eba103230c62f050ffd9d458916c6238e5d5fa031d3eee5d995305a
|
||||
dlSubdir: ghc-9.8.0.20230927-wasm32-wasi
|
||||
dlUri: https://github.com/amesgen/ghc-wasm-bindists/releases/download/20231001T201511/wasm32-wasi-ghc-9.8.tar.xz
|
||||
dlOutput: ghc-9.8.0.20230927-x86_64-linux-alpine3_12-cross_wasm32-wasi-release+fully_static.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghc-wasm32-wasi-980-64-static
|
||||
|
||||
unknown_versioning: *ghc-wasm32-wasi-64-static
|
||||
|
||||
Binary file not shown.
@@ -105,30 +105,11 @@ inputP :: Parser Input
|
||||
inputP = fileInput <|> stdInput
|
||||
|
||||
data ValidateYAMLOpts = ValidateYAMLOpts
|
||||
{ vChannel :: DistributionChannel
|
||||
, vInput :: Maybe Input
|
||||
{ vInput :: Maybe Input
|
||||
}
|
||||
|
||||
validateYAMLOpts :: Parser ValidateYAMLOpts
|
||||
validateYAMLOpts = ValidateYAMLOpts <$> channelParser <*> optional inputP
|
||||
|
||||
channelParser :: Parser DistributionChannel
|
||||
channelParser =
|
||||
option
|
||||
(eitherReader chanP)
|
||||
(long "channel" <> metavar "CHANNEL" <> help
|
||||
"Signal which distribution channel the YAML denotes: (main | prerelease | nightly). Main is defaul."
|
||||
<> value MainChan
|
||||
)
|
||||
where
|
||||
chanP :: String -> Either String DistributionChannel
|
||||
chanP s' | t == T.pack "main" = Right MainChan
|
||||
| t == T.pack "prerelease" = Right PrereleaseChan
|
||||
| t == T.pack "prereleases" = Right PrereleaseChan
|
||||
| t == T.pack "nightly" = Right NightlyChan
|
||||
| t == T.pack "nightlies" = Right NightlyChan
|
||||
| otherwise = Left ("Unknown channel value: " <> s')
|
||||
where t = T.toLower (T.pack s')
|
||||
validateYAMLOpts = ValidateYAMLOpts <$> optional inputP
|
||||
|
||||
tarballFilterP :: Parser TarballFilter
|
||||
tarballFilterP = option readm $
|
||||
@@ -224,7 +205,7 @@ main = do
|
||||
|
||||
_ <- customExecParser (prefs showHelpOnError) (info (opts <**> helper) idm)
|
||||
>>= \Options {..} -> case optCommand of
|
||||
ValidateYAML vopts@ValidateYAMLOpts{ .. } -> withValidateYamlOpts vopts (validate vChannel)
|
||||
ValidateYAML vopts -> withValidateYamlOpts vopts validate
|
||||
ValidateTarballs vopts tarballFilter -> withValidateYamlOpts vopts (validateTarballs tarballFilter)
|
||||
GenerateHlsGhc vopts format output -> withValidateYamlOpts vopts (generateHLSGhc format output)
|
||||
GenerateToolTable vopts output -> withValidateYamlOpts vopts (generateTable output)
|
||||
|
||||
@@ -51,11 +51,6 @@ data ValidationError = InternalError String
|
||||
|
||||
instance Exception ValidationError
|
||||
|
||||
data DistributionChannel = MainChan
|
||||
| PrereleaseChan
|
||||
| NightlyChan
|
||||
deriving (Show, Eq)
|
||||
|
||||
|
||||
addError :: (MonadReader (IORef Int) m, MonadIO m, Monad m) => m ()
|
||||
addError = do
|
||||
@@ -71,9 +66,8 @@ validate :: ( Monad m
|
||||
, MonadUnliftIO m
|
||||
, HasGHCupInfo env
|
||||
)
|
||||
=> DistributionChannel
|
||||
-> m ExitCode
|
||||
validate distroChannel = do
|
||||
=> m ExitCode
|
||||
validate = do
|
||||
GHCupInfo { _ghcupDownloads = dls } <- getGHCupInfo
|
||||
|
||||
ref <- liftIO $ newIORef 0
|
||||
@@ -101,36 +95,33 @@ validate distroChannel = do
|
||||
lift $ logInfo "All good"
|
||||
pure ExitSuccess
|
||||
where
|
||||
checkHasRequiredPlatforms t v tags arch pspecs
|
||||
-- relax requirements for prerelease and nightly channels
|
||||
| distroChannel `elem` [PrereleaseChan, NightlyChan] = pure ()
|
||||
| otherwise = do
|
||||
let v' = prettyVer v
|
||||
arch' = prettyShow arch
|
||||
when (Linux UnknownLinux `notElem` pspecs) $ do
|
||||
lift $ logError $
|
||||
"Linux UnknownLinux missing for for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack arch'
|
||||
addError
|
||||
when ((Darwin `notElem` pspecs) && arch == A_64) $ do
|
||||
lift $ logError $ "Darwin missing for for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack arch'
|
||||
addError
|
||||
when ((FreeBSD `notElem` pspecs) && arch == A_64) $ lift $ logWarn $
|
||||
"FreeBSD missing for for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack arch'
|
||||
when (Windows `notElem` pspecs && arch == A_64) $ do
|
||||
lift $ logError $ "Windows missing for for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack arch'
|
||||
addError
|
||||
checkHasRequiredPlatforms t v tags arch pspecs = do
|
||||
let v' = prettyVer v
|
||||
arch' = prettyShow arch
|
||||
when (Linux UnknownLinux `notElem` pspecs) $ do
|
||||
lift $ logError $
|
||||
"Linux UnknownLinux missing for for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack arch'
|
||||
addError
|
||||
when ((Darwin `notElem` pspecs) && arch == A_64) $ do
|
||||
lift $ logError $ "Darwin missing for for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack arch'
|
||||
addError
|
||||
when ((FreeBSD `notElem` pspecs) && arch == A_64) $ lift $ logWarn $
|
||||
"FreeBSD missing for for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack arch'
|
||||
when (Windows `notElem` pspecs && arch == A_64) $ do
|
||||
lift $ logError $ "Windows missing for for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack arch'
|
||||
addError
|
||||
|
||||
-- alpine needs to be set explicitly, because
|
||||
-- we cannot assume that "Linux UnknownLinux" runs on Alpine
|
||||
-- (although it could be static)
|
||||
when (Linux Alpine `notElem` pspecs) $
|
||||
case t of
|
||||
GHCup | arch `elem` [A_64, A_32] -> lift (logError $ "Linux Alpine missing for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack (prettyShow arch)) >> addError
|
||||
Cabal | v > [vver|2.4.1.0|]
|
||||
, arch `elem` [A_64, A_32] -> lift (logError $ "Linux Alpine missing for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack (prettyShow arch)) >> addError
|
||||
GHC | Latest `elem` tags || Recommended `elem` tags
|
||||
, arch `elem` [A_64, A_32] -> lift (logError $ "Linux Alpine missing for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack (prettyShow arch))
|
||||
_ -> lift $ logWarn $ "Linux Alpine missing for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack (prettyShow arch)
|
||||
-- alpine needs to be set explicitly, because
|
||||
-- we cannot assume that "Linux UnknownLinux" runs on Alpine
|
||||
-- (although it could be static)
|
||||
when (Linux Alpine `notElem` pspecs) $
|
||||
case t of
|
||||
GHCup | arch `elem` [A_64, A_32] -> lift (logError $ "Linux Alpine missing for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack (prettyShow arch)) >> addError
|
||||
Cabal | v > [vver|2.4.1.0|]
|
||||
, arch `elem` [A_64, A_32] -> lift (logError $ "Linux Alpine missing for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack (prettyShow arch)) >> addError
|
||||
GHC | Latest `elem` tags || Recommended `elem` tags
|
||||
, arch `elem` [A_64, A_32] -> lift (logError $ "Linux Alpine missing for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack (prettyShow arch))
|
||||
_ -> lift $ logWarn $ "Linux Alpine missing for " <> T.pack (prettyShow t) <> " " <> v' <> " " <> T.pack (prettyShow arch)
|
||||
|
||||
checkUniqueTags tool = do
|
||||
GHCupInfo { _ghcupDownloads = dls } <- lift getGHCupInfo
|
||||
@@ -154,15 +145,12 @@ validate distroChannel = do
|
||||
lift $ logError $ "Tags not unique for " <> T.pack (prettyShow tool) <> ": " <> T.pack (prettyShow xs)
|
||||
addError
|
||||
where
|
||||
isUniqueTag Latest = True
|
||||
isUniqueTag Recommended = True
|
||||
isUniqueTag Old = False
|
||||
isUniqueTag Prerelease = False
|
||||
isUniqueTag LatestPrerelease = True
|
||||
isUniqueTag Nightly = False
|
||||
isUniqueTag LatestNightly = True
|
||||
isUniqueTag (Base _) = False
|
||||
isUniqueTag (UnknownTag _) = False
|
||||
isUniqueTag Latest = True
|
||||
isUniqueTag Recommended = True
|
||||
isUniqueTag Old = False
|
||||
isUniqueTag Prerelease = False
|
||||
isUniqueTag (Base _) = False
|
||||
isUniqueTag (UnknownTag _) = False
|
||||
|
||||
checkGHCVerIsValid = do
|
||||
GHCupInfo { _ghcupDownloads = dls } <- lift getGHCupInfo
|
||||
@@ -178,21 +166,12 @@ validate distroChannel = do
|
||||
checkMandatoryTags tool = do
|
||||
GHCupInfo { _ghcupDownloads = dls } <- lift getGHCupInfo
|
||||
let allTags = _viTags =<< M.elems (availableToolVersions dls tool)
|
||||
forM_ (mandatoryTags tool) $ \t -> case t `elem` allTags of
|
||||
forM_ [Latest, Recommended] $ \t -> case t `elem` allTags of
|
||||
False -> do
|
||||
lift $ logError $ "Tag " <> T.pack (prettyShow t) <> " missing from " <> T.pack (prettyShow tool)
|
||||
addError
|
||||
True -> pure ()
|
||||
|
||||
mandatoryTags tool
|
||||
-- due to a quirk, even for ghcup prereleases we need the 'latest' tag
|
||||
-- https://github.com/haskell/ghcup-hs/issues/891
|
||||
| tool == GHCup = [Latest, Recommended]
|
||||
| otherwise = case distroChannel of
|
||||
MainChan -> [Latest, Recommended]
|
||||
PrereleaseChan -> [LatestPrerelease]
|
||||
NightlyChan -> [LatestNightly]
|
||||
|
||||
-- all GHC versions must have a base tag
|
||||
checkGHCHasBaseVersion = do
|
||||
GHCupInfo { _ghcupDownloads = dls } <- lift getGHCupInfo
|
||||
|
||||
@@ -13,11 +13,11 @@ ghcupDownloads:
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-3720-64
|
||||
unknown_versioning: &cabal-3720-32
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.7.0.0-pre20220407/cabal-install-3.7-x86_64-linux-alpine.tar.xz
|
||||
dlHash: c9e28e1578dfb851918e523040cb0f913df747fe95e24d089bcf7cd821c21885
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-3720-64
|
||||
unknown_versioning: *cabal-3720-32
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.7.0.0-pre20220407/cabal-install-3.7-x86_64-darwin.tar.xz
|
||||
@@ -59,11 +59,11 @@ ghcupDownloads:
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-3810-64
|
||||
unknown_versioning: &cabal-3810-32
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.8.1.0-rc1/cabal-install-3.8.0.20220526-x86_64-linux-alpine.tar.xz
|
||||
dlHash: a4e6cb7990d7150c4e64cbd3ebd0a62fb6b00f96f0f9bc3fb751ff6d1f898fdb
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-3810-64
|
||||
unknown_versioning: *cabal-3810-32
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.8.1.0-rc1/cabal-install-3.8.0.20220526-x86_64-darwin.tar.xz
|
||||
@@ -100,11 +100,11 @@ ghcupDownloads:
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-3900-64
|
||||
unknown_versioning: &cabal-3900-32
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.9.0.0/cabal-install-3.9-x86_64-linux-alpine.tar.xz
|
||||
dlHash: 0374716dc33f255e1fb9ec38d83fdd3a3dc81ecf38af0a94b8ab0e1ba1a1ac1c
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-3900-64
|
||||
unknown_versioning: *cabal-3900-32
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.9.0.0/cabal-install-3.9-x86_64-darwin.tar.xz
|
||||
@@ -210,7 +210,7 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.1-alpha2/ghc-9.4.0.20220523-src.tar.xz
|
||||
dlSubdir: ghc-9.4.0.20220523
|
||||
dlHash: 3bcac9a2043bbc99cd8113547d92fdcad7d7bb4c286a9222ccbcbd4b4a26b635
|
||||
viPostRemove: *ghc-post-remove
|
||||
viPostRemove: &ghc-post-remove "After removing GHC you might also want to clean up your cabal store at: ~/.cabal/store/ghc-<ghcver>"
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
@@ -549,11 +549,11 @@ ghcupDownloads:
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
<10: &ghc-961alpha2-32-deb9
|
||||
<10: &ghc-961alpha2-64-deb9
|
||||
dlHash: e2f3e622f1aecfe0b6a305d0fb997e83453ecbc2949cb2b393549e35f2b062e1
|
||||
dlSubdir: ghc-9.6.0.20230128-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.0.20230128/ghc-9.6.0.20230128-i386-deb9-linux.tar.xz
|
||||
unknown_versioning: *ghc-961alpha2-32-deb9
|
||||
unknown_versioning: *ghc-961alpha2-64-deb9
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
@@ -1290,7 +1290,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-9.8.0.20230919
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230919/ghc-9.8.0.20230919-src.tar.xz
|
||||
viTags:
|
||||
- Prerelease
|
||||
- LatestPrerelease
|
||||
- base-4.19.0.0
|
||||
viTestDL:
|
||||
dlHash: a586567b51ce856d15cc4bdde2316aa0aaf7381d80896d2fdcc4f13757b303e6
|
||||
@@ -1298,121 +1298,6 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-9.8.0.20230919
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230919/ghc-9.8.0.20230919-src.tar.xz
|
||||
|
||||
9.8.0.20230929:
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
unknown_versioning: &ghc-981rc1-i386-deb10
|
||||
dlHash: 972ecaadafff7d4a65fa5c328d4f9b5210001c75534f3ba123fe51039643ab09
|
||||
dlOutput: ghc-9.8.0.20230929-i386-linux-deb10.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-i386-deb10-linux.tar.xz
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-981rc1-i386-deb10
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-981rc1-i386-deb10
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-981rc1-i386-deb10
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 95ff4a6fe3202e14311bfd22b2ef166d47e8cc8a848cf9cfd5d66734e4dac919
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-darwin.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: 4f73dbe0967d831252744d59a238d4a49aa474ea04b4cc8683fe06847f6b071d
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-linux-alpine3_12.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-alpine3_12-linux.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc-981rc1-x86_64-centos7
|
||||
dlHash: ca3526b013b9889f4b43074dcdb0cc213facb55db9f0e6de9c2365bb0365b664
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc-981rc1-x86_64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11):
|
||||
dlHash: abd39667c4227614c3f2c6a58a911837eb08f2664ca8dcc06389f6e2fe88d576
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-deb10-linux.tar.xz
|
||||
< 10:
|
||||
dlHash: 9d5c85c58b4f35125c6ff62974e935d035ff42ef7e4bb366007982127f9b4312
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc-981rc1-x86_64-deb11
|
||||
dlHash: 4be779e74afb510de27f7d9ed3b2a63044e678d2bdf8356a42f2232dcd4bc332
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc-981rc1-x86_64-deb11
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlHash: a85cfaee4b3d3a9900282a01f473e5520e31c405cd3319a30a8ab06321cd90e0
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc-981rc1-x86_64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc-981rc1-x86_64-ubuntu18_04
|
||||
dlHash: d07a57858490dfa5ed1299939eacf068f52603b4ab55a5cc68b3fe19b0bb81da
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-linux-ubuntu18_04.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc-981rc1-x86_64-ubuntu20_04
|
||||
dlHash: 433e70733015c64fd967ee2f6c93ac519a0a72455463dac76030a8b2aa54c021
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-linux-ubuntu20_04.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *ghc-981rc1-x86_64-centos7
|
||||
Linux_Ubuntu:
|
||||
( >= 16 && < 19 ): *ghc-981rc1-x86_64-ubuntu18_04
|
||||
unknown_versioning: *ghc-981rc1-x86_64-ubuntu20_04
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: aaaeb2c1a0bc111676b240bb171e622532cafab2b8d9fb98da181d8df799cf32
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-linux-rocky8.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-rocky8-linux.tar.xz
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: 89960b8e52b21c455369025a6ba9f7445ad763cd8ea924771ef65052d3b0caf6
|
||||
dlOutput: ghc-9.8.0.20230929-x86_64-windows.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-x86_64-unknown-mingw32.tar.xz
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 62f66aa167ff08e862549750511fe4c7a1b789ac82a1203e5154ddaa62e0a0e6
|
||||
dlOutput: ghc-9.8.0.20230929-aarch64-darwin.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: cf212fc580fd881dbf80c8a2d7df355cc8728c94b8bab2217a3257247d4b459a
|
||||
dlOutput: ghc-9.8.0.20230929-aarch64-linux-deb10.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-aarch64-deb10-linux.tar.xz
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.8.0.20230929/docs/users_guide/9.8.1-notes.html
|
||||
viReleaseDay: '2023-09-29'
|
||||
viSourceDL:
|
||||
dlHash: 93bda13ca9e612210147210c23c2d565b9a4cfafa0f4d8a033ec533a8d07fd4b
|
||||
dlOutput: ghc-9.8.0.20230929-src.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-src.tar.xz
|
||||
viTags:
|
||||
- LatestPrerelease
|
||||
- base-4.19.0.0
|
||||
viTestDL:
|
||||
dlHash: b0afd2912ba91914519739907ede6008857871668a138829410d72948c3c359e
|
||||
dlOutput: ghc-9.8.0.20230929-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.8.0.20230929
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.0.20230929/ghc-9.8.0.20230929-src.tar.xz
|
||||
|
||||
Stack:
|
||||
2.9.2.1:
|
||||
@@ -1527,3 +1412,55 @@ ghcupDownloads:
|
||||
dlHash: 9c3b957c7c8b1c5c09e0251907372563b48d5869c31e35be43916736f679535d
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
|
||||
GHCup:
|
||||
0.1.19.5:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/ghcup-hs/blob/master/CHANGELOG.md
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.5/ghcup-0.1.19.5-src.tar.gz
|
||||
dlSubdir: ghcup-0.1.19.5
|
||||
dlHash: abfb1f18201c77bcebae6a0282844df2cc644427270a8df9af341901211f7b9c
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghcup-64
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.5/x86_64-linux-ghcup-0.1.19.5
|
||||
dlHash: 2d07c7c64d9eb472d85210c27c4489931804fd753a99724d1df740dbf1bfc5a5
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.5/x86_64-apple-darwin-ghcup-0.1.19.5
|
||||
dlHash: bde41f049e795e086c1ee27a4ae0629285c56bdf041f039e798f77481a133202
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.5/x86_64-portbld-freebsd-ghcup-0.1.19.5
|
||||
dlHash: 6b743f440f6bf9e4525acec2bd360d8a07af06925a74d0d960b9fe7c8c90b176
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.5/x86_64-mingw64-ghcup-0.1.19.5.exe
|
||||
dlHash: 085fc717bcea786034133c5028e5c3e5d46da341787bb267482996e97d076c88
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghcup-64
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghcup-32
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.5/i386-linux-ghcup-0.1.19.5
|
||||
dlHash: 9bb0870ae4b4fd0d4d18982f4aa88749018aed81479e51070478f699ed9a85e0
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghcup-32
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.5/aarch64-linux-ghcup-0.1.19.5
|
||||
dlHash: cea78d9189be6fd62519c9d450654e7dd4e0923a7834c38b0539ba9264c6762e
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.5/aarch64-apple-darwin-ghcup-0.1.19.5
|
||||
dlHash: 4dafad0be3314372e2d312ee4ff3999060826ed1b53678dc2fb8715ee4bb4c53
|
||||
A_ARM:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.5/armv7-linux-ghcup-0.1.19.5
|
||||
dlHash: 46147824b921b61e3161e03c638a8ff684667ea1d877df0e06721c4b2149cd5f
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -7,7 +7,19 @@ toolRequirements:
|
||||
GHC:
|
||||
unknown_version:
|
||||
Linux_Debian:
|
||||
"( >= 11 && <= 12 )":
|
||||
unknown_versioning:
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
- libffi-dev
|
||||
- libffi6
|
||||
- libgmp-dev
|
||||
- libgmp10
|
||||
- libncurses-dev
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
">= 11":
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
@@ -19,31 +31,19 @@ toolRequirements:
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
">= 12":
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning:
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
- libffi-dev
|
||||
- libffi8
|
||||
- libffi6
|
||||
- libgmp-dev
|
||||
- libgmp10
|
||||
- libncurses-dev
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
unknown_versioning:
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
- libffi-dev
|
||||
- libffi8
|
||||
- libgmp-dev
|
||||
- libgmp10
|
||||
- libncurses-dev
|
||||
- libncurses6
|
||||
- libtinfo6
|
||||
notes: ''
|
||||
Linux_Ubuntu:
|
||||
"( >= 20.04 && < 20.10 )":
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
@@ -56,7 +56,7 @@ toolRequirements:
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
"( >= 20.10 && < 23 )":
|
||||
"( >= 20.10 )":
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
@@ -68,28 +68,6 @@ toolRequirements:
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
">= 23":
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
- libffi-dev
|
||||
- libffi8ubuntu1
|
||||
- libgmp-dev
|
||||
- libgmp10
|
||||
- libncurses-dev
|
||||
notes: ''
|
||||
unknown_versioning:
|
||||
distroPKGs:
|
||||
- build-essential
|
||||
- curl
|
||||
- libffi-dev
|
||||
- libffi6
|
||||
- libgmp-dev
|
||||
- libgmp10
|
||||
- libncurses-dev
|
||||
- libncurses5
|
||||
- libtinfo5
|
||||
notes: ''
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )':
|
||||
distroPKGs:
|
||||
@@ -2791,12 +2769,6 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.2.8-aarch64-apple-darwin
|
||||
dlHash: 34db9b19571905b08ca1e444b46490e7c19cb73a0fe778696fa6ec02ff8d3c4b
|
||||
A_ARM:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-armv7-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.2.8
|
||||
dlHash: 78af6f7350fad956b1e4609a4c4a05e5522e9734c3038a9d56e3ceb5f260c7c4
|
||||
9.4.1:
|
||||
viTags:
|
||||
- base-4.17.0.0
|
||||
@@ -3440,104 +3412,6 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.7/ghc-9.4.7-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.7-aarch64-apple-darwin
|
||||
dlHash: 5d85f9836d72d45634039218ed52e9faa0ed00c0db056f3d1162b4c2b3838e38
|
||||
9.4.8:
|
||||
viTags:
|
||||
- base-4.17.2.1
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.4.8/docs/users_guide/9.4.8-notes.html
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-src.tar.xz
|
||||
dlSubdir: ghc-9.4.8
|
||||
dlHash: 06775a52b4d13ac09edc6dabc299fd11e59d8886bbcae450af367baee2684c8f
|
||||
viTestDL:
|
||||
dlUri: https://downloads.haskell.org/ghc/9.4.8/ghc-9.4.8-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.4.8/testsuite
|
||||
dlHash: a7ce907f7e3d38bee33af5cc23c74b53fe30d600fe5fc63b409c4c5675d2a69d
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-948-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: b9d2b4326c907c5ce5fe0502ea089583c1af4529a17f2e18d103f10f430bb036
|
||||
'(>= 10 && < 11)': &ghc-948-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: fc77eaae5b89f29177bf159fd95ce438066ec64a46bf69df61b267102afdb10e
|
||||
'>= 11': &ghc-948-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-deb11-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: 2743629d040f3213499146cb5154621d6f25e85271019afc9b9009e04d66bf6c
|
||||
unknown_versioning: *ghc-948-64-deb11
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-948-64-deb10
|
||||
'( >= 16 && < 19 )': *ghc-948-64-deb9
|
||||
'>= 20': &ghc-948-64-ubuntu2004
|
||||
dlHash: da1a1ddce5b39f6e30d8a2392753835a41ffc5ec4b914e0845270fe3a2ba4761
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_Mint:
|
||||
'< 20': *ghc-948-64-deb9
|
||||
'>= 20': *ghc-948-64-ubuntu2004
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &ghc-948-64-centos
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-centos7-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: e9240fdbf877ac218f95b46c40637e0b1a05cce659dc613451f8942a8e9bdd4c
|
||||
unknown_versioning: *ghc-948-64-centos
|
||||
Linux_Fedora:
|
||||
'( >= 27 && < 33 )': &ghc-948-64-fedora-27
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-fedora27-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: 788241ed035af45eb387ea379743edc6fe4683cd0f47f48499c1a0b728fc6778
|
||||
'>= 33': &ghc-948-64-fedora-33
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-fedora33-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: cc90dc1969af7e1d45b2c086602cea6cc92c2a770913a8c0e28570ca855ece5a
|
||||
unknown_versioning: *ghc-948-64-centos
|
||||
Linux_RedHat:
|
||||
'>= 8': *ghc-948-64-fedora-27
|
||||
unknown_versioning: *ghc-948-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-948-64-fedora-27
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-apple-darwin
|
||||
dlHash: fd9e21c2a9a10c60e39049e9cf1519b5b6a98a5b37e7623ba17bbd6e8dfc2036
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-unknown-mingw32.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-mingw32
|
||||
dlHash: c4a767218551210521c78ddb51bfb309b0e336eef21eba1cc076f3bc0cc99a00
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-alpine3_12-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-x86_64-unknown-linux
|
||||
dlHash: 55faf0ec6630d635f97a2bf8f8f79ef587b027962d237f0be3a667b1bbb512b8
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
'< 10': &ghc-948-32-deb9
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-i386-deb9-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-i386-unknown-linux
|
||||
dlHash: 1e3ed137346f6736ddd9a25045ccf686236216f198e7eb30671e2cf8546df658
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc-948-32-deb9
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-aarch64-deb10-linux.tar.xz
|
||||
dlSubdir: ghc-9.4.8-aarch64-unknown-linux
|
||||
dlHash: 278e287e1ee624712b9c6d7803d1cf915ca1cce56e013b0a16215eb8dfeb1531
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: ghc-9.4.8-aarch64-apple-darwin
|
||||
dlHash: 32385043d824a56983b484da5c0b3504d14b6504764731b0d48f3522ed8497ca
|
||||
9.6.1:
|
||||
viArch:
|
||||
A_32:
|
||||
@@ -3730,6 +3604,7 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-9.6.2
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.2/ghc-9.6.2-src.tar.xz
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
- base-4.18.0.0
|
||||
viTestDL:
|
||||
@@ -3829,128 +3704,13 @@ ghcupDownloads:
|
||||
dlSubdir: ghc-9.6.3
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-src.tar.xz
|
||||
viTags:
|
||||
- Latest
|
||||
- base-4.18.1.0
|
||||
viTestDL:
|
||||
dlHash: b0f92579288adf2320206627248d80d2abfe0e1b9ad2a22cf8f889bbe6806448
|
||||
dlSubdir: ghc-9.6.3
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-src.tar.xz
|
||||
|
||||
9.8.1:
|
||||
viArch:
|
||||
A_32:
|
||||
Linux_Debian:
|
||||
unknown_versioning: &ghc981-i386-deb10
|
||||
dlHash: f59a9914c3590e30a4ce2b74a205a7390bc5edd0259627036a685da1ccaff7a0
|
||||
dlOutput: ghc-9.8.1-i386-linux-deb10.tar.xz
|
||||
dlSubdir: ghc-9.8.1-i386-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-i386-deb10-linux.tar.xz
|
||||
Linux_Mint:
|
||||
unknown_versioning: *ghc981-i386-deb10
|
||||
Linux_Ubuntu:
|
||||
unknown_versioning: *ghc981-i386-deb10
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *ghc981-i386-deb10
|
||||
A_64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: 1ea10e3b4b81b4159737128434babefff891b68345e48516828547ad8949820e
|
||||
dlOutput: ghc-9.8.1-x86_64-darwin.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-apple-darwin.tar.xz
|
||||
Linux_Alpine:
|
||||
unknown_versioning:
|
||||
dlHash: d83e28a0ec6d9a88f7d16cdb64e1110cf122a64166b03b84cb87de38f0fb5e78
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-alpine3_12.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-alpine3_12-linux.tar.xz
|
||||
Linux_CentOS:
|
||||
( >= 7 && < 8 ): &ghc981-x86_64-centos7
|
||||
dlHash: 9940f8ac028d210240edf3e788cdd9d568bb77994b740798fe8b3bb84ba74561
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-centos7-linux.tar.xz
|
||||
unknown_versioning: *ghc981-x86_64-centos7
|
||||
Linux_Debian:
|
||||
(>= 10 && < 11):
|
||||
dlHash: d498657ca00514bc4620b591f74b93f9a3b64e5282e5c4e2876a734c130f1fbf
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-deb10-linux.tar.xz
|
||||
< 10:
|
||||
dlHash: 9bfd288e495488ac352de045cc8b3bab509070a5b818cc36b2dfe6097dd7c872
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-deb9-linux.tar.xz
|
||||
'>= 11': &ghc981-x86_64-deb11
|
||||
dlHash: ca4dde3a6f34f1fe6d0783767671f02e862f1b0222ef2dc2c5c68cc2abc1abae
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-deb11-linux.tar.xz
|
||||
unknown_versioning: *ghc981-x86_64-deb11
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlHash: dd21379f9d2dfd27817adba94ac1209c03e1c40acc3f499eac94e245a56b5dc6
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-fedora33-linux.tar.xz
|
||||
unknown_versioning: *ghc981-x86_64-centos7
|
||||
Linux_Mint:
|
||||
< 20: &ghc981-x86_64-ubuntu18_04
|
||||
dlHash: a9e30db7f2945ffe48de20eb32ad20a534e64f26c908d1feed2e6f3e0a3b467e
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-ubuntu18_04.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-ubuntu18_04-linux.tar.xz
|
||||
'>= 20': &ghc981-x86_64-ubuntu20_04
|
||||
dlHash: 436a34dffafdd0fe2019e973805d479b6a0494f7bd1200502efa95a3c73053b1
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-ubuntu20_04.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-ubuntu20_04-linux.tar.xz
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *ghc981-x86_64-centos7
|
||||
Linux_Ubuntu:
|
||||
( >= 16 && < 19 ): *ghc981-x86_64-ubuntu18_04
|
||||
unknown_versioning: *ghc981-x86_64-ubuntu20_04
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: 3259df634fc8de876224007400ca2eec73831c59a9e55687809b66553a73c5f5
|
||||
dlOutput: ghc-9.8.1-x86_64-linux-rocky8.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-rocky8-linux.tar.xz
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlHash: eb74654419cb646e9d2e362b57f2f81bc9f5231bceb543b14cb0341aedb07fa3
|
||||
dlOutput: ghc-9.8.1-x86_64-windows.tar.xz
|
||||
dlSubdir: ghc-9.8.1-x86_64-unknown-mingw32
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-unknown-mingw32.tar.xz
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlHash: a38bb06f60c92d348e3ee927a4a88e88488f874e99f440d06244a4e4f9db9e3b
|
||||
dlOutput: ghc-9.8.1-aarch64-darwin.tar.xz
|
||||
dlSubdir: ghc-9.8.1-aarch64-apple-darwin
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-aarch64-apple-darwin.tar.xz
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlHash: aab7af72614f8bf9ca624407aa4dbc69bc009c2b4cc1a0f3c062008db81bdb95
|
||||
dlOutput: ghc-9.8.1-aarch64-linux-deb10.tar.xz
|
||||
dlSubdir: ghc-9.8.1-aarch64-unknown-linux
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-aarch64-deb10-linux.tar.xz
|
||||
viChangeLog: https://downloads.haskell.org/~ghc/9.8.1/docs/users_guide/9.8.1-notes.html
|
||||
viReleaseDay: '2023-10-09'
|
||||
viSourceDL:
|
||||
dlHash: b2f8ed6b7f733797a92436f4ff6e088a520913149c9a9be90465b40ad1f20751
|
||||
dlOutput: ghc-9.8.1-src.tar.xz
|
||||
dlSubdir: ghc-9.8.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-src.tar.xz
|
||||
viTags:
|
||||
- Latest
|
||||
- base-4.19.0.0
|
||||
viTestDL:
|
||||
dlHash: 2626f3bb974428cbb795c5433017e18088f0d8de8a66d5a23ff4776847a5bec3
|
||||
dlOutput: ghc-9.8.1-testsuite.tar.xz
|
||||
dlSubdir: ghc-9.8.1
|
||||
dlUri: https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-src.tar.xz
|
||||
|
||||
Cabal:
|
||||
2.4.1.0:
|
||||
viTags:
|
||||
@@ -4264,7 +4024,9 @@ 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
|
||||
3.10.1.0:
|
||||
viTags: []
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.10.1.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
@@ -4294,142 +4056,57 @@ ghcupDownloads:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.10.1.0/cabal-install-3.10.1.0-aarch64-darwin.tar.xz
|
||||
dlHash: fdabdc4dca42688a97f2b837165af42fcfd4c111d42ddb0d4df7bbebd5c8750e
|
||||
3.10.2.0:
|
||||
viPostInstall: "cabal run is currently partially broken on Windows, please see https://github.com/haskell/cabal/issues/9334"
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.10.2.0.md
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31020-64
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-alpine3_12.tar.xz
|
||||
dlHash: b54e1cd235c47c62c03cdb9f6cf90e5fe8ae38c5e5befb9e21c8d1395f4bde05
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-31020-64
|
||||
Linux_CentOS:
|
||||
unknown_versioning: &cabal-31020-64-centos7
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-centos7.tar.xz
|
||||
dlHash: cfcdab399380dec7fedda55898bff975ac30b5d5d579433cbf8773b17c15f410
|
||||
Linux_Debian:
|
||||
' ( >= 9 && < 10)': &cabal-31020-64-debian
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-deb9.tar.xz
|
||||
dlHash: af5ce42114cf7720c37fee3238781df4c75bb74914c62e6a68833fb434e0cad7
|
||||
' ( == 10 && < 11)':
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-deb10.tar.xz
|
||||
dlHash: bdeb27c008b09c3b86f8a2768018d62a1aee02565304d123fda87ed432549418
|
||||
' ( >= 11)':
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-deb11.tar.xz
|
||||
dlHash: 9ca5625c89e8fcada02edced5048c3a3db0254e2bef1eb792d549d633222b108
|
||||
unknown_versioning: *cabal-31020-64-debian
|
||||
Linux_Fedora:
|
||||
'>= 33':
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-fedora33.tar.xz
|
||||
dlHash: 1e59dc1e1a1b33085a1789b8ddafb55026211454efe0b4e814c956ef86fe3ea5
|
||||
unknown_versioning: *cabal-31020-64-centos7
|
||||
Linux_Ubuntu:
|
||||
'< 20': &cabal-31020-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-ubuntu18_04.tar.xz
|
||||
dlHash: 7b0bb22c263ae0b43459de1995bf465560d412c12d47af011b2ac27b5d30c7aa
|
||||
'>= 20': &cabal-31020-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-linux-ubuntu20_04.tar.xz
|
||||
dlHash: c2a8048caa3dbfe021d0212804f7f2faad4df1154f1ff52bd2f3c68c1d445fe1
|
||||
unknown_versioning: *cabal-31020-64-ubuntu18
|
||||
Linux_Mint:
|
||||
'< 20': *cabal-31020-64-ubuntu18
|
||||
'>= 20': *cabal-31020-64-ubuntu20
|
||||
unknown_versioning: *cabal-31020-64-ubuntu18
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-darwin.tar.xz
|
||||
dlHash: cd64f2a8f476d0f320945105303c982448ca1379ff54b8625b79fb982b551d90
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-windows.zip
|
||||
dlHash: b09e335b2ebeafa1db5e1e5614e3e10fb37da230a36865d76646ab27b2f3f46b
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-x86_64-freebsd.tar.xz
|
||||
dlHash: 6dcd9d38a9f2101a0a3c3b74cacb2e41b8f7226f181780c0f872f2f1206dee37
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &cabal-31020-32
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-i386-linux-alpine3_12.tar.xz
|
||||
dlHash: e219d2c6446c29e09644c4f064f4b87d486871ad6f6de16f0d2fcbd8626b5a5b
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *cabal-31020-32
|
||||
Linux_Debian:
|
||||
'( >= 9 )':
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-i386-linux-deb9.tar.xz
|
||||
dlHash: 2b26d2cb67f1ba3561509fbccc30810ccc1c5032238fca00666e3dcd03e941a8
|
||||
unknown_versioning: *cabal-31020-32
|
||||
A_ARM64:
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-aarch64-darwin.tar.xz
|
||||
dlHash: d2bd336d7397cf4b76f3bb0d80dea24ca0fa047903e39c8305b136e855269d7b
|
||||
Linux_Debian:
|
||||
'( >= 10 && < 11)': &cabal-31020-arm64
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-aarch64-linux-deb10.tar.xz
|
||||
dlHash: 004ed4a7ca890fadee23f58f9cb606c066236a43e16b34be2532b177b231b06d
|
||||
'( >= 11)':
|
||||
dlUri: https://downloads.haskell.org/cabal/cabal-install-3.10.2.0/cabal-install-3.10.2.0-aarch64-linux-deb11.tar.xz
|
||||
dlHash: daa767a1b844fbc2bfa0cc14b7ba67f29543e72dd630f144c6db5a34c0d22eb1
|
||||
unknown_versioning: *cabal-31020-arm64
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: *cabal-31020-arm64
|
||||
GHCup:
|
||||
0.1.20.0:
|
||||
0.1.19.4:
|
||||
viTags:
|
||||
- Recommended
|
||||
- Latest
|
||||
viChangeLog: https://github.com/haskell/ghcup-hs/blob/master/CHANGELOG.md
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/ghcup-0.1.20.0-src.tar.gz
|
||||
dlSubdir: ghcup-0.1.20.0
|
||||
dlHash: 6ae313d135a60f08fcd4a1720ceedfcd699d58e9381346d578a548438d1ccddb
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/ghcup-0.1.19.4-src.tar.gz
|
||||
dlSubdir: ghcup-0.1.19.4
|
||||
dlHash: 5008f9e9591b61746b11e28741fee4b4e1a0801c127021d07879ebc76aa9107a
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghcup-64
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/x86_64-linux-ghcup-0.1.20.0
|
||||
dlHash: 0634ab60c659ab14dab4f73d8ee9a7fb4c4e2e959406dc74ed967781df798a3d
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/x86_64-linux-ghcup-0.1.19.4
|
||||
dlHash: c79d45273c44f13bcbd8265ef05a6bad58de1563cc54b93b8a75b7e3cdf8f44d
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/x86_64-apple-darwin-ghcup-0.1.20.0
|
||||
dlHash: 0769f4751e9ff9c625a22470349c38cfaed11d135b52dfa59320a96b6521a57b
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/x86_64-apple-darwin-ghcup-0.1.19.4
|
||||
dlHash: cbace2c55e62e16a994b798d5c350eb618789ea8e2788cc92f2f5dd185c77b38
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/x86_64-portbld-freebsd-ghcup-0.1.20.0
|
||||
dlHash: cfa22b835c2901095f227f20ffa1993a4b5ad947bff3ad301298758bc371608f
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/x86_64-portbld-freebsd-ghcup-0.1.19.4
|
||||
dlHash: 318ecd132a1e06d64b3866ad3ead521d13ddc1d9dd71738acef80ee63521f4c6
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/x86_64-mingw64-ghcup-0.1.20.0.exe
|
||||
dlHash: c2058a510977e982332ee910cc717e6776502243fc1d53d58f3a58b79ce86f43
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/x86_64-mingw64-ghcup-0.1.19.4.exe
|
||||
dlHash: 7d8a8c8b89c26f4ac95b87bb0d2c7135bd504c9830ef30bab1dffeb5d76abcf9
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghcup-64
|
||||
A_32:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &ghcup-32
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/i386-linux-ghcup-0.1.20.0
|
||||
dlHash: 99cb3e886fce5b8d880a5ff9dfe5f67f0fd812cd356db43ea38d2c7ae5cd366b
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/i386-linux-ghcup-0.1.19.4
|
||||
dlHash: fb7e501fcb2c1309257a7cd718e7dd1f906173fe8ba8ab172de31d18b0f307ae
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *ghcup-32
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/aarch64-linux-ghcup-0.1.20.0
|
||||
dlHash: 79cb967034ea20b495a7c4e99eefd2a3d4e41e964c69f50d5d626627995751e3
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/aarch64-linux-ghcup-0.1.19.4
|
||||
dlHash: 9850348d3a302f73d27a50108b611d8b66904658c1a46160f7f3bdd4c327d325
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/aarch64-apple-darwin-ghcup-0.1.20.0
|
||||
dlHash: d2068b4a58417c3cb1d90c5a30b83b33c044829a9daf18594dee3dcdf8a4d59b
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/aarch64-apple-darwin-ghcup-0.1.19.4
|
||||
dlHash: fb946e0e7affac27e39d744ea0052f0a4359c4700f8594582081c6ec18b59b0a
|
||||
A_ARM:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.20.0/armv7-linux-ghcup-0.1.20.0
|
||||
dlHash: 0e0d3db97a418847077e5f784f551ac21170caf519d6250e2be525bd120d87a0
|
||||
dlUri: https://downloads.haskell.org/~ghcup/0.1.19.4/armv7-linux-ghcup-0.1.19.4
|
||||
dlHash: 85980b3e64b5d2ce5420baa6ad5230e4df153db578b4ace238bb748158a3d5ef
|
||||
HLS:
|
||||
1.1.0:
|
||||
viTags:
|
||||
@@ -5335,7 +5012,8 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-2.1.0.0
|
||||
dlHash: dee63014af1ece4d49f88edcdd0396aaa03d1719966dc679118a725acd012060
|
||||
2.2.0.0:
|
||||
viTags: []
|
||||
viTags:
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -5429,7 +5107,8 @@ ghcupDownloads:
|
||||
dlSubdir: haskell-language-server-2.2.0.0
|
||||
dlHash: 9e7af7aace18e6d0a42640fd50e3b8ca14c4b23cefa9c3422d9ce311d8554c5e
|
||||
2.3.0.0:
|
||||
viTags: []
|
||||
viTags:
|
||||
- Latest
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
@@ -5522,103 +5201,6 @@ ghcupDownloads:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.3.0.0/haskell-language-server-2.3.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.3.0.0
|
||||
dlHash: bb16e491117b7677742ca730b741b0d8154aa3222bbaa8578d487eda5152910a
|
||||
2.4.0.0:
|
||||
viTags:
|
||||
- Latest
|
||||
- Recommended
|
||||
viChangeLog: https://github.com/haskell/haskell-language-server/blob/master/ChangeLog.md
|
||||
viPostInstall: *hls-post-install
|
||||
viSourceDL:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-src.tar.gz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 398631d6fdd7208d77c939f6142a88d88ecbbbd323ccb40199d8dfe6efde7190
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_Debian:
|
||||
'< 10': &hls-2400-64-deb9
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-deb9.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 0d3a33bb474d7517f453bbbb344fc1cb38b46c3cc72454929c0accb6d16ea77f
|
||||
'(>= 10 && < 11)': &hls-2400-64-deb10
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-deb10.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: ac26c6d8648308247929102ed4a9fccbfb8d6245aa304b741b8317556b3110a9
|
||||
unknown_versioning: &hls-2400-64-deb11
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-deb11.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 9506fa48147f80edd3b1526d02ca99f242e84dd21619119b8d8e38872783296a
|
||||
Linux_Ubuntu:
|
||||
'( >= 16 && < 19 )': &hls-2400-64-ubuntu18
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-ubuntu18.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: c2a369f3512e31ffad6791e91e75e96597137388c6bd6eb632f20bc862d4db00
|
||||
'( >= 20 && < 22 )': &hls-2400-64-ubuntu20
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-ubuntu20.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: f4fba08c5ada13d243354274adfda286e95805e85e49cf459d3ab0ca212e7070
|
||||
unknown_versioning: &hls-2400-64-ubuntu22
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-ubuntu22.04.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: c61f4e2d5f49ee28263c3d975ba62f43a71e406f6d0579921ddf15d077bed269
|
||||
Linux_Mint:
|
||||
'< 20':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-mint19.3.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: e4634ea0353e1d4300315ff1b48f0bb787602ddbc7a82e443765a577f071eb0d
|
||||
'(>= 20 && < 21)':
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-mint20.2.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 6236f2f92fea035ed2630a67b21bffd820227d54b674e3a6dfd8b0c96201979a
|
||||
'>= 21': *hls-2400-64-ubuntu22
|
||||
Linux_Fedora:
|
||||
'< 33': &hls-2400-64-fedora27
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-fedora27.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: f564c46a73a725b3557ed4a459d76ada2f50aa82841bb47e21179649362928d9
|
||||
'>= 33': &hls-2400-64-fedora33
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-fedora33.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 03330ed40f733d985a51abab3640d3dc887186c0c5a12823689c844dc25322f2
|
||||
unknown_versioning: *hls-2400-64-fedora27
|
||||
Linux_CentOS:
|
||||
'( >= 7 && < 8 )': &hls-2400-64-centos
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-centos7.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: a4de2a57fdc214efb85f8e976013759ddf4782034c7b4e35942adfb151e604b6
|
||||
unknown_versioning: *hls-2400-64-centos
|
||||
Linux_RedHat:
|
||||
unknown_versioning: *hls-2400-64-centos
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-linux-unknown.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 24341c64725217bfb748d640a100a4c7c6c350f7b41a5c4be871458b79b45913
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: aecb93090ded96d76a11aad3cc4849c5c00faad9491856a020218aa6083409d8
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-mingw64.zip
|
||||
dlHash: be469b863e509705a26d776c798812cc12e757a76ce6bb58c26324ef3a03ab92
|
||||
FreeBSD:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-x86_64-freebsd.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 311cb78a98ded13a4eb704bbc0d5c893775743bea2977fe635f911e21d1c0114
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-aarch64-linux-ubuntu20.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 2f7ef3e1ae1b40438e2d95218139f2e6985b3df15bc133aedab20c4686cfda20
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-2.4.0.0/haskell-language-server-2.4.0.0-aarch64-apple-darwin.tar.xz
|
||||
dlSubdir: haskell-language-server-2.4.0.0
|
||||
dlHash: 74cfa47f961ac5607055ca2f400b471a535e7b982e910e187c7c1303b048eeaf
|
||||
|
||||
Stack:
|
||||
2.5.1:
|
||||
viTags:
|
||||
@@ -5796,7 +5378,9 @@ ghcupDownloads:
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.9.3/stack-2.9.3-linux-aarch64.tar.gz
|
||||
dlHash: 161e1638da9efc56319f7225b3652ca3f339bcda9eadc7d6ce512f325b0f014a
|
||||
2.11.1:
|
||||
viTags: []
|
||||
viTags:
|
||||
- Recommended
|
||||
- Latest
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v2111---2023-05-18
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
@@ -5826,49 +5410,4 @@ ghcupDownloads:
|
||||
unknown_versioning:
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.11.1/stack-2.11.1-linux-aarch64.tar.gz
|
||||
dlHash: c7733d07ed78d6f4d82e0ebf6d260eb693c6c9df2208003d60caba69766f9c15
|
||||
2.13.1:
|
||||
viTags:
|
||||
- Recommended
|
||||
- Latest
|
||||
viChangeLog: https://github.com/commercialhaskell/stack/blob/master/ChangeLog.md#v2131---2023-09-29
|
||||
viPostInstall: *stack-post
|
||||
viArch:
|
||||
A_64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning: &stack-2131-64
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.13.1/stack-2.13.1-linux-x86_64.tar.gz
|
||||
dlHash: 45281bb2385e928916ec8bcbc7ab790ce8721bbf805f3d0752544ada22ad5ea3
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.13.1/stack-2.13.1-osx-x86_64.tar.gz
|
||||
dlHash: b7d46382edb17230d21943844550d3aaeacee8b6fb1fcc7980ca59bee500b2a5
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
Windows:
|
||||
unknown_versioning:
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.13.1/stack-2.13.1-windows-x86_64.tar.gz
|
||||
dlHash: 728be2371e257c6960341167192fa704ff1f92ab61657dd4781710a257fae7c1
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
# FreeBSD:
|
||||
# unknown_versioning:
|
||||
# dlUri: https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.13.1/stack-2.13.1-freebsd-x86_64.tar.xz
|
||||
# dlHash: <replace_me>
|
||||
Linux_Alpine:
|
||||
unknown_versioning: *stack-2131-64
|
||||
A_ARM64:
|
||||
Linux_UnknownLinux:
|
||||
unknown_versioning:
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.13.1/stack-2.13.1-linux-aarch64.tar.gz
|
||||
dlHash: 37b1dbf39131eea629a6e3685fd1153fdfd2f0cd2179db92bb33784987b4ddb8
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
Darwin:
|
||||
unknown_versioning:
|
||||
dlUri: https://github.com/commercialhaskell/stack/releases/download/v2.13.1/stack-2.13.1-osx-aarch64.tar.gz
|
||||
dlHash: 18ececd7112b1aad01ab0f88cb68ae63f2dc74aa9b8b5319828979f43cba9907
|
||||
dlSubdir:
|
||||
RegexDir: "stack-.*"
|
||||
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -1343,93 +1343,5 @@
|
||||
"9.6.3"
|
||||
]
|
||||
}
|
||||
},
|
||||
"2.4.0.0": {
|
||||
"A_64": {
|
||||
"Darwin": [
|
||||
"9.0.2",
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"FreeBSD": [
|
||||
"8.10.7",
|
||||
"9.0.2",
|
||||
"9.2.5",
|
||||
"9.2.7"
|
||||
],
|
||||
"Linux_CentOS": [
|
||||
"9.0.2",
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_Debian": [
|
||||
"9.0.2",
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_Fedora": [
|
||||
"9.0.2",
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_Mint": [
|
||||
"9.0.2",
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_RedHat": [
|
||||
"9.0.2",
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_Ubuntu": [
|
||||
"9.0.2",
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_UnknownLinux": [
|
||||
"9.0.2",
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Windows": [
|
||||
"9.0.2",
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
]
|
||||
},
|
||||
"A_ARM64": {
|
||||
"Darwin": [
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
],
|
||||
"Linux_UnknownLinux": [
|
||||
"9.0.2",
|
||||
"9.2.8",
|
||||
"9.4.7",
|
||||
"9.6.3",
|
||||
"9.8.1"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user