From db909dbbef34a2a752a45f803d85b60fbb0823f7 Mon Sep 17 00:00:00 2001 From: miwi Date: Wed, 7 Mar 2007 13:49:59 +0000 Subject: py-bcrypt is a Python wrapper of OpenBSDs Blowfish password hashing code, as described in A Future-Adaptable Password Scheme by Niels Provos and David Mazières. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit WWW: http://www.mindrot.org/projects/py-bcrypt/ --- security/Makefile | 1 + security/py-bcrypt/Makefile | 25 +++++++++++++++++++++++++ security/py-bcrypt/distinfo | 3 +++ security/py-bcrypt/pkg-descr | 5 +++++ security/py-bcrypt/pkg-plist | 7 +++++++ 5 files changed, 41 insertions(+) create mode 100644 security/py-bcrypt/Makefile create mode 100644 security/py-bcrypt/distinfo create mode 100644 security/py-bcrypt/pkg-descr create mode 100644 security/py-bcrypt/pkg-plist (limited to 'security') diff --git a/security/Makefile b/security/Makefile index 01a268cfb5d9..b0a62bf0d37b 100644 --- a/security/Makefile +++ b/security/Makefile @@ -577,6 +577,7 @@ SUBDIR += pwauth SUBDIR += pwman SUBDIR += pxytest + SUBDIR += py-bcrypt SUBDIR += py-cerealizer SUBDIR += py-clamav SUBDIR += py-crack diff --git a/security/py-bcrypt/Makefile b/security/py-bcrypt/Makefile new file mode 100644 index 000000000000..4d85b47fe9af --- /dev/null +++ b/security/py-bcrypt/Makefile @@ -0,0 +1,25 @@ +# ex:ts=8 +# Ports collection makefile for: py-bcrypt +# Date created: 07 maerch, 2007 +# Whom: Martin Wilke +# +# $FreeBSD$ +# + +PORTNAME= bcrypt +PORTVERSION= 0.1 +CATEGORIES= security python +MASTER_SITES= http://www.mindrot.org/files/py-bcrypt/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= py-${PORTNAME}-${PORTVERSION} + +MAINTAINER= miwi@FreeBSD.org +COMMENT= Python bcrypt module + +USE_PYTHON= yes +USE_PYDISTUTILS=yes + +CFLAGS+= -I${LOCALBASE}/include +MAKE_ENV= "LDFLAGS=-L${LOCALBASE}/lib" + +.include diff --git a/security/py-bcrypt/distinfo b/security/py-bcrypt/distinfo new file mode 100644 index 000000000000..bb6e245ec6f2 --- /dev/null +++ b/security/py-bcrypt/distinfo @@ -0,0 +1,3 @@ +MD5 (py-bcrypt-0.1.tar.gz) = de80dbc79943fba1228bb5a1c2ddb773 +SHA256 (py-bcrypt-0.1.tar.gz) = c556244fd09398d3e40437c01f90f68f6aa58284db63aa73d20eed7acca4ceba +SIZE (py-bcrypt-0.1.tar.gz) = 16863 diff --git a/security/py-bcrypt/pkg-descr b/security/py-bcrypt/pkg-descr new file mode 100644 index 000000000000..09b777931c09 --- /dev/null +++ b/security/py-bcrypt/pkg-descr @@ -0,0 +1,5 @@ +py-bcrypt is a Python wrapper of OpenBSDs Blowfish password hashing code, +as described in A Future-Adaptable Password Scheme by Niels Provos and +David Mazières. + +WWW: http://www.mindrot.org/projects/py-bcrypt/ diff --git a/security/py-bcrypt/pkg-plist b/security/py-bcrypt/pkg-plist new file mode 100644 index 000000000000..a7e008a28044 --- /dev/null +++ b/security/py-bcrypt/pkg-plist @@ -0,0 +1,7 @@ +%%PYTHON_SITELIBDIR%%/bcrypt/__init__.py +%%PYTHON_SITELIBDIR%%/bcrypt/__init__.pyc +%%PYTHON_SITELIBDIR%%/bcrypt/__init__.pyo +%%PYTHON_SITELIBDIR%%/bcrypt/_bcrypt.so +@dirrm %%PYTHON_SITELIBDIR%%/bcrypt +@dirrm %%PYTHON_SITELIBDIR%% +@dirrm %%PYTHON_LIBDIR%% -- cgit