Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Dec 2019 10:57:39 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r520170 - in head/security: . py-ctypescrypto
Message-ID:  <201912151057.xBFAvdr4064951@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Dec 15 10:57:38 2019
New Revision: 520170
URL: https://svnweb.freebsd.org/changeset/ports/520170

Log:
  New port: security/py-ctypescrypto: CTypes-based interface for some OpenSSL libcrypto features

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sun Dec 15 10:48:39 2019	(r520169)
+++ head/security/Makefile	Sun Dec 15 10:57:38 2019	(r520170)
@@ -889,6 +889,7 @@
     SUBDIR += py-cryptlib_py
     SUBDIR += py-cryptography
     SUBDIR += py-cryptography-vectors
+    SUBDIR += py-ctypescrypto
     SUBDIR += py-cybox
     SUBDIR += py-dfdatetime
     SUBDIR += py-dfvfs

Added: head/security/py-ctypescrypto/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-ctypescrypto/Makefile	Sun Dec 15 10:57:38 2019	(r520170)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	ctypescrypto
+DISTVERSION=	0.5
+CATEGORIES=	security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	CTypes-based interface for some OpenSSL libcrypto features
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/security/py-ctypescrypto/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-ctypescrypto/distinfo	Sun Dec 15 10:57:38 2019	(r520170)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1576407109
+SHA256 (ctypescrypto-0.5.tar.gz) = 29f644dd023742b75d387727cad9821be0d7d71360b1cc9c9f3c38a80a61cce2
+SIZE (ctypescrypto-0.5.tar.gz) = 43874

Added: head/security/py-ctypescrypto/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-ctypescrypto/pkg-descr	Sun Dec 15 10:57:38 2019	(r520170)
@@ -0,0 +1,8 @@
+Most of the existing OpenSSL extensions implement interfaces to particular set
+of cryptoalgorthms. This extension takes another approach - it uses
+algorithm-agnostic EVP layer whenever possible, and so it support any algorithms
+which are supported by the underlying library, even this algorithms are
+implemented in the loadable modules (engines). Algorithms which were just added
+to the library should be supported too.
+
+WWW: https://github.com/vbwagner/ctypescrypto



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