]> gitweb.michael.orlitzky.com - list-remote-forwards.git/blob - list-remote-forwards.cabal
list-remote-forwards.cabal: delete the redundant description
[list-remote-forwards.git] / list-remote-forwards.cabal
1 cabal-version: 3.0
2 name: list-remote-forwards
3 version: 0.0.4
4 author: Michael Orlitzky
5 maintainer: Michael Orlitzky <michael@orlitzky.com>
6 homepage: https://michael.orlitzky.com/code/list-remote-forwards.xhtml
7 license: AGPL-3.0-or-later
8 license-file: doc/LICENSE
9 bug-reports: mailto:michael@orlitzky.com
10 category: Mail, Utils
11 build-type: Simple
12 extra-source-files:
13 doc/COPYING
14 doc/list-remote-forwardsrc.example
15 doc/man1/list-remote-forwards.1
16 test/fixtures/postfixadmin.sqlite3
17 synopsis:
18 List all remote forwards for mail accounts stored in a SQL database.
19 description:
20 List all remote forwards for mail accounts stored in a SQL
21 database. A description, options, and examples can be found in the
22 man page.
23
24 executable list-remote-forwards
25 build-depends:
26 base >= 4.15 && < 5,
27 bytestring >= 0.10,
28 cmdargs >= 0.10,
29 configurator >= 0.2,
30 containers >= 0.5,
31 dns >= 1.4,
32 directory >= 1.2,
33 filepath >= 1.3,
34 HDBC >= 2.4,
35 HDBC-postgresql >= 2.3,
36 HDBC-sqlite3 >= 2.3,
37 MissingH >= 1.2,
38 tasty >= 0.8,
39 tasty-hunit >= 0.8
40
41 default-language:
42 Haskell2010
43
44 main-is:
45 Main.hs
46
47 hs-source-dirs:
48 src/
49
50 other-modules:
51 Configuration
52 CommandLine
53 DNS
54 Forward
55 MxList
56 OptionalConfiguration
57 Paths_list_remote_forwards
58 Report
59 String
60
61 autogen-modules:
62 Paths_list_remote_forwards
63
64 test-suite testsuite
65 type: exitcode-stdio-1.0
66 hs-source-dirs: src test
67 default-language: Haskell2010
68 main-is: TestSuite.hs
69
70 other-modules:
71 Configuration
72 DNS
73 Forward
74 MxList
75 OptionalConfiguration
76 Paths_list_remote_forwards
77 Report
78
79 autogen-modules:
80 Paths_list_remote_forwards
81
82 build-depends:
83 base >= 4.15 && < 5,
84 bytestring >= 0.10,
85 cmdargs >= 0.10,
86 configurator >= 0.2,
87 containers >= 0.5,
88 dns >= 1.4,
89 directory >= 1.2,
90 filepath >= 1.3,
91 HDBC >= 2.4,
92 HDBC-sqlite3 >= 2.3,
93 MissingH >= 1.2,
94 tasty >= 0.8,
95 tasty-hunit >= 0.8
96
97 test-suite doctests
98 type: exitcode-stdio-1.0
99 hs-source-dirs: test
100 default-language: Haskell2010
101 main-is: Doctests.hs
102 build-depends:
103 base >= 4.15 && < 5,
104 -- Additional test dependencies.
105 doctest >= 0.9,
106 filemanip >= 0.3.6
107
108 source-repository head
109 type: git
110 location: https://gitweb.michael.orlitzky.com/list-remote-forwards.git
111 branch: master