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:
Responsible Changed From-To: freebsd-ports-bugs->swills swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
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
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Responsible Changed From-To: swills->feld taking my PRs
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.
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"
State Changed From-To: feedback->closed Committed. Thanks!