From owner-svn-ports-head@FreeBSD.ORG Sat Sep 7 08:39:25 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DD4053A3; Sat, 7 Sep 2013 08:39:25 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B1E4423E8; Sat, 7 Sep 2013 08:39:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r878dPqg008708; Sat, 7 Sep 2013 08:39:25 GMT (envelope-from gblach@svn.freebsd.org) Received: (from gblach@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r878dP6c008706; Sat, 7 Sep 2013 08:39:25 GMT (envelope-from gblach@svn.freebsd.org) Message-Id: <201309070839.r878dP6c008706@svn.freebsd.org> From: Grzegorz Blach Date: Sat, 7 Sep 2013 08:39:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326582 - head/security/p5-Dancer-Plugin-Passphrase 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.14 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: Sat, 07 Sep 2013 08:39:25 -0000 Author: gblach Date: Sat Sep 7 08:39:25 2013 New Revision: 326582 URL: http://svnweb.freebsd.org/changeset/ports/326582 Log: - Fix BUILD_DEPENDS & RUN_DEPENDS - Update pkg-descr PR: ports/181872 Approved by: crees, tabthorpe (mentors, implicit) Modified: head/security/p5-Dancer-Plugin-Passphrase/Makefile head/security/p5-Dancer-Plugin-Passphrase/pkg-descr Modified: head/security/p5-Dancer-Plugin-Passphrase/Makefile ============================================================================== --- head/security/p5-Dancer-Plugin-Passphrase/Makefile Sat Sep 7 08:23:45 2013 (r326581) +++ head/security/p5-Dancer-Plugin-Passphrase/Makefile Sat Sep 7 08:39:25 2013 (r326582) @@ -14,12 +14,14 @@ COMMENT= Passphrases and Passwords as ob LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Crypt-Eksblowfish>0:${PORTSDIR}/security/p5-Crypt-Eksblowfish \ - p5-Dancer>0:${PORTSDIR}/www/p5-Dancer \ - p5-Data-Entropy>0:${PORTSDIR}/security/p5-Data-Entropy -RUN_DEPENDS= p5-Crypt-Eksblowfish>0:${PORTSDIR}/security/p5-Crypt-Eksblowfish \ - p5-Dancer>0:${PORTSDIR}/www/p5-Dancer \ - p5-Data-Entropy>0:${PORTSDIR}/security/p5-Data-Entropy +BUILD_DEPENDS= p5-Dancer>0:${PORTSDIR}/www/p5-Dancer \ + p5-Data-Entropy>=0.005:${PORTSDIR}/security/p5-Data-Entropy \ + p5-Digest-Bcrypt>0:${PORTSDIR}/security/p5-Digest-Bcrypt \ + p5-Digest-SHA>=5.008:${PORTSDIR}/security/p5-Digest-SHA +RUN_DEPENDS= p5-Dancer>0:${PORTSDIR}/www/p5-Dancer \ + p5-Data-Entropy>=0.005:${PORTSDIR}/security/p5-Data-Entropy \ + p5-Digest-Bcrypt>0:${PORTSDIR}/security/p5-Digest-Bcrypt \ + p5-Digest-SHA>=5.008:${PORTSDIR}/security/p5-Digest-SHA PERL_CONFIGURE= yes Modified: head/security/p5-Dancer-Plugin-Passphrase/pkg-descr ============================================================================== --- head/security/p5-Dancer-Plugin-Passphrase/pkg-descr Sat Sep 7 08:23:45 2013 (r326581) +++ head/security/p5-Dancer-Plugin-Passphrase/pkg-descr Sat Sep 7 08:39:25 2013 (r326582) @@ -1,7 +1,6 @@ Dancer::Plugin::Passphrase manages the hashing of passwords for Dancer apps, -allowing developers to follow best cryptography practice without having to +allowing developers to follow cryptography best practices without having to become a cryptography expert. It uses the bcrypt algorithm as the default, -wrapping Crypt::Eksblowfish::Bcrypt, and also supports any hashing function -provided by Digest. +while also supporting any hashing function provided by Digest. WWW: http://search.cpan.org/dist/Dancer-Plugin-Passphrase/