Skip to content

Commit 0fc12f7

Browse files
ffaf1mergify[bot]
authored andcommitted
Backport #10895: Preflight checks (#10899)
Move doc files to `extra-doc-files` Bump open-browser Remove trailing zeroes from dependency (cherry picked from commit f49a5fa) # Conflicts: # Cabal-hooks/Cabal-hooks.cabal
1 parent 1d84640 commit 0fc12f7

File tree

2 files changed

+70
-2
lines changed

2 files changed

+70
-2
lines changed

Cabal-hooks/Cabal-hooks.cabal

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
cabal-version: 2.2
2+
name: Cabal-hooks
3+
version: 3.14
4+
copyright: 2023, Cabal Development Team
5+
license: BSD-3-Clause
6+
license-file: LICENSE
7+
author: Cabal Development Team <[email protected]>
8+
maintainer: [email protected]
9+
homepage: http://www.haskell.org/cabal/
10+
bug-reports: https://github.com/haskell/cabal/issues
11+
synopsis: API for the Hooks build-type
12+
description:
13+
User-facing API for the Hooks build-type.
14+
category: Distribution
15+
build-type: Simple
16+
17+
extra-doc-files:
18+
README.md CHANGELOG.md
19+
20+
source-repository head
21+
type: git
22+
location: https://github.com/haskell/cabal/
23+
subdir: Cabal-hooks
24+
25+
library
26+
default-language: Haskell2010
27+
hs-source-dirs: src
28+
29+
build-depends:
30+
Cabal-syntax >= 3.14 && < 3.15,
31+
Cabal >= 3.14 && < 3.15,
32+
base >= 4.13 && < 5,
33+
containers >= 0.5.0.0 && < 0.8,
34+
transformers >= 0.5.6.0 && < 0.7
35+
36+
ghc-options: -Wall -fno-ignore-asserts -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates
37+
38+
exposed-modules:
39+
Distribution.Simple.SetupHooks
40+
41+
other-extensions:
42+
BangPatterns
43+
CPP
44+
DefaultSignatures
45+
DeriveDataTypeable
46+
DeriveFoldable
47+
DeriveFunctor
48+
DeriveGeneric
49+
DeriveTraversable
50+
ExistentialQuantification
51+
FlexibleContexts
52+
FlexibleInstances
53+
GeneralizedNewtypeDeriving
54+
ImplicitParams
55+
KindSignatures
56+
LambdaCase
57+
NondecreasingIndentation
58+
OverloadedStrings
59+
PatternSynonyms
60+
RankNTypes
61+
RecordWildCards
62+
ScopedTypeVariables
63+
StandaloneDeriving
64+
Trustworthy
65+
TypeFamilies
66+
TypeOperators
67+
TypeSynonymInstances
68+
UndecidableInstances

cabal-install/cabal-install.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ library
220220
build-depends:
221221
async >= 2.0 && < 2.3,
222222
array >= 0.4 && < 0.6,
223-
base16-bytestring >= 0.1.1 && < 1.1.0.0,
223+
base16-bytestring >= 0.1.1 && < 1.1,
224224
binary >= 0.7.3 && < 0.9,
225225
bytestring >= 0.10.6.0 && < 0.13,
226226
containers >= 0.5.6.2 && < 0.8,
@@ -244,7 +244,7 @@ library
244244
hackage-security >= 0.6.2.6 && < 0.7,
245245
text >= 1.2.3 && < 1.3 || >= 2.0 && < 2.2,
246246
parsec >= 3.1.13.0 && < 3.2,
247-
open-browser >= 0.2.1.0 && < 0.3,
247+
open-browser >= 0.2.1.0 && < 0.4,
248248
regex-base >= 0.94.0.0 && <0.95,
249249
regex-posix >= 0.96.0.0 && <0.97,
250250
safe-exceptions >= 0.1.7.0 && < 0.2,

0 commit comments

Comments
 (0)