From owner-svn-ports-all@freebsd.org Sat Jan 11 11:18:08 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 54ECD225D57; Sat, 11 Jan 2020 11:18:08 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47vy5D1f5Qz3RBM; Sat, 11 Jan 2020 11:18:08 +0000 (UTC) (envelope-from danfe@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 33C121E00; Sat, 11 Jan 2020 11:18:08 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00BBI8iG066550; Sat, 11 Jan 2020 11:18:08 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00BBI75Q066545; Sat, 11 Jan 2020 11:18:07 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <202001111118.00BBI75Q066545@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sat, 11 Jan 2020 11:18:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r522676 - in head/security: . p5-Crypt-HSXKPasswd X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/security: . p5-Crypt-HSXKPasswd X-SVN-Commit-Revision: 522676 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Jan 2020 11:18:08 -0000 Author: danfe Date: Sat Jan 11 11:18:06 2020 New Revision: 522676 URL: https://svnweb.freebsd.org/changeset/ports/522676 Log: A secure memorable password generator inspired by the wonderful XKCD webcomic and Steve Gibson's Password Haystacks webpage. WWW: https://metacpan.org/release/Crypt-HSXKPasswd Added: head/security/p5-Crypt-HSXKPasswd/ head/security/p5-Crypt-HSXKPasswd/Makefile (contents, props changed) head/security/p5-Crypt-HSXKPasswd/distinfo (contents, props changed) head/security/p5-Crypt-HSXKPasswd/pkg-descr (contents, props changed) head/security/p5-Crypt-HSXKPasswd/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Jan 11 11:04:40 2020 (r522675) +++ head/security/Makefile Sat Jan 11 11:18:06 2020 (r522676) @@ -517,6 +517,7 @@ SUBDIR += p5-Crypt-GeneratePassword SUBDIR += p5-Crypt-HCE_MD5 SUBDIR += p5-Crypt-HCE_SHA + SUBDIR += p5-Crypt-HSXKPasswd SUBDIR += p5-Crypt-IDEA SUBDIR += p5-Crypt-Imail SUBDIR += p5-Crypt-Juniper Added: head/security/p5-Crypt-HSXKPasswd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Crypt-HSXKPasswd/Makefile Sat Jan 11 11:18:06 2020 (r522676) @@ -0,0 +1,31 @@ +# Created by: Zeus Panchenko +# $FreeBSD$ + +PORTNAME= Crypt-HSXKPasswd +PORTVERSION= 3.6 +DISTVERSIONPREFIX= v +CATEGORIES= security perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Secure memorable password generator inspired by XKCD + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= p5-Clone>=0:devel/p5-Clone \ + p5-File-HomeDir>=0:devel/p5-File-HomeDir \ + p5-JSON>=0:converters/p5-JSON \ + p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ + p5-Math-Round>=0:math/p5-Math-Round \ + p5-Readonly>=0:devel/p5-Readonly \ + p5-Text-Unidecode>=0:converters/p5-Text-Unidecode \ + p5-Type-Tiny>=0:devel/p5-Type-Tiny +TEST_DEPENDS= p5-File-Share>=0:devel/p5-File-Share + +NO_ARCH= yes +USES= perl5 +USE_PERL5= configure + +.include Added: head/security/p5-Crypt-HSXKPasswd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Crypt-HSXKPasswd/distinfo Sat Jan 11 11:18:06 2020 (r522676) @@ -0,0 +1,3 @@ +TIMESTAMP = 1439325702 +SHA256 (Crypt-HSXKPasswd-v3.6.tar.gz) = 959dcc5f9f011bf00b85ad22df566b7ab2bf5ea1d362b0de0fb5ae29fbc458b3 +SIZE (Crypt-HSXKPasswd-v3.6.tar.gz) = 17938667 Added: head/security/p5-Crypt-HSXKPasswd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Crypt-HSXKPasswd/pkg-descr Sat Jan 11 11:18:06 2020 (r522676) @@ -0,0 +1,4 @@ +A secure memorable password generator inspired by the wonderful XKCD +webcomic and Steve Gibson's Password Haystacks webpage. + +WWW: https://metacpan.org/release/Crypt-HSXKPasswd Added: head/security/p5-Crypt-HSXKPasswd/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Crypt-HSXKPasswd/pkg-plist Sat Jan 11 11:18:06 2020 (r522676) @@ -0,0 +1,23 @@ +bin/hsxkpasswd +%%PERL5_MAN1%%/hsxkpasswd.1.gz +%%PERL5_MAN3%%/Crypt::HSXKPasswd.3.gz +%%SITE_PERL%%/Crypt/HSXKPasswd/Dictionary.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Util.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Dictionary/ES.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Dictionary/PT.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Dictionary/NL.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Dictionary/DE.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Dictionary/Basic.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Dictionary/EN.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Dictionary/System.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Dictionary/IT.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Dictionary/FR.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/RNG/RandomDotOrg.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/RNG/Data_Entropy.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/RNG/DevUrandom.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/RNG/Math_Random_Secure.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/RNG/Basic.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/RNG.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Helper.pm +%%SITE_PERL%%/Crypt/HSXKPasswd/Types.pm +%%SITE_PERL%%/Crypt/HSXKPasswd.pm