Bug 181872 - [patch] security/p5-Dancer-Plugin-Passphrase depends on p5-Digest-Bcrypt
Summary: [patch] security/p5-Dancer-Plugin-Passphrase depends on p5-Digest-Bcrypt
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Grzegorz Blach
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-06 17:10 UTC by Henk van Oers
Modified: 2013-09-07 09:43 UTC (History)
0 users

See Also:


Attachments
file.diff (680 bytes, patch)
2013-09-06 17:10 UTC, Henk van Oers
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Henk van Oers 2013-09-06 17:10:00 UTC
This plugin uses Bcrypt as default by "use Digest;"
p5-Crypt-Eksblowfish is pulled in by p5-Digest-Bcrypt

Fix: Patch attached with submission follows:
How-To-Repeat: Use the default.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-06 21:08:06 UTC
Responsible Changed
From-To: freebsd-ports-bugs->gblach

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-09-07 09:39:33 UTC
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/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Grzegorz Blach freebsd_committer freebsd_triage 2013-09-07 09:43:02 UTC
State Changed
From-To: open->closed

Committed, thanks.