This repository has been archived by the owner on Jul 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlentille-bugzilla.cabal
91 lines (85 loc) · 3.41 KB
/
lentille-bugzilla.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
cabal-version: 2.4
name: lentille-bugzilla
version: 0.1.0.0
synopsis: Bugzilla integration for monocle
description:
lentille-bugzilla is a haskell library for Monocle.
.
Use this library to get task metadata from bugzilla.
.
homepage: https://github.com/change-metrics/lentille#readme
bug-reports: https://github.com/change-metrics/lentille/issues
license: AGPL-3.0-only
license-file: LICENSE
author: Monocle authors
maintainer: Monocle authors <[email protected]>
copyright: 2021 Monocle authors
category: Development
build-type: Simple
extra-doc-files: README.md
tested-with: GHC == 8.10.4
source-repository head
type: git
location: https://github.com/change-metrics/lentille.git
common common-options
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wincomplete-record-updates
if impl(ghc >= 8.0)
ghc-options: -Wredundant-constraints
if impl(ghc >= 8.2)
ghc-options: -fhide-source-paths
if impl(ghc >= 8.4)
ghc-options: -Wmissing-export-lists
-Wpartial-fields
if impl(ghc >= 8.10)
ghc-options: -Wunused-packages
default-language: Haskell2010
library
import: common-options
hs-source-dirs: src
build-depends: bugzilla-redhat < 0.4
, base < 5
, aeson < 1.6
, monocle
, relude > 1.0 && < 1.1
, streaming < 0.3
, time < 1.12
, vector < 0.13
exposed-modules: Lentille.Bugzilla
executable lentille-bugzilla
import: common-options
hs-source-dirs: app
main-is: Main.hs
build-depends: lentille-bugzilla
, optparse-generic < 1.5
, monocle
, relude > 1.0 && < 1.1
, streaming < 0.3
, time < 1.12
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
test-suite lentille-bugzilla-test
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test
other-modules: Lentille.BugzillaMock
main-is: Spec.hs
build-depends: base < 5
, bugzilla-redhat < 0.4
, http-types < 0.13
, lentille-bugzilla
, monocle
, network < 4
, relude > 1.0 && < 1.1
, tasty < 1.5
, tasty-hunit < 0.11
, vector < 0.13
, wai < 3.3
, warp < 3.4
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N