forked from sol/hpack
-
Notifications
You must be signed in to change notification settings - Fork 13
/
hpack-convert.cabal
185 lines (179 loc) · 4.71 KB
/
hpack-convert.cabal
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack
name: hpack-convert
version: 1.0.1
synopsis: Convert Cabal manifests into hpack's package.yamls
category: Development
homepage: https://github.com/yamadapc/hpack-convert#readme
bug-reports: https://github.com/yamadapc/hpack-convert/issues
maintainer: Pedro Tacla Yamada <[email protected]>
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
./test/data/cabal-init-minimal.cabal
./test/data/cabal-init-minimal.cabal.yaml
./test/data/cabal-init-with-benchmarks.cabal
./test/data/cabal-init-with-benchmarks.cabal.yaml
./test/data/cabal-init-with-conditionals-and-else.cabal
./test/data/cabal-init-with-conditionals-and-else.cabal.yaml
./test/data/cabal-init-with-conditionals-buildable.cabal
./test/data/cabal-init-with-conditionals-buildable.cabal.yaml
./test/data/cabal-init-with-conditionals-buildable2.cabal
./test/data/cabal-init-with-conditionals-buildable2.cabal.yaml
./test/data/cabal-init-with-conditionals-buildable3.cabal
./test/data/cabal-init-with-conditionals-buildable3.cabal.yaml
./test/data/cabal-init-with-conditionals-buildable4.cabal
./test/data/cabal-init-with-conditionals-buildable4.cabal.yaml
./test/data/cabal-init-with-conditionals-buildable5.cabal
./test/data/cabal-init-with-conditionals-buildable5.cabal.yaml
./test/data/cabal-init-with-conditionals.cabal
./test/data/cabal-init-with-conditionals.cabal.yaml
./test/data/cabal-init-with-dot.cabal
./test/data/cabal-init-with-dot.cabal.yaml
./test/data/cabal-init-with-executables.cabal
./test/data/cabal-init-with-executables.cabal.yaml
./test/data/cabal-init-with-tested-with.cabal
./test/data/cabal-init-with-tested-with.cabal.yaml
./test/data/cabal-init-with-tests.cabal
./test/data/cabal-init-with-tests.cabal.yaml
./test/data/ChangeLog.md
./test/data/docs/stuff
./test/data/getopt-generics.cabal
./test/data/getopt-generics.cabal.yaml
./test/data/hpack.cabal
./test/data/hpack.cabal.yaml
./test/data/LICENSE
./test/data/quoted-options.cabal
./test/data/quoted-options.cabal.yaml
source-repository head
type: git
location: https://github.com/yamadapc/hpack-convert
library
hs-source-dirs:
src
ghc-options: -Wall -fcontext-stack=100
build-depends:
base >= 4.7 && < 5
, base-compat >= 0.8
, Cabal >= 1.22
, pretty
, deepseq
, directory
, filepath
, Glob
, text
, containers
, unordered-containers >= 0.2.7.1
, yaml
, bytestring
, vector
, aeson
, split
exposed-modules:
Hpack.Convert
other-modules:
Hpack
Hpack.Config
Hpack.Convert.Run
Hpack.FormattingHints
Hpack.GenericsUtil
Hpack.Haskell
Hpack.Render
Hpack.Run
Hpack.Util
Hpack.Yaml
Paths_hpack_convert
default-language: Haskell2010
executable hpack-convert
main-is: Main.hs
hs-source-dirs:
driver
src
ghc-options: -Wall -fcontext-stack=100
build-depends:
base >= 4.7 && < 5
, base-compat >= 0.8
, Cabal >= 1.22
, pretty
, deepseq
, directory
, filepath
, Glob
, text
, containers
, unordered-containers >= 0.2.7.1
, yaml
, bytestring
, vector
, aeson
, split
other-modules:
Hpack
Hpack.Config
Hpack.Convert
Hpack.Convert.Run
Hpack.FormattingHints
Hpack.GenericsUtil
Hpack.Haskell
Hpack.Render
Hpack.Run
Hpack.Util
Hpack.Yaml
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
src
ghc-options: -Wall -fcontext-stack=100
cpp-options: -DTEST
build-depends:
base >= 4.7 && < 5
, base-compat >= 0.8
, Cabal >= 1.22
, pretty
, deepseq
, directory
, filepath
, Glob
, text
, containers
, unordered-containers >= 0.2.7.1
, yaml
, bytestring
, vector
, aeson
, split
, hspec == 2.*
, QuickCheck
, temporary
, mockery >= 0.3
, interpolate
, aeson-qq
other-modules:
Helper
Hpack.ConfigSpec
Hpack.ConvertSpec
Hpack.FormattingHintsSpec
Hpack.GenericsUtilSpec
Hpack.HaskellSpec
Hpack.RenderSpec
Hpack.RunSpec
Hpack.UtilSpec
HpackSpec
Hpack
Hpack.Config
Hpack.Convert
Hpack.Convert.Run
Hpack.FormattingHints
Hpack.GenericsUtil
Hpack.Haskell
Hpack.Render
Hpack.Run
Hpack.Util
Hpack.Yaml
default-language: Haskell2010