forked from AmpersandTarski/Ampersand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathampersand.cabal
215 lines (209 loc) · 9.25 KB
/
ampersand.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
name: ampersand
version: 3.11.1
author: Stef Joosten
maintainer: [email protected]
synopsis: Toolsuite for automated design of enterprise information systems.
description: You can define your business processes by means of rules, written in Relation Algebra.
homepage: http://ampersandtarski.github.io/
category: Database Design
stability: alpha
cabal-version: >= 2.0
tested-with: GHC == 8.2.2
build-type: Custom
license: GPL
license-file: LICENSE
copyright: Stef Joosten
bug-reports: https://github.com/AmpersandTarski/ampersand/issues
-- Recursive patterns such as static/* are not allowed in data-files. Hence we cannot use them for static files, as
-- we would need to specify a pattern for each extension in each subdirectory.
data-files:
LICENSE
custom-setup
setup-depends: base == 4.10.*,
bytestring == 0.10.*,
Cabal == 2.0.*,
directory == 1.3.*,
filepath == 1.4.*,
process == 1.6.*,
time == 1.8.*,
zlib == 0.6.*
source-repository head
type: git
location: https://github.com/AmpersandTarski/ampersand.git
library
hs-source-dirs: src
-- -threaded solves an issue compiling pandoc-crossref on ci-travis
ghc-options: -Wall
default-extensions:NoImplicitPrelude
default-language: Haskell2010
build-depends: aeson == 1.2.*,
aeson-pretty == 0.8.*,
base == 4.10.*,
bytestring == 0.10.*,
conduit == 1.3.*,
containers == 0.5.*,
data-default == 0.7.*,
directory == 1.3.*,
filepath == 1.4.*,
graphviz == 2999.19.*,
hashable == 1.2.*,
http-conduit == 2.3.*,
HStringTemplate == 0.8.*,
lens == 4.16.*,
MissingH == 1.4.*,
mtl == 2.2.*,
pandoc == 2.1.2,
pandoc-crossref == 0.3.1.0,
pandoc-types == 1.17.*,
parsec == 3.1.*,
wl-pprint == 1.2.1,
process == 1.6.*,
QuickCheck == 2.10.*,
simple-sql-parser == 0.4.3,
split == 0.2.*,
SpreadsheetML ==0.1.*,
text == 1.2.*,
time == 1.8.*,
utf8-string == 1.0.*,
yaml == 0.8.*,
yaml-config == 0.4.*,
xlsx == 0.7.*,
zip-archive,
zlib == 0.6.*
exposed-modules: Ampersand,
Ampersand.ADL1,
Ampersand.ADL1.Disambiguate,
Ampersand.ADL1.Expression,
Ampersand.ADL1.Lattices,
Ampersand.ADL1.P2A_Converters,
Ampersand.ADL1.PrettyPrinters,
Ampersand.ADL1.Rule,
Ampersand.Basics,
Ampersand.Basics.Auxiliaries,
Ampersand.Basics.BuildInfo_Generated,
Ampersand.Basics.Exit,
Ampersand.Basics.Languages,
Ampersand.Basics.PandocExtended,
Ampersand.Basics.Prelude,
Ampersand.Basics.String,
Ampersand.Basics.Unique,
Ampersand.Basics.UTF8,
Ampersand.Basics.Version,
Ampersand.Classes,
Ampersand.Classes.ConceptStructure,
Ampersand.Classes.Relational,
Ampersand.Classes.ViewPoint,
Ampersand.Components,
Ampersand.Core.A2P_Converters,
Ampersand.Core.AbstractSyntaxTree,
Ampersand.Core.ParseTree,
Ampersand.Core.ShowAStruct,
Ampersand.Core.ShowPStruct,
Ampersand.FSpec,
Ampersand.FSpec.Crud,
Ampersand.FSpec.FPA,
Ampersand.FSpec.FSpec,
Ampersand.FSpec.FSpecAux,
Ampersand.FSpec.GenerateUML,
Ampersand.FSpec.Motivations,
Ampersand.FSpec.ShowHS,
Ampersand.FSpec.ShowMeatGrinder,
Ampersand.FSpec.Transformers,
Ampersand.FSpec.SQL,
Ampersand.FSpec.ToFSpec.ADL2FSpec,
Ampersand.FSpec.ToFSpec.ADL2Plug,
Ampersand.FSpec.ToFSpec.Calc,
Ampersand.FSpec.ToFSpec.CreateFspec,
Ampersand.FSpec.ToFSpec.NormalForms,
Ampersand.FSpec.ToFSpec.Populated,
Ampersand.Graphic.ClassDiag2Dot,
Ampersand.Graphic.ClassDiagram,
Ampersand.Graphic.Fspec2ClassDiagrams,
Ampersand.Graphic.Graphics,
Ampersand.Input,
Ampersand.Input.ADL1.CtxError,
Ampersand.Input.ADL1.FilePos,
Ampersand.Input.ADL1.Lexer,
Ampersand.Input.ADL1.LexerMessage,
Ampersand.Input.ADL1.LexerMonad,
Ampersand.Input.ADL1.LexerTexts,
Ampersand.Input.ADL1.LexerToken,
Ampersand.Input.ADL1.Parser,
Ampersand.Input.ADL1.ParsingLib,
Ampersand.Input.Parsing,
Ampersand.Input.Xslx.XLSX,
Ampersand.Misc,
Ampersand.Misc.Options,
Ampersand.Output,
Ampersand.Output.FSpec2Excel,
Ampersand.Output.FSpec2Pandoc,
Ampersand.Output.FSpec2SQL,
Ampersand.Output.PandocAux,
Ampersand.Output.Population2Xlsx,
Ampersand.Output.PredLogic,
Ampersand.Output.Statistics,
Ampersand.Output.ToJSON.Concepts,
Ampersand.Output.ToJSON.Conjuncts,
Ampersand.Output.ToJSON.Interfaces,
Ampersand.Output.ToJSON.JSONutils,
Ampersand.Output.ToJSON.Populations,
Ampersand.Output.ToJSON.Relations,
Ampersand.Output.ToJSON.Roles,
Ampersand.Output.ToJSON.Rules,
Ampersand.Output.ToJSON.Settings,
Ampersand.Output.ToJSON.ToJson,
Ampersand.Output.ToJSON.Views,
Ampersand.Output.ToPandoc
Ampersand.Output.ToPandoc.ChapterConceptualAnalysis,
Ampersand.Output.ToPandoc.ChapterDataAnalysis,
Ampersand.Output.ToPandoc.ChapterDiagnosis,
Ampersand.Output.ToPandoc.ChapterFunctionPointAnalysis,
Ampersand.Output.ToPandoc.ChapterGlossary,
Ampersand.Output.ToPandoc.ChapterInterfaces,
Ampersand.Output.ToPandoc.ChapterIntroduction,
Ampersand.Output.ToPandoc.ChapterNatLangReqs,
Ampersand.Output.ToPandoc.ChapterProcessAnalysis,
Ampersand.Output.ToPandoc.ChapterSoftwareMetrics,
Ampersand.Output.ToPandoc.SharedAmongChapters,
Ampersand.Prototype.GenFrontend,
Ampersand.Prototype.PHP,
Ampersand.Prototype.ProtoUtil,
Ampersand.Prototype.StaticFiles_Generated,
Ampersand.Prototype.TableSpec,
Ampersand.Prototype.ValidateSQL,
Ampersand.Test
Ampersand.Test.Parser.ArbitraryTree,
Ampersand.Test.Parser.ParserTest,
Ampersand.Test.Parser.QuickChecks,
Ampersand.Test.Regression,
Ampersand.Test.RunAmpersand,
Ampersand.Test.TestScripts
executable ampersand
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall -threaded
default-extensions:NoImplicitPrelude
build-depends: base == 4.10.*,
ampersand
Test-Suite regression-test
type: exitcode-stdio-1.0
main-is: RegressionTest.hs
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -Wall -threaded
default-extensions:NoImplicitPrelude
build-depends: ampersand,
base == 4.10.*,
conduit == 1.3.*,
directory == 1.3.*,
filepath == 1.4.*
Test-Suite ampersand-test
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -Wall -threaded
default-extensions:NoImplicitPrelude
build-depends: ampersand,
base == 4.10.*