]> gitweb.michael.orlitzky.com - dead/htsn-import.git/blob - htsn-import.cabal
Get pickling (but not insertion) working for TSN.News.
[dead/htsn-import.git] / htsn-import.cabal
1 name: htsn-import
2 version: 0.0.1
3 cabal-version: >= 1.8
4 author: Michael Orlitzky
5 maintainer: Michael Orlitzky <michael@orlitzky.com>
6 category: Utils
7 license: GPL-3
8 license-file: doc/LICENSE
9 build-type: Simple
10 synopsis:
11 Import XML files from The Sports Network into an RDBMS.
12 description:
13 Import XML files from The Sports Network into an RDBMS.
14
15 executable htsn-import
16 build-depends:
17 base == 4.*,
18 cmdargs >= 0.10.6,
19 configurator == 0.2.*,
20 directory == 1.2.*,
21 filepath == 1.3.*,
22 hslogger == 1.2.*,
23 htsn-common == 0.0.1,
24 hxt == 9.3.*,
25 groundhog == 0.4.*,
26 groundhog-postgresql == 0.4.*,
27 groundhog-sqlite == 0.4.*,
28 groundhog-th == 0.4.*,
29 MissingH == 1.2.*,
30 old-locale == 1.0.*,
31 tasty == 0.7.*,
32 tasty-hunit == 0.4.*,
33 time == 1.4.*,
34 transformers == 0.3.*,
35 tuple == 0.2.*
36
37 main-is:
38 Main.hs
39
40 hs-source-dirs:
41 src/
42
43 ghc-options:
44 -Wall
45 -fwarn-hi-shadowing
46 -fwarn-missing-signatures
47 -fwarn-name-shadowing
48 -fwarn-orphans
49 -fwarn-type-defaults
50 -fwarn-tabs
51 -fwarn-incomplete-record-updates
52 -fwarn-monomorphism-restriction
53 -fwarn-unused-do-bind
54 -rtsopts
55 -threaded
56 -optc-O3
57 -optc-march=native
58 -O2
59
60 ghc-prof-options:
61 -prof
62 -auto-all
63 -caf-all
64
65
66 test-suite testsuite
67 type: exitcode-stdio-1.0
68 hs-source-dirs: src test
69 main-is: TestSuite.hs
70 build-depends:
71 base == 4.*,
72 cmdargs >= 0.10.6,
73 configurator == 0.2.*,
74 directory == 1.2.*,
75 filepath == 1.3.*,
76 hslogger == 1.2.*,
77 htsn-common == 0.0.1,
78 hxt == 9.3.*,
79 groundhog == 0.4.*,
80 groundhog-postgresql == 0.4.*,
81 groundhog-sqlite == 0.4.*,
82 groundhog-th == 0.4.*,
83 MissingH == 1.2.*,
84 old-locale == 1.0.*,
85 tasty == 0.7.*,
86 tasty-hunit == 0.4.*,
87 time == 1.4.*,
88 transformers == 0.3.*,
89 tuple == 0.2.*
90
91 -- It's not entirely clear to me why I have to reproduce all of this.
92 ghc-options:
93 -Wall
94 -fwarn-hi-shadowing
95 -fwarn-missing-signatures
96 -fwarn-name-shadowing
97 -fwarn-orphans
98 -fwarn-type-defaults
99 -fwarn-tabs
100 -fwarn-incomplete-record-updates
101 -fwarn-monomorphism-restriction
102 -fwarn-unused-do-bind
103 -rtsopts
104 -threaded
105 -optc-O3
106 -optc-march=native
107 -O2
108
109
110 source-repository head
111 type: git
112 location: http://michael.orlitzky.com/git/htsn-import.git
113 branch: master