diff options
author | tobik <tobik@FreeBSD.org> | 2018-10-09 16:45:49 +0800 |
---|---|---|
committer | tobik <tobik@FreeBSD.org> | 2018-10-09 16:45:49 +0800 |
commit | 62447108d72f01cedd188ff4f6f8ed9d6a388b7b (patch) | |
tree | 3013c3ba70ef6f34285ab9887ee1d58ef7afdd8f | |
parent | 9835aa2f6e59b29dc683db6af565fbdb805f2aea (diff) | |
download | freebsd-ports-gnome-62447108d72f01cedd188ff4f6f8ed9d6a388b7b.tar.gz freebsd-ports-gnome-62447108d72f01cedd188ff4f6f8ed9d6a388b7b.tar.zst freebsd-ports-gnome-62447108d72f01cedd188ff4f6f8ed9d6a388b7b.zip |
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>
-rw-r--r-- | security/revelation/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/revelation/Makefile b/security/revelation/Makefile index 7b741fdeb022..fe06aacb0567 100644 --- a/security/revelation/Makefile +++ b/security/revelation/Makefile @@ -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 \ |