-
Notifications
You must be signed in to change notification settings - Fork 25
/
angel.cabal
95 lines (81 loc) · 2.88 KB
/
angel.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
Name: angel
Version: 0.6.2
License: BSD3
License-file: LICENSE
Author: Jamie Turner
Synopsis: Process management and supervision daemon
Description: @angel@ is a daemon that runs and monitors other processes. It
is similar to djb's `daemontools` or the Ruby project `god`.
.
It's goals are to keep a set of services running, and to facilitate
the easy configuration and restart of those services.
See the homepage for documentation.
Maintainer: Michael Xavier <[email protected]>
Homepage: http://github.com/MichaelXavier/Angel
Bug-Reports: http://github.com/MichaelXavier/Angel/issues
Stability: Stable
Category: System
Build-type: Simple
Extra-source-files: README.md
changelog.md
test/test_jobs/CompliantJob.hs
test/test_jobs/StubbornJob.hs
Cabal-version: >=1.8
source-repository head
type: git
location: https://github.com/MichaelXavier/Angel.git
Executable angel
Hs-Source-Dirs: src
Main-is: Angel/Main.hs
Build-depends: base >= 4.5 && < 5
Build-depends: process >= 1.2.0.0 && < 2.0
Build-depends: mtl
Build-depends: configurator >= 0.1
Build-depends: stm >= 2.0
Build-depends: containers >= 0.3
Build-depends: unordered-containers >= 0.1.4
Build-depends: unix >= 2.4
Build-depends: time >= 1.5
Build-depends: old-locale
Build-depends: text>=0.11
Build-depends: transformers
Build-depends: optparse-applicative >= 0.12
Other-modules: Angel.Files,
Angel.Config,
Angel.Data,
Angel.Job,
Angel.Prelude,
Angel.Process,
Angel.Log,
Angel.Util,
Angel.PidFile
Extensions: OverloadedStrings,ScopedTypeVariables,BangPatterns,ViewPatterns
Ghc-Options: -threaded
test-suite spec
Type: exitcode-stdio-1.0
Main-Is: Spec.hs
Hs-Source-Dirs: src, test
Other-modules: Angel.ConfigSpec
Angel.JobSpec
Angel.LogSpec
Angel.PidFileSpec
Angel.UtilSpec
SpecHelper
Build-Depends: base
Build-Depends: tasty
Build-Depends: tasty-hunit
Build-Depends: tasty-quickcheck
Build-depends: base >= 4.0 && < 5
Build-depends: process >= 1.0 && < 2.0
Build-depends: mtl
Build-depends: configurator >= 0.1
Build-depends: stm >= 2.0
Build-depends: containers >= 0.3
Build-depends: unordered-containers >= 0.1.4
Build-depends: unix >= 2.4
Build-depends: time
Build-depends: old-locale
Build-depends: text>=0.11
Build-depends: transformers
Extensions: OverloadedStrings,ScopedTypeVariables,BangPatterns,ViewPatterns
Ghc-Options: -threaded -rtsopts -with-rtsopts=-N