Bug 180371 - [patch] security/kpcli: add support for pwck
Summary: [patch] security/kpcli: add support for pwck
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: Mark Felder
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-07-07 21:10 UTC by Mark Felder
Modified: 2013-07-09 15:30 UTC (History)
0 users

See Also:


Attachments
file.diff (722 bytes, patch)
2013-07-07 21:10 UTC, Mark Felder
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Mark Felder freebsd_committer freebsd_triage 2013-07-07 21:10:00 UTC
There's a command in recent versions of kpcli -- pwck. It is supposed to allow you to check the security of your passwords. This doesn't function because we're missing a perl library in RUN_DEPENDS, p5-Data-Password

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-07-07 21:10:20 UTC
Responsible Changed
From-To: freebsd-ports-bugs->swills

swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-07-07 21:10:21 UTC
Maintainer of security/kpcli,

Please note that PR ports/180371 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/180371

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 3 Edwin Groothuis freebsd_committer freebsd_triage 2013-07-07 21:10:22 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 4 Mark Felder freebsd_committer freebsd_triage 2013-07-08 16:56:13 UTC
Responsible Changed
From-To: swills->feld

taking my PRs
Comment 5 alexander.4mail 2013-07-09 11:40:55 UTC
On Sun, Jul 07, 2013 at 08:10:21PM +0000, Edwin Groothuis wrote:
> Maintainer of security/kpcli,
> 
> Please note that PR ports/180371 has just been submitted.
> 
> If it contains a patch for an upgrade, an enhancement or a bug fix
> you agree on, reply to this email stating that you approve the patch
> and a committer will take care of it.
> 
> The full text of the PR can be found at:
>     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/180371
> 
> -- 
> Edwin Groothuis via the GNATS Auto Assign Tool
> edwin@FreeBSD.org

Patch is ok, please commit. Thanks.
Comment 6 dfilter service freebsd_committer freebsd_triage 2013-07-09 15:26:08 UTC
Author: feld
Date: Tue Jul  9 14:25:56 2013
New Revision: 322560
URL: http://svnweb.freebsd.org/changeset/ports/322560

Log:
  - Add support for pwck command
  
  PR: ports/180371
  Approved by: swills (mentor)

Modified:
  head/security/kpcli/Makefile

Modified: head/security/kpcli/Makefile
==============================================================================
--- head/security/kpcli/Makefile	Tue Jul  9 13:37:13 2013	(r322559)
+++ head/security/kpcli/Makefile	Tue Jul  9 14:25:56 2013	(r322560)
@@ -2,6 +2,7 @@
 
 PORTNAME=	kpcli
 PORTVERSION=	2.3
+PORTREVISION=	1
 CATEGORIES=	security
 MASTER_SITES=	SF/kpcli/
 EXTRACT_SUFX=	.pl
@@ -17,11 +18,12 @@ RUN_DEPENDS=	p5-Crypt-Rijndael>=1.08:${P
 		p5-Sort-Naturally>=1.02:${PORTSDIR}/textproc/p5-Sort-Naturally \
 		p5-File-KeePass>=2.03:${PORTSDIR}/security/p5-File-KeePass \
 		p5-Term-ShellUI>=0.9:${PORTSDIR}/shells/p5-Term-ShellUI \
-		p5-ReadLine-Gnu>=1.19:${PORTSDIR}/devel/p5-ReadLine-Gnu
+		p5-ReadLine-Gnu>=1.19:${PORTSDIR}/devel/p5-ReadLine-Gnu \
+		p5-Data-Password>=0:${PORTSDIR}/security/p5-Data-Password
+
 BUILD_DEPENDS:=	${RUN_DEPENDS}
 
 USE_PERL5=	yes
-
 MAN1=	${PORTNAME}.1
 MANCOMPRESSED=	yes
 PLIST_FILES=	bin/kpcli
_______________________________________________
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 7 Mark Felder freebsd_committer freebsd_triage 2013-07-09 15:27:02 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!