Skip to content

Backport #10895: Preflight checks #10897

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions Cabal-hooks/Cabal-hooks.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
cabal-version: 2.2
name: Cabal-hooks
version: 3.16
copyright: 2023, Cabal Development Team
license: BSD-3-Clause
license-file: LICENSE
author: Cabal Development Team <[email protected]>
maintainer: [email protected]
homepage: http://www.haskell.org/cabal/
bug-reports: https://github.com/haskell/cabal/issues
synopsis: API for the Hooks build-type
description:
User-facing API for the Hooks build-type.
category: Distribution
build-type: Simple

extra-doc-files:
README.md CHANGELOG.md

source-repository head
type: git
location: https://github.com/haskell/cabal/
subdir: Cabal-hooks

library
default-language: Haskell2010
hs-source-dirs: src

build-depends:
, Cabal-syntax >= 3.15 && < 3.17
, Cabal >= 3.15 && < 3.17
, base >= 4.13 && < 5
, containers >= 0.5.0.0 && < 0.9
, transformers >= 0.5.6.0 && < 0.7

ghc-options: -Wall -fno-ignore-asserts -Wtabs -Wincomplete-uni-patterns -Wincomplete-record-updates

exposed-modules:
Distribution.Simple.SetupHooks

other-extensions:
BangPatterns
CPP
DefaultSignatures
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
ExistentialQuantification
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
ImplicitParams
KindSignatures
LambdaCase
NondecreasingIndentation
OverloadedStrings
PatternSynonyms
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
Trustworthy
TypeFamilies
TypeOperators
TypeSynonymInstances
UndecidableInstances
33 changes: 33 additions & 0 deletions cabal-install/cabal-install.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ library
Distribution.Client.Win32SelfUpgrade

build-depends:
<<<<<<< HEAD
async >= 2.0 && < 2.3,
array >= 0.4 && < 0.6,
base16-bytestring >= 0.1.1 && < 1.1.0.0,
Expand Down Expand Up @@ -249,6 +250,38 @@ library
regex-posix >= 0.96.0.0 && <0.97,
safe-exceptions >= 0.1.7.0 && < 0.2,
semaphore-compat >= 1.0.0 && < 1.1
=======
, async >= 2.0 && < 2.3
, array >= 0.4 && < 0.6
, base16-bytestring >= 0.1.1 && < 1.1
, binary >= 0.7.3 && < 0.9
, bytestring >= 0.10.6.0 && < 0.13
, containers >= 0.5.6.2 && < 0.9
, cryptohash-sha256 >= 0.11 && < 0.12
, directory >= 1.3.7.0 && < 1.4
, echo >= 0.1.3 && < 0.2
, edit-distance >= 0.2.2 && < 0.3
, exceptions >= 0.10.4 && < 0.11
, filepath >= 1.4.0.0 && < 1.6
, HTTP >= 4000.1.5 && < 4000.5
, mtl >= 2.0 && < 2.4
, network-uri >= 2.6.0.2 && < 2.7
, pretty >= 1.1 && < 1.2
, process >= 1.2.3.0 && < 1.7
, random >= 1.2 && < 1.4
, stm >= 2.0 && < 2.6
, tar >= 0.5.0.3 && < 0.7
, time >= 1.5.0.1 && < 1.15
, zlib >= 0.5.3 && < 0.8
, hackage-security >= 0.6.2.0 && < 0.7
, text >= 1.2.3 && < 1.3 || >= 2.0 && < 2.2
, parsec >= 3.1.13.0 && < 3.2
, open-browser >= 0.2.1.0 && < 0.4
, regex-base >= 0.94.0.0 && <0.95
, regex-posix >= 0.96.0.0 && <0.97
, safe-exceptions >= 0.1.7.0 && < 0.2
, semaphore-compat >= 1.0.0 && < 1.1
>>>>>>> f18cd2e26 (Remove trailing zeroes from dependency)

if flag(native-dns)
if os(windows)
Expand Down
Loading