-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathgitit2.cabal
More file actions
160 lines (152 loc) · 6.63 KB
/
gitit2.cabal
File metadata and controls
160 lines (152 loc) · 6.63 KB
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
name: gitit2
version: 0.0.0
license: GPL
license-file: LICENSE
author: John MacFarlane
maintainer: John MacFarlane
synopsis: Next-generation version of gitit wiki server.
description: A reimplementation of gitit in Yesod. This is
a work in progress: many of gitit's features
are not yet implemented.
category: Web
stability: Experimental
cabal-version: >= 1.8
build-type: Simple
homepage: http://gitit.net
data-files: README.markdown
messages/en.msg
static/favicon.ico
static/robots.txt
static/js/bootstrap.min.js
static/js/jquery-1.7.2.min.js
static/js/jquery-ui-1.8.21.custom.min.js
static/img/logo.png
static/img/icons/feed.png
static/img/icons/folder.png
static/img/icons/page.png
static/img/glyphicons-halflings.png
static/img/glyphicons-halflings-white.png
static/css/custom.css
static/css/bootstrap.min.css
static/css/highlighting.css
static/css/print.css
static/css/screen.css
settings.yaml
data/FrontPage.page
data/Help.page
data/markup.Markdown
data/markup.RST
data/markup.HTML
data/markup.LaTeX
data/post-update
Source-repository head
type: git
location: git://github.com/jgm/gitit2.git
flag executable
description: Build the gitit executable.
default: True
flag debian-jessie
description: Use build dependencies available in Debian Jessie
default: False
manual: True
library
exposed-modules: Network.Gitit2
Network.Gitit2.Foundation
Network.Gitit2.WikiPage
Network.Gitit2.Page
other-modules: Network.Gitit2.Cache
Network.Gitit2.Handler.Atom
Network.Gitit2.Handler.Category
Network.Gitit2.Handler.Delete
Network.Gitit2.Handler.Diff
Network.Gitit2.Handler.Edit
Network.Gitit2.Handler.History
Network.Gitit2.Handler.Index
Network.Gitit2.Handler.Random
Network.Gitit2.Handler.Search
Network.Gitit2.Handler.Upload
Network.Gitit2.Handler.View
Network.Gitit2.Helper
Network.Gitit2.Import
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
EmptyDataDecls
NoMonomorphismRestriction
build-depends: base >= 4 && < 5
, yesod >= 1.2 && < 1.7
, yesod-static >= 1.2 && < 1.7
, yesod-core >= 1.2 && < 1.7
, yesod-form >= 1.3 && < 1.7
, bytestring >= 0.9 && < 0.11
, clientsession >= 0.9
, text >= 0.11 && < 1.3
, template-haskell
, hamlet >= 1.1 && < 1.4
, hjsmin >= 0.1 && < 0.3
, monad-control >= 0.3 && < 1.1
, wai-extra >= 2.1 && < 3.1
, yaml >= 0.8 && < 0.9
, conduit >= 1.0 && < 1.4
, http-conduit >= 2.0 && < 2.4
, directory >= 1.1 && < 1.4
, warp >= 2.1 && < 3.3
, filepath >= 1.3 && < 1.5
, filestore >= 0.5 && < 0.7
, utf8-string >= 0.3 && < 1.1
, blaze-html >= 0.7 && < 0.10
, blaze-markup >= 0.6 && < 0.9
, random >= 1.0 && < 1.2
, containers >= 0.4 && < 0.6
, pandoc >= 2.2 && < 2.3
, skylighting >= 0.6 && < 0.8
, xss-sanitize >= 0.3.2 && < 0.4
, yesod-newsfeed >= 1.2 && < 1.7
, time >= 1.1 && < 1.9
, syb >= 0.3 && < 0.8
, directory >= 1.1 && < 1.4
, blaze-builder >= 0.3 && < 0.5
, pandoc-types >= 1.17.2 && < 1.18
, HTTP >= 4000.2 && < 4000.4
if flag(debian-jessie)
Build-Depends: shakespeare-css >= 1.0 && < 1.2
, shakespeare-js >= 1.2 && < 1.4
, shakespeare-text >= 1.0 && < 1.2
else
Build-Depends: shakespeare >= 2.0 && < 2.1
ghc-options: -Wall -fno-warn-unused-do-bind
executable gitit2
main-is: gitit2.hs
hs-source-dirs: src
build-depends: base
, yesod
, yesod-static
, yesod-auth
, filestore
, containers
, yaml
, bytestring
, warp
, text
, filepath
, directory
, network
, http-conduit
, pandoc
, pandoc-types
, syb
, gitit2
, utf8-string
ghc-options: -Wall -threaded -fno-warn-unused-do-bind
if flag(executable)
buildable: True
else
buildable: False
other-modules: ArgParser
Config
Error