Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Oct 2018 08:45:50 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r481611 - head/security/revelation
Message-ID:  <201810090845.w998joQx039223@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Tue Oct  9 08:45:49 2018
New Revision: 481611
URL: https://svnweb.freebsd.org/changeset/ports/481611

Log:
  security/revelation: Chase dictionary rename from r408137
  
  r408137 of security/cracklib renamed pw_dict to cracklib-words and
  revelation now fails to check passwords with 9 characters or more:
  
  Traceback (most recent call last):
    File "/usr/local/lib/python2.7/site-packages/revelation/dialog.py", line 1183, in __cb_changed
      util.check_password(password)
    File "/usr/local/lib/python2.7/site-packages/revelation/util.py", line 97, in check_password
      cracklib.FascistCheck(password, "/usr/local/libdata/cracklib/pw_dict")
  OSError: [Errno 2] No such file or directory: '/usr/local/libdata/cracklib/pw_dict.pwd'
  
  PR:		212367
  Submitted by:	Tomoaki AOKI <junchoon@dec.sakura.ne.jp>

Modified:
  head/security/revelation/Makefile

Modified: head/security/revelation/Makefile
==============================================================================
--- head/security/revelation/Makefile	Tue Oct  9 08:24:02 2018	(r481610)
+++ head/security/revelation/Makefile	Tue Oct  9 08:45:49 2018	(r481611)
@@ -3,7 +3,7 @@
 
 PORTNAME=	revelation
 PORTVERSION=	0.4.14
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	security gnome
 MASTER_SITES=	https://bitbucket.org/erikg/revelation/downloads/
 
@@ -31,7 +31,7 @@ GCONF_SCHEMAS=	revelation.schemas
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-DICTPATH=	${LOCALBASE}/libdata/cracklib/pw_dict
+DICTPATH=	${LOCALBASE}/libdata/cracklib/cracklib-words
 
 post-patch:
 	@${REINPLACE_CMD} -e \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810090845.w998joQx039223>