-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstaversion.cabal
150 lines (142 loc) · 7.12 KB
/
staversion.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
142
143
144
145
146
147
148
149
150
name: staversion
version: 0.2.4.3
author: Toshio Ito <[email protected]>
maintainer: Toshio Ito <[email protected]>
license: BSD3
license-file: LICENSE
synopsis: What version is the package X in stackage lts-Y.ZZ?
description: A command-line tool to look for version numbers for Haskell packages in specific stackage resolvers. See README.md
category: Development
cabal-version: >= 1.10
build-type: Simple
extra-source-files: README.md, ChangeLog.md,
-- Cabal's wild-card (*) doesn't match periods (.)
test/data/build_plan_v1/conpact_build_plan.yaml,
test/data/build_plan_v1/lts-7.0_conpact.yaml,
test/data/build_plan_v1/lts-4.2.yaml,
test/data/build_plan_v1/lts-2.22_conpact.yaml,
test/data/build_plan_ghc/pkg_versions.txt,
test/data/build_plan_pantry/lts/4/2.yaml,
test/data/build_plan_pantry/lts/15/3.yaml,
test/data/snapshots.json,
test/data/aeson_preferred.json,
test/data/doctest.cabal_test,
test/data/conduit.cabal_test,
test/data/foobar.cabal_test,
test/data/braces.cabal_test,
test/data/stack/simple.cabal,
test/data/stack/stack_complex_packages.yaml,
test/data/stack/foo/foo.cabal,
test/data/stack/bar/bar.cabal,
test/data/stack/stack_multi.yaml,
test/data/stack/stack_sample.yaml,
test/data/stack/stack_empty_packages.yaml
homepage: https://github.com/debug-ito/staversion
bug-reports: https://github.com/debug-ito/staversion/issues
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall -fno-warn-unused-imports
default-extensions: OverloadedStrings
other-extensions: CPP, DeriveDataTypeable, TupleSections, DeriveGeneric
exposed-modules: Staversion.Internal.BuildPlan,
Staversion.Internal.BuildPlan.BuildPlanMap,
Staversion.Internal.BuildPlan.Stackage,
Staversion.Internal.BuildPlan.Hackage,
Staversion.Internal.BuildPlan.Version,
Staversion.Internal.BuildPlan.V1,
Staversion.Internal.BuildPlan.Pantry,
Staversion.Internal.BuildPlan.Core,
Staversion.Internal.Query,
Staversion.Internal.Result,
Staversion.Internal.Cabal,
Staversion.Internal.Command,
Staversion.Internal.Log,
Staversion.Internal.Exec,
Staversion.Internal.Format,
Staversion.Internal.Aggregate,
Staversion.Internal.Version,
Staversion.Internal.StackConfig
other-modules: Paths_staversion,
Staversion.Internal.BuildPlan.Parser,
Staversion.Internal.HTTP,
Staversion.Internal.Megaparsec,
Staversion.Internal.EIO
build-depends: base >=4.8 && <4.20,
unordered-containers >=0.2.3 && <0.3,
hashable >=1.2.6.1 && <1.5,
aeson >=0.8.0 && <2.3,
text >=0.11.3 && <2.2,
bytestring >=0.10.0 && <0.13,
yaml >=0.8.3 && <0.12,
filepath >=1.3.0 && <1.5,
directory >=1.2.0 && <1.4,
optparse-applicative >=0.11.0 && <0.19,
containers >=0.5.5 && <0.8,
http-client >=0.4.18 && <0.8,
http-client-tls >=0.2.2 && <0.4,
http-types >=0.8.6 && <0.13,
transformers >=0.3.0 && <0.7,
transformers-compat >=0.4.0 && <0.8,
megaparsec >=4.2.0 && <9.7,
semigroups >=0.18.0.1 && <0.21,
Cabal >=1.22.6.0 && <3.11,
pretty >=1.1.2.0 && <1.2,
ansi-wl-pprint >=0.6.7.3 && <1.1,
process >=1.2.3.0 && <1.7
executable staversion
default-language: Haskell2010
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -fno-warn-unused-imports -rtsopts -threaded "-with-rtsopts=-N"
-- other-modules:
-- default-extensions:
-- other-extensions:
build-depends: base, staversion
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -Wall -fno-warn-unused-imports -fno-warn-orphans "-with-rtsopts=-M512m"
main-is: Spec.hs
default-extensions: OverloadedStrings, QuasiQuotes
-- other-extensions:
other-modules: Staversion.Internal.BuildPlanSpec,
Staversion.Internal.BuildPlan.StackageSpec,
Staversion.Internal.BuildPlan.HackageSpec,
Staversion.Internal.BuildPlan.VersionSpec,
Staversion.Internal.BuildPlan.CoreSpec,
Staversion.Internal.BuildPlan.PantrySpec,
Staversion.Internal.StackConfigSpec,
Staversion.Internal.ExecSpec,
Staversion.Internal.FormatSpec,
Staversion.Internal.CabalSpec,
Staversion.Internal.AggregateSpec,
Staversion.Internal.CommandSpec,
Staversion.Internal.TestUtil
build-tool-depends: hspec-discover:hspec-discover
build-depends: base, staversion, text, filepath, bytestring,
Cabal, semigroups, unordered-containers,
hspec >=2.1.7,
QuickCheck >=2.8.1 && <2.15,
heredoc >=0.2.0.0 && <0.3
flag network-test
description: Enable network tests.
default: False
test-suite network-test
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -Wall -fno-warn-unused-imports -fno-warn-orphans "-with-rtsopts=-M512m"
main-is: NetworkTest.hs
default-extensions: OverloadedStrings
if !flag(network-test)
buildable: False
-- other-extensions:
other-modules: Staversion.Internal.TestUtil
build-depends: base, staversion, http-client, http-client-tls, bytestring, Cabal,
unordered-containers, text,
hspec
source-repository head
type: git
location: https://github.com/debug-ito/staversion.git