diff options
-rw-r--r-- | openpgp.cabal | 108 |
1 files changed, 107 insertions, 1 deletions
diff --git a/openpgp.cabal b/openpgp.cabal index 83f0de2..c20f6fc 100644 --- a/openpgp.cabal +++ b/openpgp.cabal | |||
@@ -34,7 +34,94 @@ description: | |||
34 | > import qualified Data.OpenPGP.Crypto as OpenPGP | 34 | > import qualified Data.OpenPGP.Crypto as OpenPGP |
35 | 35 | ||
36 | extra-source-files: | 36 | extra-source-files: |
37 | README | 37 | README, |
38 | tests/suite.hs, | ||
39 | tests/data/000001-006.public_key, | ||
40 | tests/data/000002-013.user_id, | ||
41 | tests/data/000003-002.sig, | ||
42 | tests/data/000004-012.ring_trust, | ||
43 | tests/data/000005-002.sig, | ||
44 | tests/data/000006-012.ring_trust, | ||
45 | tests/data/000007-002.sig, | ||
46 | tests/data/000008-012.ring_trust, | ||
47 | tests/data/000009-002.sig, | ||
48 | tests/data/000010-012.ring_trust, | ||
49 | tests/data/000011-002.sig, | ||
50 | tests/data/000012-012.ring_trust, | ||
51 | tests/data/000013-014.public_subkey, | ||
52 | tests/data/000014-002.sig, | ||
53 | tests/data/000015-012.ring_trust, | ||
54 | tests/data/000016-006.public_key, | ||
55 | tests/data/000017-002.sig, | ||
56 | tests/data/000018-012.ring_trust, | ||
57 | tests/data/000019-013.user_id, | ||
58 | tests/data/000020-002.sig, | ||
59 | tests/data/000021-012.ring_trust, | ||
60 | tests/data/000022-002.sig, | ||
61 | tests/data/000023-012.ring_trust, | ||
62 | tests/data/000024-014.public_subkey, | ||
63 | tests/data/000025-002.sig, | ||
64 | tests/data/000026-012.ring_trust, | ||
65 | tests/data/000027-006.public_key, | ||
66 | tests/data/000028-002.sig, | ||
67 | tests/data/000029-012.ring_trust, | ||
68 | tests/data/000030-013.user_id, | ||
69 | tests/data/000031-002.sig, | ||
70 | tests/data/000032-012.ring_trust, | ||
71 | tests/data/000033-002.sig, | ||
72 | tests/data/000034-012.ring_trust, | ||
73 | tests/data/000035-006.public_key, | ||
74 | tests/data/000036-013.user_id, | ||
75 | tests/data/000037-002.sig, | ||
76 | tests/data/000038-012.ring_trust, | ||
77 | tests/data/000039-002.sig, | ||
78 | tests/data/000040-012.ring_trust, | ||
79 | tests/data/000041-017.attribute, | ||
80 | tests/data/000042-002.sig, | ||
81 | tests/data/000043-012.ring_trust, | ||
82 | tests/data/000044-014.public_subkey, | ||
83 | tests/data/000045-002.sig, | ||
84 | tests/data/000046-012.ring_trust, | ||
85 | tests/data/000047-005.secret_key, | ||
86 | tests/data/000048-013.user_id, | ||
87 | tests/data/000049-002.sig, | ||
88 | tests/data/000050-012.ring_trust, | ||
89 | tests/data/000051-007.secret_subkey, | ||
90 | tests/data/000052-002.sig, | ||
91 | tests/data/000053-012.ring_trust, | ||
92 | tests/data/000054-005.secret_key, | ||
93 | tests/data/000055-002.sig, | ||
94 | tests/data/000056-012.ring_trust, | ||
95 | tests/data/000057-013.user_id, | ||
96 | tests/data/000058-002.sig, | ||
97 | tests/data/000059-012.ring_trust, | ||
98 | tests/data/000060-007.secret_subkey, | ||
99 | tests/data/000061-002.sig, | ||
100 | tests/data/000062-012.ring_trust, | ||
101 | tests/data/000063-005.secret_key, | ||
102 | tests/data/000064-002.sig, | ||
103 | tests/data/000065-012.ring_trust, | ||
104 | tests/data/000066-013.user_id, | ||
105 | tests/data/000067-002.sig, | ||
106 | tests/data/000068-012.ring_trust, | ||
107 | tests/data/000069-005.secret_key, | ||
108 | tests/data/000070-013.user_id, | ||
109 | tests/data/000071-002.sig, | ||
110 | tests/data/000072-012.ring_trust, | ||
111 | tests/data/000073-017.attribute, | ||
112 | tests/data/000074-002.sig, | ||
113 | tests/data/000075-012.ring_trust, | ||
114 | tests/data/000076-007.secret_subkey, | ||
115 | tests/data/000077-002.sig, | ||
116 | tests/data/000078-012.ring_trust, | ||
117 | tests/data/pubring.gpg, | ||
118 | tests/data/secring.gpg, | ||
119 | tests/data/compressedsig.gpg, | ||
120 | tests/data/msg1.asc, | ||
121 | tests/data/uncompressed-ops-rsa.gpg, | ||
122 | tests/data/uncompressed-ops-dsa.gpg, | ||
123 | tests/data/uncompressed-ops-dsa-sha384.txt.gpg, | ||
124 | tests/data/encryption.gpg | ||
38 | 125 | ||
39 | library | 126 | library |
40 | exposed-modules: | 127 | exposed-modules: |
@@ -54,6 +141,25 @@ library | |||
54 | bzlib, | 141 | bzlib, |
55 | Crypto | 142 | Crypto |
56 | 143 | ||
144 | test-suite tests | ||
145 | type: exitcode-stdio-1.0 | ||
146 | main-is: tests/suite.hs | ||
147 | |||
148 | build-depends: | ||
149 | base == 4.*, | ||
150 | containers, | ||
151 | bytestring, | ||
152 | utf8-string, | ||
153 | binary, | ||
154 | zlib, | ||
155 | bzlib, | ||
156 | Crypto, | ||
157 | HUnit, | ||
158 | QuickCheck >= 2.4.1.1, | ||
159 | test-framework, | ||
160 | test-framework-hunit, | ||
161 | test-framework-quickcheck2 | ||
162 | |||
57 | source-repository head | 163 | source-repository head |
58 | type: git | 164 | type: git |
59 | location: git://github.com/singpolyma/OpenPGP-Haskell.git | 165 | location: git://github.com/singpolyma/OpenPGP-Haskell.git |