This repository was archived by the owner on Dec 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackage-head.cabal
More file actions
142 lines (136 loc) · 5.94 KB
/
stackage-head.cabal
File metadata and controls
142 lines (136 loc) · 5.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
name: stackage-head
version: 0.0.1.0
cabal-version: 1.18
tested-with: GHC==8.4.1
license: BSD3
license-file: LICENSE.md
author: Mark Karpov <mark.karpov@tweag.io>
maintainer: Mark Karpov <mark.karpov@tweag.io>
homepage: https://github.com/tweag/stackage-head
bug-reports: https://github.com/tweag/stackage-head/issues
category: Testing
synopsis: Analysis and management of results of Stackage builds
build-type: Simple
description: Analysis and management of results of Stackage builds.
extra-doc-files: CHANGELOG.md
, README.md
data-files: data/*.txt
, data/*.csv
, data/*.json
, data/per-package-logs/ALUT-0.1.0.0/*.out
source-repository head
type: git
location: https://github.com/tweag/stackage-head.git
flag dev
description: Turn on development settings.
manual: True
default: False
library
build-depends: QuickCheck >= 2.7 && < 2.12
, aeson >= 1.2 && < 1.4
, base >= 4.10 && < 5.0
, bytestring >= 0.10 && < 0.11
, cassava >= 0.5 && < 0.6
, containers >= 0.5 && < 0.6
, directory >= 1.2.5 && < 1.4
, exceptions >= 0.8 && < 0.11
, filepath >= 1.4 && < 1.5
, hashable >= 1.2 && < 1.3
, heredoc >= 0.2
, lucid >= 2.9 && < 3.0
, megaparsec >= 6.4 && < 7.0
, modern-uri >= 0.2.1 && < 0.3
, mtl >= 2.0 && < 3.0
, path >= 0.6 && < 0.7
, path-io >= 1.3 && < 1.4
, template-haskell >= 2.10 && < 2.14
, text >= 0.2 && < 1.3
, time >= 1.8 && < 2.0
, transformers >= 0.4 && < 0.6
, unordered-containers >= 0.2.8 && < 0.3
, vector >= 0.11 && < 0.13
exposed-modules: Stackage.HEAD.BuildDiff
, Stackage.HEAD.BuildInfo
, Stackage.HEAD.BuildLogs
, Stackage.HEAD.BuildResults
, Stackage.HEAD.BuildResults.Parser
, Stackage.HEAD.History
, Stackage.HEAD.Package
, Stackage.HEAD.Site
, Stackage.HEAD.Site.HTML
, Stackage.HEAD.Site.Location
, Stackage.HEAD.Site.Resource
, Stackage.HEAD.Site.Type
, Stackage.HEAD.Trac
, Stackage.HEAD.Utils
if flag(dev)
ghc-options: -Wall -Werror
else
ghc-options: -O2 -Wall
default-language: Haskell2010
test-suite tests
main-is: Spec.hs
hs-source-dirs: tests
type: exitcode-stdio-1.0
build-depends: QuickCheck >= 2.7 && < 2.12
, base >= 4.10 && < 5.0
, bytestring >= 0.10 && < 0.11
, hspec >= 2.0 && < 3.0
, hspec-megaparsec >= 1.0 && < 2.0
, megaparsec >= 6.4 && < 7.0
, stackage-head
, text >= 0.2 && < 1.3
, unordered-containers >= 0.2.8 && < 0.3
other-modules: Stackage.HEAD.BuildDiffSpec
, Stackage.HEAD.BuildResults.ParserSpec
build-tools: hspec-discover >= 2.0 && < 3.0
if flag(dev)
ghc-options: -Wall -Werror -Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wnoncanonical-monad-instances
-Wnoncanonical-monadfail-instances
else
ghc-options: -O2 -Wall
default-language: Haskell2010
executable stackage-head
main-is: Main.hs
hs-source-dirs: app/stackage-head
build-depends: aeson >= 1.2 && < 1.4
, base >= 4.10 && < 5.0
, bytestring >= 0.10 && < 0.11
, directory >= 1.2.5 && < 1.4
, filepath >= 1.4 && < 1.5
, megaparsec >= 6.4 && < 7.0
, modern-uri >= 0.2.1 && < 0.3
, optparse-applicative >= 0.14 && < 1.15
, path >= 0.6 && < 0.7
, path-io >= 1.3 && < 1.4
, stackage-head
, text >= 0.2 && < 1.3
, time >= 1.8 && < 2.0
, unordered-containers >= 0.2.8 && < 0.3
if flag(dev)
ghc-options: -Wall -Werror
else
ghc-options: -O2 -Wall
default-language: Haskell2010
executable fix-build-plan
main-is: Main.hs
hs-source-dirs: app/fix-build-plan
build-depends: base >= 4.7 && < 5.0
, Cabal
, containers >= 0.5 && < 0.6
, optparse-applicative >= 0.14 && < 1.15
, stackage-curator >= 0.16
, text >= 0.2 && < 1.3
, yaml >= 0.8 && < 0.9
if flag(dev)
ghc-options: -Wall -Werror -Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wnoncanonical-monad-instances
-Wnoncanonical-monadfail-instances
else
ghc-options: -O2 -Wall
default-language: Haskell2010