-
Notifications
You must be signed in to change notification settings - Fork 1
/
online-atps.cabal
141 lines (124 loc) · 4.66 KB
/
online-atps.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
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
-- | online-atps.cabal
name: online-atps
version: 0.1.3
build-type: Simple
cabal-version: >= 1.18
author: Jonathan Prieto-Cubides
license: MIT
license-file: LICENSE
maintainer: Jonathan Prieto-Cubides <[email protected]>
category: Logic, Theorem Provers
homepage: https://github.com/jonaprieto/online-atps
bug-reports: https://github.com/jonaprieto/online-atps/issues/
synopsis: OnlineATPs is a command-line client for TPTP World and its ATPs.
tested-with: GHC == 8.6.5
description:
This package provides an interface to use the
automatic theorem provers (ATPs) of TPTP World.
extra-source-files: README.md
data-dir: src/data
data-files: online-atps.yml
source-repository head
type: git
location: git://github.com/jonaprieto/online-atps.git
flag dev
description: when develop takes places.
default: False
manual: True
executable online-atps
main-is: Main.hs
hs-source-dirs: src
include-dirs: src/OnlineATPs
default-language: Haskell2010
build-depends: aeson >= 1.0.1.0 && <= 1.4
, base >= 4.6.0.1 && <= 4.13
, bytestring >= 0.10.0.2 && < 0.11
, directory >= 1.2.0.1 && < 1.4
, filepath >= 1.3.0.1 && < 1.5
, HTTP >= 4000 && < 5000
, http-client >= 0.5.1 && < 1.0
, mtl >= 2.2.1 && < 2.3
, network >= 2.6.0 && < 3.0
, pretty >= 1.1.1.0 && < 1.1.1.2 || >= 1.1.2 && < 1.2
, pretty-show >= 1.6.12 && <= 2.0
, split >= 0.2 && < 1.0
, tagsoup >= 0.14 && < 1.0
, text >= 0.11.3.1 && < 1.3
, unordered-containers >= 0.2 && < 0.3
, yaml >= 0.8.17 && < 0.9
other-modules:
OnlineATPs.CheckOutput
OnlineATPs.Consult
OnlineATPs.Defaults
OnlineATPs.Options
OnlineATPs.SystemATP
OnlineATPs.SystemOnTPTP
OnlineATPs.Urls
OnlineATPs.Utils.Monad
OnlineATPs.Utils.PrettyPrint
OnlineATPs.Utils.Show
OnlineATPs.Utils.Version
OnlineATPs.Utils.Yaml
Paths_online_atps
if impl(ghc >= 7.6)
ghc-options: -fwarn-alternative-layout-rule-transitional
-- The above option isn't documented in GHC 7.10.1.
-fwarn-deprecated-flags
-fwarn-dodgy-exports
-fwarn-dodgy-foreign-imports
-fwarn-dodgy-imports
-fwarn-duplicate-exports
-fwarn-hi-shadowing
-fwarn-identities
-fwarn-incomplete-patterns
-fwarn-incomplete-record-updates
-fwarn-incomplete-uni-patterns
-fwarn-missing-fields
-fwarn-missing-methods
-fwarn-missing-signatures
-fwarn-monomorphism-restriction
-fwarn-name-shadowing
-fwarn-orphans
-fwarn-overlapping-patterns
-fwarn-tabs
-fwarn-type-defaults
-fwarn-unrecognised-pragmas
-fwarn-unused-binds
-fwarn-unused-do-bind
-fwarn-unused-imports
-fwarn-unused-matches
-fwarn-unsupported-calling-conventions
-fwarn-warnings-deprecations
-fwarn-wrong-do-bind
if impl(ghc >= 7.8)
ghc-options: -fwarn-empty-enumerations
-fwarn-inline-rule-shadowing
-fwarn-overflowed-literals
-fwarn-typed-holes
-fwarn-unsupported-llvm-version
if impl(ghc >= 7.10)
ghc-options: -fwarn-deriving-typeable
-fwarn-unticked-promoted-constructors
if impl(ghc >= 7.6) && impl(ghc < 8.0)
ghc-options: -fwarn-missing-local-sigs
-- This option will be removed in GHC 8.0.1.
-fwarn-pointless-pragmas
-- This option will be deprected in GHC 8.0.1.
if impl(ghc >= 7.8) && impl(ghc < 8.0)
ghc-options: -fwarn-duplicate-constraints
-- This option will be deprected in GHC 8.0.1.
if impl(ghc >= 7.10) && impl(ghc < 8.0)
ghc-options: -fwarn-context-quantification
if impl(ghc >= 8.0)
ghc-options: -Wmissing-local-signatures
-Wmissing-monadfail-instances
-Wmissing-pattern-synonym-signatures
-Wnoncanonical-monad-instances
-Wnoncanonical-monoid-instances
-Wredundant-constraints
-Wsemigroup
-Wunrecognised-warning-flags
-Wunused-foralls
if flag(dev) && impl(ghc >= 8.0)
ghc-options: -w
-Werror