-
Notifications
You must be signed in to change notification settings - Fork 4
/
bdcs-api.cabal
175 lines (159 loc) · 7.19 KB
/
bdcs-api.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
name: bdcs-api
version: 0.1.3
synopsis: BDCS API Server
description: This module provides an API server and library component that works with the BDCS
project. It provides a web interface for clients to create, edit, and delete
blueprints; to list the contents of the content store; to request composes from
existing blueprints; and to fetch the results of composes.
homepage: https://github.com/weldr/bdcs-api
license: GPL-3
license-file: LICENSE
author: Brian C. Lane
maintainer: [email protected]
category: Network
build-type: Simple
cabal-version: >= 1.10
extra-source-files: ChangeLog.md,
Dockerfile,
Dockerfile.build,
entrypoint.sh,
Makefile,
README.tests,
tests/*.py,
tests/*.hs,
tests/mddb/*.db,
tests/mddb/bdcs-fake-bart-1.3.1-12.x86_64.rpm,
tests/mddb/bdcs-fake-homer-2.0.1-4.x86_64.rpm,
tests/mddb/bdcs-fake-lisa-1.0.0-1.x86_64.rpm,
tests/mddb/bdcs-fake-sax-3.8.1-1.x86_64.rpm,
tests/recipes/*.toml
source-repository head
type: git
location: https://github.com/weldr/bdcs-api
library
exposed-modules: BDCS.API.Compose,
BDCS.API.Config,
BDCS.API.ComposeConfig,
BDCS.API.Customization,
BDCS.API.Depsolve,
BDCS.API.Error,
BDCS.API.QueueStatus,
BDCS.API.Recipe,
BDCS.API.Recipes,
BDCS.API.Results,
BDCS.API.Server,
BDCS.API.TOMLMediaType,
BDCS.API.Utils,
BDCS.API.V0,
BDCS.API.Version,
BDCS.API.Workspace
build-depends: aeson >= 1.0.0.0 && < 1.4.0.0,
async,
base >= 4.9 && < 5.0,
bdcs >= 0.6.0,
bifunctors,
bytestring >= 0.10 && < 0.11,
concurrent-extra >= 0.7.0 && < 0.8,
cond >= 0.4.1.1 && < 0.5.0.0,
containers >= 0.5.7.1 && < 0.6,
directory >= 1.3.0.0 && < 1.4.0.0,
extra >= 1.6.0 && < 1.7.0,
filepath >= 1.4.1.1 && < 1.5.0.0,
gi-gio >= 2.0.14 && < 2.1.0,
gi-ggit >= 1.0.1 && < 1.1,
gi-glib >= 2.0.14 && < 2.1.0,
gitrev >= 1.3.1 && < 1.4,
haskell-gi-base >= 0.20.3 && < 0.22,
htoml >= 1.0.0 && < 1.1,
http-media >= 0.7.1 && < 0.8,
http-types >= 0.9.1 && < 0.10,
monad-logger >= 0.3.20.2 && < 0.3.28.2,
monad-loops >= 0.4.0 && < 0.5,
mtl >= 2.2.1 && < 2.3,
network,
persistent >= 2.7.0 && < 2.8.0,
persistent-sqlite >= 2.6.0 && < 2.7.0,
resourcet >= 1.1.9 && < 1.2,
semver >= 0.3.3 && < 0.4,
servant-options >= 0.1.0 && < 0.2,
servant-server >= 0.12 && < 0.14,
split >= 0.2.3 && < 0.3,
stm,
string-conversions >= 0.4.0 && < 0.5,
tar >= 0.5 && < 0.6,
temporary >= 1.2.0.4 && < 1.3.0.0,
text >= 1.2.2.0 && < 1.3,
time,
transformers,
unix >= 2.7.2.1 && < 2.8.0.0,
uuid >= 1.2.6 && < 1.4,
wai >= 3.2.1 && < 3.3,
wai-cors >= 0.2.5 && < 0.3,
warp >= 3.2.11 && < 3.3
pkgconfig-depends: libgit2-glib-1.0 >= 0.26.2
other-modules: Paths_bdcs_api
hs-source-dirs: src
default-language: Haskell2010
default-extensions: LambdaCase,
MultiWayIf,
OverloadedStrings,
RecordWildCards
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wcompat
executable bdcs-api-server
main-is: bdcs-api-server.hs
hs-source-dirs: tools
build-depends: base >= 4.9 && < 5.0,
bdcs-api
other-modules: Cmdline
default-language: Haskell2010
default-extensions: LambdaCase,
MultiWayIf,
OverloadedStrings,
RecordWildCards
ghc-options: -threaded
-Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wcompat
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: tests
build-depends: base >= 4.9 && < 5.0,
aeson >= 1.0.0.0 && < 1.4.0.0,
bdcs >= 0.6.0,
bdcs-api,
bytestring >= 0.10 && < 0.11,
cond >= 0.4.1.1 && < 0.5.0.0,
directory >= 1.3.0.0 && < 1.4.0.0,
filepath >= 1.4.1.1 && < 1.5.0.0,
hspec == 2.*,
http-client >= 0.5.7.0 && < 0.6.0.0,
monad-loops >= 0.4.0 && < 0.5,
servant-client >= 0.12.0.1 && < 0.14.0,
servant-server >= 0.12 && < 0.14,
string-conversions >= 0.4.0 && < 0.5,
string-qq >= 0.0.2 && < 0.1.0,
temporary >= 1.2.0.4 && < 1.3.0.0,
text >= 1.2.2.0 && < 1.3,
time,
wai >= 3.2.1 && < 3.3,
warp >= 3.2.11 && < 3.3
default-language: Haskell2010
default-extensions: LambdaCase,
MultiWayIf,
OverloadedStrings,
RecordWildCards
-- Ignore warnings about unlisted modules, so we don't have to list every new test
ghc-options: -Wall
-Wno-unrecognised-warning-flags
-Wno-missing-home-modules
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wcompat