forked from weldr/codec-rpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodec-rpm.cabal
111 lines (94 loc) · 4.1 KB
/
codec-rpm.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
name: codec-rpm
version: 0.2.3
synopsis: A library for manipulating RPM files
description: This module provides a library for reading RPM files and converting them
into useful data structures. There is currently no way to operate in
reverse - that is, for building an RPM file out of a data structure.
homepage: https://github.com/weldr/codec-rpm
category: Distribution
author: Chris Lumens
maintainer: [email protected]
license: LGPL-2.1
license-file: LICENSE
cabal-version: 1.18
build-type: Simple
extra-source-files: ChangeLog.md,
Makefile,
README.md,
scripts/hpc-coveralls,
tests/Codec/RPM/*.hs
extra-doc-files: examples/inspect.hs,
examples/rpm2json.hs,
examples/unrpm.hs
source-repository head
type: git
location: https://github.com/weldr/codec-rpm
library
exposed-modules: Codec.RPM.Conduit,
Codec.RPM.Parse,
Codec.RPM.Tags,
Codec.RPM.Types,
Codec.RPM.Version
other-modules: Codec.RPM.Internal.Numbers
build-depends: attoparsec >= 0.12.1.4 && < 0.15,
attoparsec-binary >= 0.2 && < 0.3,
base >= 4.7 && < 5.0,
bytestring >= 0.10 && < 0.12,
conduit >= 1.2.8 && < 1.4,
conduit-extra >= 1.1.15 && < 1.4,
cpio-conduit >= 0.7.0 && < 0.8.0,
exceptions >= 0.8.3 && < 0.11.0,
lzma-conduit >= 1.1.3.3 && < 1.3,
mtl >= 2.2.1 && < 2.3,
parsec >= 3.1.11 && < 3.2,
pretty >= 1.1.2.0,
resourcet >= 1.1.9 && < 1.3,
text >= 1.2.2.0 && < 2.1
default-language: Haskell2010
default-extensions: LambdaCase,
MultiWayIf,
OverloadedStrings,
RecordWildCards
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wcompat
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: ., tests
main-is: Spec.hs
other-modules: Codec.RPM.Internal.Numbers,
Codec.RPM.Parse,
Codec.RPM.ParseSpec,
Codec.RPM.Parse_parseRPMSpec,
Codec.RPM.Tags,
Codec.RPM.Tags_TagSpec,
Codec.RPM.Tags_findSpec,
Codec.RPM.Tags_mkTagSpec,
Codec.RPM.Types,
Codec.RPM.TypesSpec,
Codec.RPM.Version,
Codec.RPM.VersionSpec
build-tool-depends: hspec-discover:hspec-discover >=2.10.0.0 && < 2.11
build-depends: HUnit >= 1.5.0.0 && < 1.7,
hspec >= 2.4.4 && < 2.11,
hspec-attoparsec >= 0.1.0.2 && < 0.2,
base >= 4.7 && < 5.0,
bytestring >= 0.10 && < 0.12,
attoparsec >= 0.12.1.4 && < 0.15,
attoparsec-binary >= 0.2 && < 0.3,
parsec >= 3.1.11 && < 3.2,
pretty >= 1.1.2.0,
text >= 1.2.2.0 && < 2.1
default-language: Haskell2010
default-extensions: LambdaCase,
MultiWayIf,
OverloadedStrings,
RecordWildCards
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wcompat
cpp-options: -DTEST