summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2013-12-15 00:11:32 -0500
committerjoe <joe@jerkface.net>2013-12-15 00:11:32 -0500
commitc3ef10effee71d37a96db2c8bb6b7870dd104fd4 (patch)
tree84a87cada021a1bc1cb410c5414f88e948dd4e08
parent74015df96f6483d1cd541813a65fa56beb44428e (diff)
cabal packaging
-rw-r--r--COPYING14
-rw-r--r--openpgp-util.cabal51
2 files changed, 65 insertions, 0 deletions
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..ddd148e
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,14 @@
1Copyright © 2012, Stephen Paul Weber <singpolyma.net>
2Copyright © 2013, Joseph Crayne <joe@jerkface.net>
3
4Permission to use, copy, modify, and/or distribute this software for any
5purpose with or without fee is hereby granted, provided that the above
6copyright notice and this permission notice appear in all copies.
7
8THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/openpgp-util.cabal b/openpgp-util.cabal
new file mode 100644
index 0000000..8d476d2
--- /dev/null
+++ b/openpgp-util.cabal
@@ -0,0 +1,51 @@
1name: openpgp-util
2version: 0.1
3cabal-version: >= 1.8
4license: OtherLicense
5license-file: COPYING
6category: Cryptography
7copyright: © 2012 Stephen Paul Weber
8 © 2013 Joseph Crayne
9author: Stephen Paul Weber <singpolyma@singpolyma.net>
10maintainer: Joe Crayne <joe@jerkface.net>
11stability: experimental
12tested-with: GHC == 7.0.3
13synopsis: Implement cryptography for OpenPGP using libraries compatible
14 with Vincent Hanquez's Haskell Crypto Platform
15homepage: http://github.com/joecrayne/openpgp-util
16bug-reports: http://github.com/joecrayne/openpgp-util/issues
17build-type: Simple
18description:
19 Fingerprint generation, signature generation, signature verification,
20 and secret key decryption for OpenPGP Packets.
21 .
22 It is indended to be used with <http://hackage.haskell.org/package/openpgp>
23 .
24 It is intended that you use qualified imports with this library.
25 .
26 > import qualified Data.OpenPGP.Util as OpenPGP
27
28library
29 exposed-modules:
30 Data.OpenPGP.Util
31
32 build-depends:
33 base == 4.*,
34 transformers,
35 bytestring,
36 time >= 1.4,
37 binary >= 0.6.4.0,
38 openpgp >= 0.6,
39 crypto-random >= 0.0.7,
40 cryptohash >= 0.9.1,
41 crypto-pubkey >= 0.2.3,
42 cipher-cast5 -any,
43 byteable,
44 crypto-cipher-types >= 0.0.9,
45 cipher-blowfish,
46 cipher-aes >= 0.2.6
47
48
49source-repository head
50 type: git
51 location: git://github.com/joecrayne/openpgp-util.git