-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvcswrapper.cabal
More file actions
84 lines (81 loc) · 2.49 KB
/
vcswrapper.cabal
File metadata and controls
84 lines (81 loc) · 2.49 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
name: vcswrapper
version: 0.1.4
cabal-version: >=1.8
build-type: Simple
license: GPL
license-file: LICENSE
copyright: 2011 Stephan Fortelny, Harald Jagenteufel
maintainer: stephanfortelny at gmail.com, h.jagenteufel at gmail.com, hamish.k.mackenzie at gmail.com
homepage: https://github.com/forste/haskellVCSWrapper
bug-reports: https://github.com/forste/haskellVCSWrapper/issues
synopsis: Wrapper for source code management systems
description:
Provides simple haskell functions to call external source code management systems.
Currently git and SVN are supported.
category: Development
author: Stephan Fortelny, Harald Jagenteufel, Hamish Mackenzie
tested-with: GHC ==7.0
data-files:
LICENSE
README
data-dir: .
library
exposed-modules:
VCSWrapper.Common
VCSWrapper.Git
VCSWrapper.Svn
VCSWrapper.Mercurial
VCSWrapper.Git.Safe
build-depends:
base >=4.0.0.0 && <5,
containers >=0.5.5.1 && <0.9,
directory >=1.1.0.0 && <1.4,
hxt >=9.1.2 && <9.4,
mtl >=2.0.1.0 && <2.4,
parsec >=3.1.1 && <3.2,
process >=1.0.1.5 && <1.7,
filepath >=1.2.0.0 && <1.5,
split >=0.2.2 && <0.3,
text >=0.11.1.5 && <2.2
hs-source-dirs: src
other-modules:
VCSWrapper.Svn.Types
VCSWrapper.Svn.Process
VCSWrapper.Svn.Parsers
VCSWrapper.Git.Types
VCSWrapper.Git.Parsers
VCSWrapper.Common.Types
VCSWrapper.Git.Process
VCSWrapper.Mercurial.Process
VCSWrapper.Mercurial.Types
VCSWrapper.Mercurial.Parsers
VCSWrapper.Common.Process
VCSWrapper.Common.TemporaryFiles
VCSWrapper.Common.VCSMonad
executable vcswrapper
main-is: Main.hs
build-depends:
base >=4.0.0.0 && <5,
containers >=0.5.5.1 && <0.9,
directory >=1.1.0.0 && <1.4,
hxt >=9.1.2 && <9.4,
mtl >=2.0.1.0 && <2.4,
parsec >=3.1.1 && <3.2,
process >=1.0.1.5 && <1.7,
filepath >=1.2.0.0 && <1.5,
split >=0.2.2 && <0.3,
text >=0.11.1.5 && <2.2
hs-source-dirs: src
other-modules:
VCSWrapper.Svn.Types
VCSWrapper.Svn.Process
VCSWrapper.Svn.Parsers
VCSWrapper.Git.Types
VCSWrapper.Git.Parsers
VCSWrapper.Common.Types
VCSWrapper.Mercurial.Process
VCSWrapper.Mercurial.Types
VCSWrapper.Mercurial.Parsers
VCSWrapper.Common.Process
VCSWrapper.Common.TemporaryFiles
VCSWrapper.Common.VCSMonad