From owner-svn-ports-head@freebsd.org Mon Sep 10 20:26:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0CFAC109B4A6; Mon, 10 Sep 2018 20:26:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F5D573DEF; Mon, 10 Sep 2018 20:26:16 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5570B5B64; Mon, 10 Sep 2018 20:26:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8AKQFY6002644; Mon, 10 Sep 2018 20:26:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8AKQEa2002639; Mon, 10 Sep 2018 20:26:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201809102026.w8AKQEa2002639@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 10 Sep 2018 20:26:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479454 - in head/security: . p5-Alt-Crypt-RSA-BigInt X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/security: . p5-Alt-Crypt-RSA-BigInt X-SVN-Commit-Revision: 479454 X-SVN-Commit-Repository: ports 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.27 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: Mon, 10 Sep 2018 20:26:17 -0000 Author: sunpoet Date: Mon Sep 10 20:26:14 2018 New Revision: 479454 URL: https://svnweb.freebsd.org/changeset/ports/479454 Log: Add p5-Alt-Crypt-RSA-BigInt 0.06 This is a rework of Crypt::RSA to remove Math::Pari and instead base all operations on Math::BigInt. This is intended to be a plug-in replacement for Crypt::RSA, with no user-visible changes to existing features. Math::Pari is completely removed. This includes the two modules: - Crypt::Primes => Math::Prime::Util - Crypt::Random => Math::Prime::Util All operations are now performed using Math::BigInt, and prefer the GMP and Pari backends. WWW: https://metacpan.org/release/Alt-Crypt-RSA-BigInt Added: head/security/p5-Alt-Crypt-RSA-BigInt/ head/security/p5-Alt-Crypt-RSA-BigInt/Makefile (contents, props changed) head/security/p5-Alt-Crypt-RSA-BigInt/distinfo (contents, props changed) head/security/p5-Alt-Crypt-RSA-BigInt/pkg-descr (contents, props changed) head/security/p5-Alt-Crypt-RSA-BigInt/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Sep 10 20:26:08 2018 (r479453) +++ head/security/Makefile Mon Sep 10 20:26:14 2018 (r479454) @@ -495,6 +495,7 @@ SUBDIR += outguess SUBDIR += owasp-dependency-check SUBDIR += p11-kit + SUBDIR += p5-Alt-Crypt-RSA-BigInt SUBDIR += p5-Apache-Htpasswd SUBDIR += p5-App-Genpass SUBDIR += p5-App-TLSMe Added: head/security/p5-Alt-Crypt-RSA-BigInt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Alt-Crypt-RSA-BigInt/Makefile Mon Sep 10 20:26:14 2018 (r479454) @@ -0,0 +1,36 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Alt-Crypt-RSA-BigInt +PORTVERSION= 0.06 +CATEGORIES= security perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:DANAJ +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= RSA public-key cryptosystem, using Math::BigInt + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Class-Loader>=0:devel/p5-Class-Loader \ + p5-Convert-ASCII-Armour>=0:converters/p5-Convert-ASCII-Armour \ + p5-Crypt-Blowfish>=0:security/p5-Crypt-Blowfish \ + p5-Crypt-CBC>=2.17:security/p5-Crypt-CBC \ + p5-Data-Buffer>=0:misc/p5-Data-Buffer \ + p5-Digest-MD2>=0:security/p5-Digest-MD2 \ + p5-Math-BigInt-GMP>=0:math/p5-Math-BigInt-GMP \ + p5-Math-Prime-Util>=0.64:math/p5-Math-Prime-Util \ + p5-Math-Prime-Util-GMP>=0:math/p5-Math-Prime-Util-GMP \ + p5-Sort-Versions>=0:devel/p5-Sort-Versions \ + p5-Tie-EncryptedHash>=0:security/p5-Tie-EncryptedHash + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include Added: head/security/p5-Alt-Crypt-RSA-BigInt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Alt-Crypt-RSA-BigInt/distinfo Mon Sep 10 20:26:14 2018 (r479454) @@ -0,0 +1,3 @@ +TIMESTAMP = 1536593744 +SHA256 (Alt-Crypt-RSA-BigInt-0.06.tar.gz) = 76f434cab36999cdf09811345bb39d6b7cbed7e085b02338328c7f46e08b38f3 +SIZE (Alt-Crypt-RSA-BigInt-0.06.tar.gz) = 52479 Added: head/security/p5-Alt-Crypt-RSA-BigInt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Alt-Crypt-RSA-BigInt/pkg-descr Mon Sep 10 20:26:14 2018 (r479454) @@ -0,0 +1,14 @@ +This is a rework of Crypt::RSA to remove Math::Pari and instead base all +operations on Math::BigInt. + +This is intended to be a plug-in replacement for Crypt::RSA, with no +user-visible changes to existing features. + +Math::Pari is completely removed. This includes the two modules: +- Crypt::Primes => Math::Prime::Util +- Crypt::Random => Math::Prime::Util + +All operations are now performed using Math::BigInt, and prefer the GMP and Pari +backends. + +WWW: https://metacpan.org/release/Alt-Crypt-RSA-BigInt Added: head/security/p5-Alt-Crypt-RSA-BigInt/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Alt-Crypt-RSA-BigInt/pkg-plist Mon Sep 10 20:26:14 2018 (r479454) @@ -0,0 +1,30 @@ +%%SITE_PERL%%/Alt/Crypt/RSA/BigInt.pm +%%SITE_PERL%%/Crypt/RSA.pm +%%SITE_PERL%%/Crypt/RSA/DataFormat.pm +%%SITE_PERL%%/Crypt/RSA/Debug.pm +%%SITE_PERL%%/Crypt/RSA/ES/OAEP.pm +%%SITE_PERL%%/Crypt/RSA/ES/PKCS1v15.pm +%%SITE_PERL%%/Crypt/RSA/Errorhandler.pm +%%SITE_PERL%%/Crypt/RSA/Key.pm +%%SITE_PERL%%/Crypt/RSA/Key/Private.pm +%%SITE_PERL%%/Crypt/RSA/Key/Private/SSH.pm +%%SITE_PERL%%/Crypt/RSA/Key/Public.pm +%%SITE_PERL%%/Crypt/RSA/Key/Public/SSH.pm +%%SITE_PERL%%/Crypt/RSA/Primitives.pm +%%SITE_PERL%%/Crypt/RSA/SS/PKCS1v15.pm +%%SITE_PERL%%/Crypt/RSA/SS/PSS.pm +%%PERL5_MAN3%%/Alt::Crypt::RSA::BigInt.3.gz +%%PERL5_MAN3%%/Crypt::RSA.3.gz +%%PERL5_MAN3%%/Crypt::RSA::DataFormat.3.gz +%%PERL5_MAN3%%/Crypt::RSA::Debug.3.gz +%%PERL5_MAN3%%/Crypt::RSA::ES::OAEP.3.gz +%%PERL5_MAN3%%/Crypt::RSA::ES::PKCS1v15.3.gz +%%PERL5_MAN3%%/Crypt::RSA::Errorhandler.3.gz +%%PERL5_MAN3%%/Crypt::RSA::Key.3.gz +%%PERL5_MAN3%%/Crypt::RSA::Key::Private.3.gz +%%PERL5_MAN3%%/Crypt::RSA::Key::Private::SSH.3.gz +%%PERL5_MAN3%%/Crypt::RSA::Key::Public.3.gz +%%PERL5_MAN3%%/Crypt::RSA::Key::Public::SSH.3.gz +%%PERL5_MAN3%%/Crypt::RSA::Primitives.3.gz +%%PERL5_MAN3%%/Crypt::RSA::SS::PKCS1v15.3.gz +%%PERL5_MAN3%%/Crypt::RSA::SS::PSS.3.gz