-
Notifications
You must be signed in to change notification settings - Fork 0
/
audidoza.cabal
143 lines (124 loc) · 6.1 KB
/
audidoza.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
name: audidoza
version: 0.1.0.0
synopsis: Auditing of object trees.
author: Andrea Falconi
cabal-version: >= 1.8
build-type: Simple
Flag dev
Description: Turn on development settings, like auto-reload templates.
Default: False
Flag library-only
Description: Build for use with "yesod devel"
Default: False
library
hs-source-dirs: ., app
-- Css generation
other-modules: Css.DiffTree, Css.FontIcon, Css.Images
-- Audit library
other-modules: BaseImport, RouteTypes
other-modules: Audit.ContentHistory, Audit.EditAction, Audit.ObjectHistory, Audit.VersionedChange
other-modules: Db.AcidTypes, Db.AuditStore, Db.HistoryQueries, Db.HistoryUpdates
other-modules: Diff.Content, Diff.DiffTree, Diff.ObjectTree
other-modules: ExtRep.DiffTreeToHtml, ExtRep.XmlToObjectEdit, ExtRep.XmlToObjectTree
other-modules: Util.EntityKey, Util.Hxt, Util.List, Util.Match, Util.SequentialId, Util.Time
-- Yesod scaffolding
exposed-modules: Application, Foundation, Import, Settings, Settings.StaticFiles,
Settings.Development
exposed-modules: Handler.Home
-- Audit Service hooks into Yesod
exposed-modules: AppInit
-- Audit Service handlers implementation in Yesod
exposed-modules: Handler.Service.Audits, Handler.Service.HistoryLine, Handler.Service.Keys,
Handler.Service.Raw, Handler.Service.Version
-- Audit Site handlers implementation in Yesod
exposed-modules: Handler.Site.Keys, Handler.Site.HistoryLine, Handler.Site.Layout,
Handler.Site.Raw, Handler.Site.Version
if flag(dev) || flag(library-only)
cpp-options: -DDEVELOPMENT
ghc-options: -Wall -O0 -fno-warn-orphans -fno-warn-missing-signatures
else
ghc-options: -Wall -O2 -fno-warn-orphans -fno-warn-missing-signatures
-- NOTE: Added -fno-warn-orphans to get rid of 'orphan instance' warning; consider fixing
-- orphan instances instead.
-- See:
-- * http://www.haskell.org/haskellwiki/Orphan_instance
-- * http://stackoverflow.com/questions/3079537/orphaned-instances-in-haskell
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
EmptyDataDecls
NoMonomorphismRestriction
DeriveDataTypeable
-- additional estensions required by the audit lib in app/
UnicodeSyntax
ConstraintKinds
TypeSynonymInstances
FlexibleInstances
StandaloneDeriving
DataKinds
build-depends: base >= 4 && < 5
, yesod >= 1.2.5 && < 1.3
, yesod-core >= 1.2.12 && < 1.3
, yesod-auth >= 1.3 && < 1.4
, yesod-static >= 1.2 && < 1.3
, yesod-form >= 1.3 && < 1.4
, yesod-routes >= 1.2 && < 1.3
, bytestring >= 0.9 && < 0.11
, text >= 0.11 && < 2.0
, template-haskell
, shakespeare >= 2.0 && < 2.1
, hjsmin >= 0.1 && < 0.2
, monad-control >= 0.3 && < 0.4
, wai-extra >= 3.0 && < 3.1
, yaml >= 0.8 && < 0.9
, http-conduit >= 2.1 && < 2.2
, directory >= 1.1 && < 1.3
, warp >= 3.0 && < 3.1
, data-default
, aeson >= 0.6 && < 0.9
, conduit >= 1.0 && < 2.0
, monad-logger >= 0.3 && < 0.4
, fast-logger >= 2.1.4 && < 2.3
, wai-logger >= 2.1 && < 2.3
-- additional deps required by audit lib in app/
, base-unicode-symbols >= 0.2 && < 0.3
, ixset-typed >= 0.2 && < 0.4
, containers >= 0.5 && < 0.6
, time >= 1.4 && < 1.5
, hxt >= 9.3 && < 9.4
, safecopy >= 0.8 && < 0.9
, acid-state >= 0.12 && < 0.13
, mtl >= 2.1 && < 2.2
, clay >= 0.9 && < 0.10
, heredoc >= 0.2 && < 0.3
, blaze-markup >= 0.6 && < 0.7
, blaze-html >= 0.7 && < 0.8
, conduit-extra >= 1.1 && < 1.2
, old-locale >= 1.0 && < 1.1
executable audidoza
if flag(library-only)
Buildable: False
main-is: main.hs
hs-source-dirs: app
build-depends: base
, audidoza
, yesod
ghc-options: -threaded -O2
test-suite test
type: exitcode-stdio-1.0
main-is: main.hs
hs-source-dirs: tests
ghc-options: -Wall
build-depends: base
, audidoza
, yesod-test >= 1.2 && < 1.3
, yesod-core
, yesod
, hspec