Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 14 Feb 2015 18:59:04 +0000 (UTC)
From:      Adam Weinberger <adamw@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r378992 - in head/security: . p5-Crypt-OpenSSL-EC p5-Crypt-OpenSSL-ECDSA
Message-ID:  <201502141859.t1EIx4K8015450@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adamw
Date: Sat Feb 14 18:59:03 2015
New Revision: 378992
URL: https://svnweb.freebsd.org/changeset/ports/378992
QAT: https://qat.redports.org/buildarchive/r378992/

Log:
  Add security/p5-Crypt-OpenSSL-EC and security/p5-Crypt-OpenSSL-ECDSA,
  interfaces to elliptic curve functions from OpenSSL.

Added:
  head/security/p5-Crypt-OpenSSL-EC/
  head/security/p5-Crypt-OpenSSL-EC/Makefile   (contents, props changed)
  head/security/p5-Crypt-OpenSSL-EC/distinfo   (contents, props changed)
  head/security/p5-Crypt-OpenSSL-EC/pkg-descr   (contents, props changed)
  head/security/p5-Crypt-OpenSSL-EC/pkg-plist   (contents, props changed)
  head/security/p5-Crypt-OpenSSL-ECDSA/
  head/security/p5-Crypt-OpenSSL-ECDSA/Makefile   (contents, props changed)
  head/security/p5-Crypt-OpenSSL-ECDSA/distinfo   (contents, props changed)
  head/security/p5-Crypt-OpenSSL-ECDSA/pkg-descr   (contents, props changed)
  head/security/p5-Crypt-OpenSSL-ECDSA/pkg-plist   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Feb 14 18:52:05 2015	(r378991)
+++ head/security/Makefile	Sat Feb 14 18:59:03 2015	(r378992)
@@ -491,6 +491,8 @@
     SUBDIR += p5-Crypt-OpenSSL-Bignum
     SUBDIR += p5-Crypt-OpenSSL-CA
     SUBDIR += p5-Crypt-OpenSSL-DSA
+    SUBDIR += p5-Crypt-OpenSSL-EC
+    SUBDIR += p5-Crypt-OpenSSL-ECDSA
     SUBDIR += p5-Crypt-OpenSSL-RSA
     SUBDIR += p5-Crypt-OpenSSL-Random
     SUBDIR += p5-Crypt-OpenSSL-X509

Added: head/security/p5-Crypt-OpenSSL-EC/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-OpenSSL-EC/Makefile	Sat Feb 14 18:59:03 2015	(r378992)
@@ -0,0 +1,20 @@
+# Created by: Adam Weinberger <adamw@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Crypt-OpenSSL-EC
+PORTVERSION=	1.01
+CATEGORIES=	security perl5
+MASTER_SITES=	CPAN
+MASTER_SITE_SUBDIR=	CPAN:MIKEM
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	perl@FreeBSD.org
+COMMENT=	Perl extension for OpenSSL EC (Elliptic Curves) library
+
+BUILD_DEPENDS=	p5-Crypt-OpenSSL-Bignum>=0.04:${PORTSDIR}/security/p5-Crypt-OpenSSL-Bignum
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/security/p5-Crypt-OpenSSL-EC/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-OpenSSL-EC/distinfo	Sat Feb 14 18:59:03 2015	(r378992)
@@ -0,0 +1,2 @@
+SHA256 (Crypt-OpenSSL-EC-1.01.tar.gz) = 79dc1949879346715246a39f77f8809e9f9e74c023f140a7d9478b2b7479450e
+SIZE (Crypt-OpenSSL-EC-1.01.tar.gz) = 68850

Added: head/security/p5-Crypt-OpenSSL-EC/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-OpenSSL-EC/pkg-descr	Sat Feb 14 18:59:03 2015	(r378992)
@@ -0,0 +1,6 @@
+This module provides a standard (non-OO) interface to the OpenSSL EC (Elliptic
+Curve) library. Some OO Calls are supported.
+
+Most of the functions described in openssl/ec.h are supported.
+
+WWW: https://metacpan.org/pod/Crypt::OpenSSL::EC

Added: head/security/p5-Crypt-OpenSSL-EC/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-OpenSSL-EC/pkg-plist	Sat Feb 14 18:59:03 2015	(r378992)
@@ -0,0 +1,4 @@
+%%SITE_ARCH%%/Crypt/OpenSSL/EC.pm
+%%SITE_ARCH%%/auto/Crypt/OpenSSL/EC/EC.so
+%%SITE_ARCH%%/auto/Crypt/OpenSSL/EC/autosplit.ix
+%%PERL5_MAN3%%/Crypt::OpenSSL::EC.3.gz

Added: head/security/p5-Crypt-OpenSSL-ECDSA/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-OpenSSL-ECDSA/Makefile	Sat Feb 14 18:59:03 2015	(r378992)
@@ -0,0 +1,21 @@
+# Created by: Adam Weinberger <adamw@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Crypt-OpenSSL-ECDSA
+PORTVERSION=	0.06
+CATEGORIES=	security perl5
+MASTER_SITES=	CPAN
+MASTER_SITE_SUBDIR=	CPAN:MIKEM
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	perl@FreeBSD.org
+COMMENT=	Perl extension for OpenSSL ECDSA
+
+BUILD_DEPENDS=	p5-Crypt-OpenSSL-Bignum>=0.04:${PORTSDIR}/security/p5-Crypt-OpenSSL-Bignum \
+		p5-Crypt-OpenSSL-EC>=0.05:${PORTSDIR}/security/p5-Crypt-OpenSSL-EC
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/security/p5-Crypt-OpenSSL-ECDSA/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-OpenSSL-ECDSA/distinfo	Sat Feb 14 18:59:03 2015	(r378992)
@@ -0,0 +1,2 @@
+SHA256 (Crypt-OpenSSL-ECDSA-0.06.tar.gz) = 41dc95831db5813271bb2d1edc5abe3a9b078a28980a6908a7340c2eb0e8497b
+SIZE (Crypt-OpenSSL-ECDSA-0.06.tar.gz) = 52839

Added: head/security/p5-Crypt-OpenSSL-ECDSA/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-OpenSSL-ECDSA/pkg-descr	Sat Feb 14 18:59:03 2015	(r378992)
@@ -0,0 +1,4 @@
+This module provides an interface to the ECDSA (Elliptic Curve Digital
+Signature Algorithm) functions in OpenSSL.
+
+WWW: https://metacpan.org/pod/Crypt::OpenSSL::ECDSA

Added: head/security/p5-Crypt-OpenSSL-ECDSA/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-OpenSSL-ECDSA/pkg-plist	Sat Feb 14 18:59:03 2015	(r378992)
@@ -0,0 +1,4 @@
+%%SITE_ARCH%%/Crypt/OpenSSL/ECDSA.pm
+%%SITE_ARCH%%/auto/Crypt/OpenSSL/ECDSA/ECDSA.so
+%%SITE_ARCH%%/auto/Crypt/OpenSSL/ECDSA/autosplit.ix
+%%PERL5_MAN3%%/Crypt::OpenSSL::ECDSA.3.gz



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