-
Notifications
You must be signed in to change notification settings - Fork 0
/
literate-unitb-scripts.cabal
270 lines (228 loc) · 10 KB
/
literate-unitb-scripts.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
-- Initial literate-unitb-scripts.cabal generated by cabal init. For
-- further documentation, see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: literate-unitb-scripts
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
-- A short (one-line) description of the package.
synopsis: scripts for building and testing Literate Unit-B
-- A longer description of the package.
description: scripts for building and testing Literate Unit-B
-- The license under which the package is released.
license: MIT
-- The file containing the license text.
license-file: LICENSE
-- The package author(s).
author: Simon Hudon
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: simon.hudon@gmail.com
-- A copyright notice.
-- copyright:
category: Development
build-type: Simple
-- Extra files to be distributed with the package, such as examples or a
-- README.
-- extra-source-files:
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/unitb/literate-unitb-scripts
library
-- Modules exported by the library.
exposed-modules:
Build
-- Browser
-- Tools.BuildSystem
-- Tools.Heap
Tools.Source
Tools.Clipboard
Tools.Quote
Utilities.Directory
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
default-extensions: QuasiQuotes, OverloadedStrings, FlexibleContexts
-- Other library packages from which modules are imported.
build-depends: base >=4.8 && <5, process >=1.2 && <1.5, literate-unitb-config
, th-printf, pipes, pipes-safe, MissingH >=1.3 && <1.5, filepath >=1.4 && <1.5
, directory >=1.2 && <1.3, string-lenses, ConfigFile, either
, transformers >=0.4 && <0.6, lens, mtl >=2.2 && <2.3
-- , time >=1.5 && <1.7, containers >=0.5 && <0.6, control-invariants
ghc-options: -W -fwarn-missing-signatures
-fwarn-incomplete-uni-patterns
-fwarn-missing-methods
-fno-ignore-asserts
-fwarn-tabs
-j8
-- Directories containing source files.
hs-source-dirs: .
-- Base language which the package is written in.
default-language: Haskell2010
executable call_z3
-- .hs or .lhs file containing the Main module.
main-is: Call_z3.hs
default-language: Haskell2010
hs-source-dirs: "main"
build-depends: base >=4.8 && < 5, th-printf, process, directory, lens
ghc-options: -W -fwarn-missing-signatures
-fwarn-incomplete-uni-patterns
-fwarn-missing-methods
-threaded -fno-ignore-asserts
-fwarn-tabs
-j8
-- LANGUAGE extensions used by modules in this package.
default-extensions: TupleSections, DeriveFunctor, DeriveGeneric, DeriveFoldable, RankNTypes, MultiParamTypeClasses, GeneralizedNewtypeDeriving, TemplateHaskell, FlexibleContexts, FlexibleInstances, DeriveDataTypeable, TypeSynonymInstances, DefaultSignatures, DeriveTraversable, FunctionalDependencies, ImplicitParams, QuasiQuotes
-- executable compile
-- -- .hs or .lhs file containing the Main module.
-- main-is: Compile.hs
-- default-language: Haskell2010
-- hs-source-dirs: "main"
-- build-depends:
-- base >=4.8 && < 5
-- -- , ansi-terminal
-- -- , directory >= 1.2.2.0
-- -- , either
-- -- , filepath
-- -- , literate-unitb-scripts
-- -- , process
-- -- , shelly
-- -- , transformers >=0.3
-- ghc-options: -W -fwarn-missing-signatures
-- -fwarn-incomplete-uni-patterns
-- -fwarn-missing-methods
-- -threaded -fno-ignore-asserts
-- -fwarn-tabs
-- -j8
-- -- LANGUAGE extensions used by modules in this package.
-- default-extensions: TupleSections, DeriveFunctor, DeriveGeneric, DeriveFoldable, RankNTypes, MultiParamTypeClasses, GeneralizedNewtypeDeriving, TemplateHaskell, FlexibleContexts, FlexibleInstances, DeriveDataTypeable, TypeSynonymInstances, DefaultSignatures, DeriveTraversable, FunctionalDependencies, ImplicitParams, QuasiQuotes
executable diff_fail
-- .hs or .lhs file containing the Main module.
main-is: Diff_fail.hs
default-language: Haskell2010
hs-source-dirs: "main"
build-depends: base >=4.8 && < 5, literate-unitb-config, literate-unitb-scripts, directory >= 1.2.2.0, pipes, pipes-safe
ghc-options: -W -fwarn-missing-signatures
-fwarn-incomplete-uni-patterns
-fwarn-missing-methods
-threaded -fno-ignore-asserts
-fwarn-tabs
-j8
-- LANGUAGE extensions used by modules in this package.
default-extensions: TupleSections, DeriveFunctor, DeriveGeneric, DeriveFoldable, RankNTypes, MultiParamTypeClasses, GeneralizedNewtypeDeriving, TemplateHaskell, FlexibleContexts, FlexibleInstances, DeriveDataTypeable, TypeSynonymInstances, DefaultSignatures, DeriveTraversable, FunctionalDependencies, ImplicitParams, QuasiQuotes
executable find
-- .hs or .lhs file containing the Main module.
main-is: Find.hs
default-language: Haskell2010
build-depends: base >= 4.8, literate-unitb-scripts
hs-source-dirs: "main"
ghc-options: -W -fwarn-missing-signatures
-fwarn-incomplete-uni-patterns
-fwarn-missing-methods
-threaded -fno-ignore-asserts
-fwarn-tabs
-j8
executable find_case
-- .hs or .lhs file containing the Main module.
main-is: Find_case.hs
build-depends: base >= 4.8
, literate-unitb-config
, literate-unitb-scripts
default-language: Haskell2010
hs-source-dirs: "main"
ghc-options: -W -fwarn-missing-signatures
-fwarn-incomplete-uni-patterns
-fwarn-missing-methods
-threaded -fno-ignore-asserts
-fwarn-tabs
-j8
-- executable modulestruct
-- -- .hs or .lhs file containing the Main module.
-- main-is: ModuleStruct.hs
-- default-language: Haskell2010
-- build-depends: base >= 4.8
-- -- literate-unitb-config, literate-unitb-scripts, literate-unitb-utils, MissingH, containers
-- hs-source-dirs: "main"
-- ghc-options: -W -fwarn-missing-signatures
-- -fwarn-incomplete-uni-patterns
-- -fwarn-missing-methods
-- -threaded -fno-ignore-asserts
-- -fwarn-tabs
-- -j8
executable open_errors
-- .hs or .lhs file containing the Main module.
main-is: Open_errors.hs
default-language: Haskell2010
build-depends: base >= 4.8, directory, literate-unitb-config
hs-source-dirs: "main"
ghc-options: -W -fwarn-missing-signatures
-fwarn-incomplete-uni-patterns
-fwarn-missing-methods
-threaded -fno-ignore-asserts
-fwarn-tabs
-j8
-- executable periodic
-- -- .hs or .lhs file containing the Main module.
-- main-is: Periodic.hs
-- default-language: Haskell2010
-- build-depends: base >= 4.8, process, directory, transformers, time, literate-unitb-config, literate-unitb-scripts
-- hs-source-dirs: "main"
-- ghc-options: -W -fwarn-missing-signatures
-- -fwarn-incomplete-uni-patterns
-- -fwarn-missing-methods
-- -threaded -fno-ignore-asserts
-- -fwarn-tabs
-- -j8
executable display_errors
-- .hs or .lhs file containing the Main module.
main-is: Display_errors.hs
default-language: Haskell2010
build-depends: base >= 4.8, shelly, process, filepath, directory, mtl
, control-invariants
, literate-unitb-scripts
, transformers, containers
hs-source-dirs: "main"
ghc-options: -W -fwarn-missing-signatures
-fwarn-incomplete-uni-patterns
-fwarn-missing-methods
-threaded -fno-ignore-asserts
-fwarn-tabs
-j8
executable run_tests
-- .hs or .lhs file containing the Main module.
main-is: Run_tests.hs
hs-source-dirs: main
default-language: Haskell2010
build-depends: base >=4.8 && < 5
, directory >= 1.2.2.0
, literate-unitb-config
, literate-unitb-scripts
, mtl, process, shelly, time
ghc-options: -W -fwarn-missing-signatures
-fwarn-incomplete-uni-patterns
-fwarn-missing-methods
-threaded -fno-ignore-asserts
-fwarn-tabs
-j8
-- LANGUAGE extensions used by modules in this package.
default-extensions: TupleSections, DeriveFunctor, DeriveGeneric, DeriveFoldable, RankNTypes, MultiParamTypeClasses, GeneralizedNewtypeDeriving, TemplateHaskell, FlexibleContexts, FlexibleInstances, DeriveDataTypeable, TypeSynonymInstances, DefaultSignatures, DeriveTraversable, FunctionalDependencies, ImplicitParams, QuasiQuotes
-- executable unitb-new-project
-- -- .hs or .lhs file containing the Main module.
-- main-is: NewProject.hs
-- hs-source-dirs: main
-- default-language: Haskell2010
-- build-depends: base >=4.8 && < 5, directory >= 1.2.2.0, literate-unitb-config, literate-unitb-scripts, mtl, process, shelly, time
-- ghc-options: -W -fwarn-missing-signatures
-- -fwarn-incomplete-uni-patterns
-- -fwarn-missing-methods
-- -threaded -fno-ignore-asserts
-- -fwarn-tabs
-- -j8
-- -- LANGUAGE extensions used by modules in this package.
-- default-extensions: TupleSections, DeriveFunctor, DeriveGeneric, DeriveFoldable, RankNTypes, MultiParamTypeClasses, GeneralizedNewtypeDeriving, TemplateHaskell, FlexibleContexts, FlexibleInstances, DeriveDataTypeable, TypeSynonymInstances, DefaultSignatures, DeriveTraversable, FunctionalDependencies, ImplicitParams, QuasiQuotes