Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Sep 2014 14:04:34 +0000 (UTC)
From:      Marcus von Appen <mva@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r369606 - in head/security: . py-service_identity
Message-ID:  <201409301404.s8UE4Yfn011183@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mva
Date: Tue Sep 30 14:04:34 2014
New Revision: 369606
URL: http://svnweb.freebsd.org/changeset/ports/369606
QAT: https://qat.redports.org/buildarchive/r369606/

Log:
  service_identity aspires to give you all the tools you need
  for verifying whether a certificate is valid for the intended
  purposes.
  
  In the simplest case, this means host name verification.
  However, service_identity implements RFC 6125 fully and
  plans to add other relevant RFCs too.
  
  WWW: https://github.com/pyca/service_identity
  
  PR:		193930
  Submitted by:	Axel Rau <axel.rau@chaos1.de>

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Tue Sep 30 14:04:22 2014	(r369605)
+++ head/security/Makefile	Tue Sep 30 14:04:34 2014	(r369606)
@@ -796,6 +796,7 @@
     SUBDIR += py-pysha3
     SUBDIR += py-python-registry
     SUBDIR += py-rsa
+    SUBDIR += py-service_identity
     SUBDIR += py-slowaes
     SUBDIR += py-ssh
     SUBDIR += py-sslstrip

Added: head/security/py-service_identity/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-service_identity/Makefile	Tue Sep 30 14:04:34 2014	(r369606)
@@ -0,0 +1,24 @@
+# Created by: Axel Rau <axel.rau@chaos1.de>
+# $FreeBSD$
+
+PORTNAME=	service_identity
+PORTVERSION=	14.0.0
+CATEGORIES=	security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	axel.rau@chaos1.de
+COMMENT=	Service identity verification for pyOpenSSL
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}openssl>=0.14:${PORTSDIR}/security/py-openssl \
+		${PYTHON_PKGNAMEPREFIX}asn1>=0.1.7:${PORTSDIR}/devel/py-asn1 \
+		${PYTHON_PKGNAMEPREFIX}asn1-modules>=0.0.5:${PORTSDIR}/devel/py-asn1-modules \
+		${PYTHON_PKGNAMEPREFIX}characteristic>=14.0.0:${PORTSDIR}/devel/py-characteristic
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/security/py-service_identity/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-service_identity/distinfo	Tue Sep 30 14:04:34 2014	(r369606)
@@ -0,0 +1,2 @@
+SHA256 (service_identity-14.0.0.tar.gz) = 3105a319a7c558490666694f599be0c377ad54824eefb404cde4ce49e74a4f5a
+SIZE (service_identity-14.0.0.tar.gz) = 26033

Added: head/security/py-service_identity/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-service_identity/pkg-descr	Tue Sep 30 14:04:34 2014	(r369606)
@@ -0,0 +1,9 @@
+service_identity aspires to give you all the tools you need
+for verifying whether a certificate is valid for the intended
+purposes.
+
+In the simplest case, this means host name verification.
+However, service_identity implements RFC 6125 fully and
+plans to add other relevant RFCs too.
+
+WWW: https://github.com/pyca/service_identity



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409301404.s8UE4Yfn011183>