summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile10
-rw-r--r--README3
-rw-r--r--openpgp.cabal5
3 files changed, 10 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 8c5f9d5..b02c9f2 100644
--- a/Makefile
+++ b/Makefile
@@ -3,9 +3,9 @@ HLINTFLAGS=-XHaskell98 -XNoCPP -i 'Use camelCase' -i 'Use String' -i 'Use head'
3 3
4.PHONY: all clean doc install 4.PHONY: all clean doc install
5 5
6all: sign verify report.html doc dist/build/libHSopenpgp-0.1.a dist/openpgp-0.1.tar.gz 6all: sign verify report.html doc dist/build/libHSopenpgp-0.2.a dist/openpgp-0.2.tar.gz
7 7
8install: dist/build/libHSopenpgp-0.1.a 8install: dist/build/libHSopenpgp-0.2.a
9 cabal install 9 cabal install
10 10
11sign: examples/sign.hs 11sign: examples/sign.hs
@@ -28,7 +28,7 @@ README: openpgp.cabal
28dist/doc/html/openpgp/index.html: dist/setup-config Data/OpenPGP.hs Data/OpenPGP/Crypto.hs 28dist/doc/html/openpgp/index.html: dist/setup-config Data/OpenPGP.hs Data/OpenPGP/Crypto.hs
29 cabal haddock --hyperlink-source 29 cabal haddock --hyperlink-source
30 30
31dist/setup-config: 31dist/setup-config: openpgp.cabal
32 cabal configure 32 cabal configure
33 33
34clean: 34clean:
@@ -38,9 +38,9 @@ clean:
38 38
39# The following need to be changed on version change 39# The following need to be changed on version change
40 40
41dist/build/libHSopenpgp-0.1.a: openpgp.cabal dist/setup-config Data/BaseConvert.hs Data/OpenPGP.hs Data/OpenPGP/Crypto.hs 41dist/build/libHSopenpgp-0.2.a: openpgp.cabal dist/setup-config Data/BaseConvert.hs Data/OpenPGP.hs Data/OpenPGP/Crypto.hs
42 cabal build 42 cabal build
43 43
44dist/openpgp-0.1.tar.gz: openpgp.cabal dist/setup-config Data/BaseConvert.hs Data/OpenPGP.hs Data/OpenPGP/Crypto.hs README 44dist/openpgp-0.2.tar.gz: openpgp.cabal dist/setup-config Data/BaseConvert.hs Data/OpenPGP.hs Data/OpenPGP/Crypto.hs README
45 cabal check 45 cabal check
46 cabal sdist 46 cabal sdist
diff --git a/README b/README
index 2272024..b5d1332 100644
--- a/README
+++ b/README
@@ -8,7 +8,8 @@ and then defines instances of Data.Binary for each to facilitate
8encoding/decoding. 8encoding/decoding.
9 9
10There is also a wrapper around <http://hackage.haskell.org/package/Crypto> 10There is also a wrapper around <http://hackage.haskell.org/package/Crypto>
11that currently does fingerprint generation and signature verification. 11that currently does fingerprint generation, signature generation, and
12signature verification (for RSA keys only).
12 13
13It is intended that you use qualified imports with this library. If importing 14It is intended that you use qualified imports with this library. If importing
14both modules, something like this will do: 15both modules, something like this will do:
diff --git a/openpgp.cabal b/openpgp.cabal
index 69aec0f..9e26abd 100644
--- a/openpgp.cabal
+++ b/openpgp.cabal
@@ -1,5 +1,5 @@
1name: openpgp 1name: openpgp
2version: 0.1 2version: 0.2
3cabal-version: >= 1.8 3cabal-version: >= 1.8
4license: OtherLicense 4license: OtherLicense
5license-file: COPYING 5license-file: COPYING
@@ -24,7 +24,8 @@ description:
24 encoding/decoding. 24 encoding/decoding.
25 . 25 .
26 There is also a wrapper around <http://hackage.haskell.org/package/Crypto> 26 There is also a wrapper around <http://hackage.haskell.org/package/Crypto>
27 that currently does fingerprint generation and signature verification. 27 that currently does fingerprint generation, signature generation, and
28 signature verification (for RSA keys only).
28 . 29 .
29 It is intended that you use qualified imports with this library. If importing 30 It is intended that you use qualified imports with this library. If importing
30 both modules, something like this will do: 31 both modules, something like this will do: