Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Dec 2015 14:33:33 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r403776 - in head/security: . p5-Crypt-PKCS10
Message-ID:  <201512151433.tBFEXXrA061190@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Tue Dec 15 14:33:33 2015
New Revision: 403776
URL: https://svnweb.freebsd.org/changeset/ports/403776

Log:
  A small command line utility for parsing PKCS#10 certificate signing
  requests to perl data structure and provides accessor methods to
  supported elements.
  
  It is based on the generic ASN.1 module by Graham Barr and on the
  x509decode example by Norbert Klasen. It is also based upon the
  works of Duncan Segrests Crypt-X509-CRL module. The module parses
  common fields and extensions. Some fields might be missing.
  
  WWW: http://search.cpan.org/dist/Crypt-PKCS10/
  
  PR:		204814
  Submitted by:	Sergei Vyshenski <svysh.fbsd@gmail.com>
  Approved by:    mat (mentor)
  Differential Revision:  D4574

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Tue Dec 15 14:10:52 2015	(r403775)
+++ head/security/Makefile	Tue Dec 15 14:33:33 2015	(r403776)
@@ -526,6 +526,7 @@
     SUBDIR += p5-Crypt-Passwd-XS
     SUBDIR += p5-Crypt-PasswdMD5
     SUBDIR += p5-Crypt-Password-Util
+    SUBDIR += p5-Crypt-PKCS10
     SUBDIR += p5-Crypt-Primes
     SUBDIR += p5-Crypt-RC4
     SUBDIR += p5-Crypt-RC5

Added: head/security/p5-Crypt-PKCS10/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-PKCS10/Makefile	Tue Dec 15 14:33:33 2015	(r403776)
@@ -0,0 +1,23 @@
+# Created by: Sergei Vyshenski <svysh.fbsd@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	Crypt-PKCS10
+PORTVERSION=	1.3
+CATEGORIES=	security perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	svysh.fbsd@gmail.com
+COMMENT=	Parse PKCS #10 certificate requests
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+BUILD_DEPENDS=	p5-Convert-ASN1>=0.27:${PORTSDIR}/converters/p5-Convert-ASN1
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+USES=		perl5
+USE_PERL5=	configure
+NO_ARCH=yes
+
+.include <bsd.port.mk>

Added: head/security/p5-Crypt-PKCS10/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-PKCS10/distinfo	Tue Dec 15 14:33:33 2015	(r403776)
@@ -0,0 +1,2 @@
+SHA256 (Crypt-PKCS10-1.3.tar.gz) = 5ef231ac72a6b6987f90d5d9007914442a0aa9dd2bdbdba1ba4a9429c7b864ec
+SIZE (Crypt-PKCS10-1.3.tar.gz) = 15436

Added: head/security/p5-Crypt-PKCS10/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-PKCS10/pkg-descr	Tue Dec 15 14:33:33 2015	(r403776)
@@ -0,0 +1,10 @@
+A small command line utility for parsing PKCS#10 certificate signing
+requests to perl data structure and provides accessor methods to
+supported elements.
+
+It is based on the generic ASN.1 module by Graham Barr and on the
+x509decode example by Norbert Klasen. It is also based upon the
+works of Duncan Segrests Crypt-X509-CRL module. The module parses
+common fields and extensions. Some fields might be missing.
+
+WWW: http://search.cpan.org/dist/Crypt-PKCS10/

Added: head/security/p5-Crypt-PKCS10/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Crypt-PKCS10/pkg-plist	Tue Dec 15 14:33:33 2015	(r403776)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Crypt/PKCS10.pm
+%%PERL5_MAN3%%/Crypt::PKCS10.3.gz



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