From c3ef10effee71d37a96db2c8bb6b7870dd104fd4 Mon Sep 17 00:00:00 2001 From: joe Date: Sun, 15 Dec 2013 00:11:32 -0500 Subject: cabal packaging --- COPYING | 14 ++++++++++++++ openpgp-util.cabal | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 COPYING create mode 100644 openpgp-util.cabal diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..ddd148e --- /dev/null +++ b/COPYING @@ -0,0 +1,14 @@ +Copyright © 2012, Stephen Paul Weber +Copyright © 2013, Joseph Crayne + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR 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 @@ +name: openpgp-util +version: 0.1 +cabal-version: >= 1.8 +license: OtherLicense +license-file: COPYING +category: Cryptography +copyright: © 2012 Stephen Paul Weber + © 2013 Joseph Crayne +author: Stephen Paul Weber +maintainer: Joe Crayne +stability: experimental +tested-with: GHC == 7.0.3 +synopsis: Implement cryptography for OpenPGP using libraries compatible + with Vincent Hanquez's Haskell Crypto Platform +homepage: http://github.com/joecrayne/openpgp-util +bug-reports: http://github.com/joecrayne/openpgp-util/issues +build-type: Simple +description: + Fingerprint generation, signature generation, signature verification, + and secret key decryption for OpenPGP Packets. + . + It is indended to be used with + . + It is intended that you use qualified imports with this library. + . + > import qualified Data.OpenPGP.Util as OpenPGP + +library + exposed-modules: + Data.OpenPGP.Util + + build-depends: + base == 4.*, + transformers, + bytestring, + time >= 1.4, + binary >= 0.6.4.0, + openpgp >= 0.6, + crypto-random >= 0.0.7, + cryptohash >= 0.9.1, + crypto-pubkey >= 0.2.3, + cipher-cast5 -any, + byteable, + crypto-cipher-types >= 0.0.9, + cipher-blowfish, + cipher-aes >= 0.2.6 + + +source-repository head + type: git + location: git://github.com/joecrayne/openpgp-util.git -- cgit v1.2.3