diff options
author | pgj <pgj@FreeBSD.org> | 2012-02-19 00:06:05 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2012-02-19 00:06:05 +0800 |
commit | 072ab4fc0346a37412c154e4b0c87fbe29f0f97d (patch) | |
tree | 8c5d0a907434d3ae452fccd346b51ebb15cc87f8 | |
parent | 8f3e01c485cb32f79997f312008d7b2c9520ed41 (diff) | |
download | freebsd-ports-gnome-072ab4fc0346a37412c154e4b0c87fbe29f0f97d.tar.gz freebsd-ports-gnome-072ab4fc0346a37412c154e4b0c87fbe29f0f97d.tar.zst freebsd-ports-gnome-072ab4fc0346a37412c154e4b0c87fbe29f0f97d.zip |
An unrolled implementation of MD5 purely in Haskell.
WWW: http://hackage.haskell.org/package/pureMD5
Obtained from: FreeBSD Haskell
-rw-r--r-- | lang/ghc/bsd.hackage.mk | 1 | ||||
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/hs-pureMD5/Makefile | 20 | ||||
-rw-r--r-- | security/hs-pureMD5/distinfo | 2 | ||||
-rw-r--r-- | security/hs-pureMD5/pkg-descr | 3 |
5 files changed, 27 insertions, 0 deletions
diff --git a/lang/ghc/bsd.hackage.mk b/lang/ghc/bsd.hackage.mk index 9fc219e7f428..2e8192d7c835 100644 --- a/lang/ghc/bsd.hackage.mk +++ b/lang/ghc/bsd.hackage.mk @@ -180,6 +180,7 @@ porte_port= ports-mgmt/hs-porte # executable primitive_port= devel/hs-primitive probability_port= math/hs-probability PSQueue_port= devel/hs-PSQueue +pureMD5_port= security/hs-pureMD5 pwstore-fast_port= security/hs-pwstore-fast QuickCheck_port= devel/hs-QuickCheck reactive_port= devel/hs-reactive diff --git a/security/Makefile b/security/Makefile index 92993f294620..164f866e5d92 100644 --- a/security/Makefile +++ b/security/Makefile @@ -194,6 +194,7 @@ SUBDIR += hs-cryptohash SUBDIR += hs-digest SUBDIR += hs-entropy + SUBDIR += hs-pureMD5 SUBDIR += hs-pwstore-fast SUBDIR += hs-skein SUBDIR += httprint diff --git a/security/hs-pureMD5/Makefile b/security/hs-pureMD5/Makefile new file mode 100644 index 000000000000..fc8e9a3d4aec --- /dev/null +++ b/security/hs-pureMD5/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: hs-pureMD5 +# Date created: 2010-08-17 +# Whom: Ashish SHUKLA <ashish@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= pureMD5 +PORTVERSION= 2.1.0.3 +CATEGORIES= security haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Haskell implementation of MD5 algorithm + +LICENSE= BSD + +USE_CABAL= binary>=0.4.0 cereal>=0.2 crypto-api tagged + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/security/hs-pureMD5/distinfo b/security/hs-pureMD5/distinfo new file mode 100644 index 000000000000..87dda0c23755 --- /dev/null +++ b/security/hs-pureMD5/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/pureMD5-2.1.0.3.tar.gz) = 3102d2ddd9084faf0a25d168b150aeca02aad9bba62d80f9b8ec13fccdd21472 +SIZE (cabal/pureMD5-2.1.0.3.tar.gz) = 6087 diff --git a/security/hs-pureMD5/pkg-descr b/security/hs-pureMD5/pkg-descr new file mode 100644 index 000000000000..20a9cc538e38 --- /dev/null +++ b/security/hs-pureMD5/pkg-descr @@ -0,0 +1,3 @@ +An unrolled implementation of MD5 purely in Haskell. + +WWW: http://hackage.haskell.org/package/pureMD5 |