-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsupg.cabal
124 lines (115 loc) · 3.06 KB
/
lsupg.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
name: lsupg
version: 0.4.0.0
category: Utils
synopsis: list items in a container that can be upgraded
description:
This package implements a static executable that can be run in containers to
check for upgrades. Please see the README on GitHub at
<https://github.com/ExtremaIS/lsupg-haskell#readme>.
homepage: https://github.com/ExtremaIS/lsupg-haskell#readme
bug-reports: https://github.com/ExtremaIS/lsupg-haskell/issues
author: Travis Cardwell <[email protected]>
maintainer: Travis Cardwell <[email protected]>
copyright: Copyright (c) 2021-2024 Travis Cardwell
license: MIT
license-file: LICENSE
cabal-version: 1.24
build-type: Simple
tested-with:
GHC ==8.6.5
|| ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.8
|| ==9.4.8
|| ==9.6.5
|| ==9.8.2
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/ExtremaIS/lsupg-haskell.git
flag optparse-applicative_ge_0_18
description: Use optparse-applicative 0.18 or newer
default: False
manual: False
flag static
description: Pass -static/-pthread to ghc when linking
default: False
library
hs-source-dirs: src
exposed-modules:
LsUpg
, LsUpg.Component
, LsUpg.Component.Apk
, LsUpg.Component.Apt
, LsUpg.Component.Dnf
, LsUpg.Component.Nix
, LsUpg.Component.Pacman
other-modules:
Paths_lsupg
build-depends:
aeson >=1.4.6 && <2.3
, attoparsec >=0.13.2.3 && <0.15
, base >=4.12 && <4.20
, bytestring >=0.10.8.2 && <0.13
, cassava >=0.5.2 && <0.6
, directory >=1.3.3 && <1.4
, hashable >=1.2.7 && <1.5
, template-haskell >=2.14 && <2.22
, text >=1.2.3.1 && <2.2
, transformers >=0.5.6.2 && <0.7
, ttc >=1.1 && <1.5
, typed-process >=0.2.6 && <0.3
, unordered-containers >=0.2.10 && <0.3
, vector >=0.12.0.1 && <0.14
, yaml >=0.11.2 && < 0.12
default-language: Haskell2010
default-extensions:
OverloadedStrings
ghc-options: -Wall
executable lsupg
hs-source-dirs: app
main-is: Main.hs
other-modules:
Build
, LibOA
build-depends:
base
, lsupg
, template-haskell
, ttc
, typed-process
if flag(optparse-applicative_ge_0_18)
build-depends:
optparse-applicative >=0.18 && <0.19
, prettyprinter >=1.7.1 && <1.8
else
build-depends:
ansi-wl-pprint >=0.6.8 && <1.1
, optparse-applicative >=0.14 && <0.18
default-language: Haskell2010
ghc-options: -Wall
if flag(static)
ld-options: -static -pthread
test-suite lsupg-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
LsUpg.Component.Apk.Test
, LsUpg.Component.Apt.Test
, LsUpg.Component.Dnf.Test
, LsUpg.Component.Nix.Test
, LsUpg.Component.Pacman.Test
build-depends:
base
, bytestring
, lsupg
, tasty >=1.2 && <1.6
, tasty-hunit >=0.9 && <0.11
, text
, unordered-containers
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N