summaryrefslogtreecommitdiff
path: root/openpgp.cabal.old
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2016-04-14 23:13:59 -0400
committerjoe <joe@jerkface.net>2016-04-14 23:13:59 -0400
commit7f2bca77eedcd124e2fe37e900ba6b0876a4334e (patch)
tree0db7303738382345aaa3337702557fbe9664ca7e /openpgp.cabal.old
parent47fbb4b70ee6c74937ed4b55540b612aacc3de80 (diff)
Updated cabal file to build combined library.
Diffstat (limited to 'openpgp.cabal.old')
-rw-r--r--openpgp.cabal.old168
1 files changed, 168 insertions, 0 deletions
diff --git a/openpgp.cabal.old b/openpgp.cabal.old
new file mode 100644
index 0000000..c23e4ad
--- /dev/null
+++ b/openpgp.cabal.old
@@ -0,0 +1,168 @@
1name: openpgp
2version: 0.6.1.1
3cabal-version: >= 1.8
4license: OtherLicense
5license-file: COPYING
6category: Data
7copyright: © 2011-2012 Stephen Paul Weber
8author: Stephen Paul Weber <singpolyma@singpolyma.net>
9maintainer: Stephen Paul Weber <singpolyma@singpolyma.net>
10stability: experimental
11tested-with: GHC == 7.0.3
12synopsis: Implementation of the OpenPGP message format
13homepage: http://github.com/singpolyma/OpenPGP-Haskell
14bug-reports: http://github.com/singpolyma/OpenPGP-Haskell/issues
15build-type: Simple
16description:
17 This is an OpenPGP library inspired by my work on OpenPGP libraries in
18 Ruby <https://github.com/singpolyma/openpgp>,
19 PHP <http://github.com/singpolyma/openpgp-php>,
20 and Python <https://github.com/singpolyma/OpenPGP-Python>.
21 .
22 It defines types to represent OpenPGP messages as a series of packets
23 and then defines instances of Data.Binary for each to facilitate
24 encoding/decoding.
25 .
26 For performing cryptography, see
27 <http://hackage.haskell.org/package/openpgp-crypto-api> or
28 <http://hackage.haskell.org/package/openpgp-Crypto>
29 .
30 For dealing with ASCII armor, see
31 <http://hackage.haskell.org/package/openpgp-asciiarmor>
32 .
33 It is intended that you use qualified imports with this library.
34 .
35 > import qualified Data.OpenPGP as OpenPGP
36
37extra-source-files:
38 README,
39 tests/suite.hs,
40 tests/data/000001-006.public_key,
41 tests/data/000002-013.user_id,
42 tests/data/000003-002.sig,
43 tests/data/000004-012.ring_trust,
44 tests/data/000005-002.sig,
45 tests/data/000006-012.ring_trust,
46 tests/data/000007-002.sig,
47 tests/data/000008-012.ring_trust,
48 tests/data/000009-002.sig,
49 tests/data/000010-012.ring_trust,
50 tests/data/000011-002.sig,
51 tests/data/000012-012.ring_trust,
52 tests/data/000013-014.public_subkey,
53 tests/data/000014-002.sig,
54 tests/data/000015-012.ring_trust,
55 tests/data/000016-006.public_key,
56 tests/data/000017-002.sig,
57 tests/data/000018-012.ring_trust,
58 tests/data/000019-013.user_id,
59 tests/data/000020-002.sig,
60 tests/data/000021-012.ring_trust,
61 tests/data/000022-002.sig,
62 tests/data/000023-012.ring_trust,
63 tests/data/000024-014.public_subkey,
64 tests/data/000025-002.sig,
65 tests/data/000026-012.ring_trust,
66 tests/data/000027-006.public_key,
67 tests/data/000028-002.sig,
68 tests/data/000029-012.ring_trust,
69 tests/data/000030-013.user_id,
70 tests/data/000031-002.sig,
71 tests/data/000032-012.ring_trust,
72 tests/data/000033-002.sig,
73 tests/data/000034-012.ring_trust,
74 tests/data/000035-006.public_key,
75 tests/data/000036-013.user_id,
76 tests/data/000037-002.sig,
77 tests/data/000038-012.ring_trust,
78 tests/data/000039-002.sig,
79 tests/data/000040-012.ring_trust,
80 tests/data/000041-017.attribute,
81 tests/data/000042-002.sig,
82 tests/data/000043-012.ring_trust,
83 tests/data/000044-014.public_subkey,
84 tests/data/000045-002.sig,
85 tests/data/000046-012.ring_trust,
86 tests/data/000047-005.secret_key,
87 tests/data/000048-013.user_id,
88 tests/data/000049-002.sig,
89 tests/data/000050-012.ring_trust,
90 tests/data/000051-007.secret_subkey,
91 tests/data/000052-002.sig,
92 tests/data/000053-012.ring_trust,
93 tests/data/000054-005.secret_key,
94 tests/data/000055-002.sig,
95 tests/data/000056-012.ring_trust,
96 tests/data/000057-013.user_id,
97 tests/data/000058-002.sig,
98 tests/data/000059-012.ring_trust,
99 tests/data/000060-007.secret_subkey,
100 tests/data/000061-002.sig,
101 tests/data/000062-012.ring_trust,
102 tests/data/000063-005.secret_key,
103 tests/data/000064-002.sig,
104 tests/data/000065-012.ring_trust,
105 tests/data/000066-013.user_id,
106 tests/data/000067-002.sig,
107 tests/data/000068-012.ring_trust,
108 tests/data/000069-005.secret_key,
109 tests/data/000070-013.user_id,
110 tests/data/000071-002.sig,
111 tests/data/000072-012.ring_trust,
112 tests/data/000073-017.attribute,
113 tests/data/000074-002.sig,
114 tests/data/000075-012.ring_trust,
115 tests/data/000076-007.secret_subkey,
116 tests/data/000077-002.sig,
117 tests/data/000078-012.ring_trust,
118 tests/data/002182-002.sig,
119 tests/data/compressedsig-bzip2.gpg,
120 tests/data/compressedsig.gpg,
121 tests/data/compressedsig-zlib.gpg,
122 tests/data/onepass_sig,
123 tests/data/symmetrically_encrypted,
124 tests/data/pubring.gpg,
125 tests/data/secring.gpg,
126 tests/data/uncompressed-ops-dsa.gpg,
127 tests/data/uncompressed-ops-dsa-sha384.txt.gpg,
128 tests/data/uncompressed-ops-rsa.gpg
129
130library
131 exposed-modules:
132 Data.OpenPGP
133
134 other-modules:
135 Data.OpenPGP.Internal
136
137 build-depends:
138 base == 4.*,
139 bytestring,
140 utf8-string,
141 binary >= 0.5.1.0,
142 zlib,
143 bzlib
144
145test-suite tests
146 type: exitcode-stdio-1.0
147 main-is: tests/suite.hs
148
149 other-modules:
150 Data.OpenPGP.Arbitrary
151
152 build-depends:
153 base == 4.*,
154 bytestring,
155 utf8-string,
156 binary >= 0.6.4.0,
157 zlib,
158 bzlib,
159 HUnit,
160 QuickCheck >= 2.4.1.1,
161 quickcheck-instances,
162 test-framework,
163 test-framework-hunit,
164 test-framework-quickcheck2
165
166source-repository head
167 type: git
168 location: git://github.com/singpolyma/OpenPGP-Haskell.git