svn commit: r417949 - in head/security: . py-hkdf

Steve Wills swills at FreeBSD.org
Sun Jul 3 01:47:40 UTC 2016


Author: swills
Date: Sun Jul  3 01:47:38 2016
New Revision: 417949
URL: https://svnweb.freebsd.org/changeset/ports/417949

Log:
  security/py-hkdf: create port
  
  HKDF - HMAC Key Derivation Function
  
  This module implements the HMAC Key Derivation function
  
  WWW: https://github.com/casebeer/python-hkdf

Added:
  head/security/py-hkdf/
  head/security/py-hkdf/Makefile   (contents, props changed)
  head/security/py-hkdf/distinfo   (contents, props changed)
  head/security/py-hkdf/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sun Jul  3 00:47:02 2016	(r417948)
+++ head/security/Makefile	Sun Jul  3 01:47:38 2016	(r417949)
@@ -847,6 +847,7 @@
     SUBDIR += py-gnupg
     SUBDIR += py-gnutls
     SUBDIR += py-gpsoauth
+    SUBDIR += py-hkdf
     SUBDIR += py-htpasswd
     SUBDIR += py-itsdangerous
     SUBDIR += py-kerberos

Added: head/security/py-hkdf/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-hkdf/Makefile	Sun Jul  3 01:47:38 2016	(r417949)
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+PORTNAME=	hkdf
+PORTVERSION=	0.0.3
+CATEGORIES=	security
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	swills at FreeBSD.org
+COMMENT=	HMAC-based Extract-and-Expand Key Derivation Function (HKDF)
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/security/py-hkdf/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-hkdf/distinfo	Sun Jul  3 01:47:38 2016	(r417949)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1467488568
+SHA256 (hkdf-0.0.3.tar.gz) = 622a31c634bc185581530a4b44ffb731ed208acf4614f9c795bdd70e77991dca
+SIZE (hkdf-0.0.3.tar.gz) = 3959

Added: head/security/py-hkdf/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-hkdf/pkg-descr	Sun Jul  3 01:47:38 2016	(r417949)
@@ -0,0 +1,5 @@
+HKDF - HMAC Key Derivation Function
+
+This module implements the HMAC Key Derivation function
+
+WWW: https://github.com/casebeer/python-hkdf


More information about the svn-ports-all mailing list