Date: Sat, 26 Jan 2019 10:52:11 +0000 (UTC) From: Ruslan Makhmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491261 - in head/security: . py-python-axolotl-curve25519 Message-ID: <201901261052.x0QAqBf9061164@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rm Date: Sat Jan 26 10:52:11 2019 New Revision: 491261 URL: https://svnweb.freebsd.org/changeset/ports/491261 Log: Python wrapper for curve25519 library with ed25519 signatures. WWW: https://github.com/tgalal/python-axolotl-curve25519 PR: 233822 Submitted by: meka@tilda.center Added: head/security/py-python-axolotl-curve25519/ head/security/py-python-axolotl-curve25519/Makefile (contents, props changed) head/security/py-python-axolotl-curve25519/distinfo (contents, props changed) head/security/py-python-axolotl-curve25519/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Jan 26 10:50:44 2019 (r491260) +++ head/security/Makefile Sat Jan 26 10:52:11 2019 (r491261) @@ -1011,6 +1011,7 @@ SUBDIR += py-pysaml2 SUBDIR += py-pyscard SUBDIR += py-pysha3 + SUBDIR += py-python-axolotl-curve25519 SUBDIR += py-python-gnupg SUBDIR += py-python-jose SUBDIR += py-python-nss Added: head/security/py-python-axolotl-curve25519/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python-axolotl-curve25519/Makefile Sat Jan 26 10:52:11 2019 (r491261) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= python-axolotl-curve25519 +PORTVERSION= 0.4.1 +DISTVERSIONSUFFIX= .post2 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= meka@tilda.center +COMMENT= Python wrapper for curve25519 with ed25519 signatures + +LICENSE= GPLv3 + +USES= python +USE_PYTHON= autoplist distutils + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/axolotl_curve25519.so + +.include <bsd.port.mk> Added: head/security/py-python-axolotl-curve25519/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python-axolotl-curve25519/distinfo Sat Jan 26 10:52:11 2019 (r491261) @@ -0,0 +1,3 @@ +TIMESTAMP = 1544094441 +SHA256 (python-axolotl-curve25519-0.4.1.post2.tar.gz) = 0705a66297ebd2f508a60dc94e22881c754301eb81db93963322f6b3bdcb63a3 +SIZE (python-axolotl-curve25519-0.4.1.post2.tar.gz) = 79941 Added: head/security/py-python-axolotl-curve25519/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python-axolotl-curve25519/pkg-descr Sat Jan 26 10:52:11 2019 (r491261) @@ -0,0 +1,3 @@ +Python wrapper for curve25519 library with ed25519 signatures. + +WWW: https://github.com/tgalal/python-axolotl-curve25519
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901261052.x0QAqBf9061164>