From owner-svn-ports-head@freebsd.org Tue Dec 15 14:33:35 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 658E4A48760; Tue, 15 Dec 2015 14:33:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F7011F60; Tue, 15 Dec 2015 14:33:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBFEXY60061195; Tue, 15 Dec 2015 14:33:34 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBFEXXrA061190; Tue, 15 Dec 2015 14:33:33 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201512151433.tBFEXXrA061190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Tue, 15 Dec 2015 14:33:33 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Dec 2015 14:33:35 -0000 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 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 +# $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 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