From owner-svn-ports-all@freebsd.org Thu Jan 19 13:47:29 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8BA47CB7AB3; Thu, 19 Jan 2017 13:47:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4CEF21DE5; Thu, 19 Jan 2017 13:47:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0JDlS1w049002; Thu, 19 Jan 2017 13:47:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0JDlSAb048998; Thu, 19 Jan 2017 13:47:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201701191347.v0JDlSAb048998@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 19 Jan 2017 13:47:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431871 - in head/security: . py-zxcvbn-python X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 13:47:29 -0000 Author: jbeich Date: Thu Jan 19 13:47:27 2017 New Revision: 431871 URL: https://svnweb.freebsd.org/changeset/ports/431871 Log: devel/py-zxcvbn-python: add new port zxcvbn is a password strength estimator inspired by password crackers. Through pattern matching and conservative estimation, it recognizes and weighs 30k common passwords, common names and surnames according to US census data, popular English words from Wikipedia and US television and movies, and other common patterns like dates, repeats (aaa), sequences (abcd), keyboard patterns (qwertyuiop), and l33t speak. https://pypi.python.org/pypi/zxcvbn-python Added: head/security/py-zxcvbn-python/ head/security/py-zxcvbn-python/Makefile (contents, props changed) head/security/py-zxcvbn-python/distinfo (contents, props changed) head/security/py-zxcvbn-python/pkg-descr (contents, props changed) Modified: head/security/Makefile (contents, props changed) Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Jan 19 13:47:13 2017 (r431870) +++ head/security/Makefile Thu Jan 19 13:47:27 2017 (r431871) @@ -943,6 +943,7 @@ SUBDIR += py-zope.security SUBDIR += py-zope.securitypolicy SUBDIR += py-zope.session + SUBDIR += py-zxcvbn-python SUBDIR += py3-libnacl SUBDIR += qtkeychain-qt4 SUBDIR += qtkeychain-qt5 Added: head/security/py-zxcvbn-python/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-zxcvbn-python/Makefile Thu Jan 19 13:47:27 2017 (r431871) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= zxcvbn-python +PORTVERSION= 4.4.12 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Realistic password strength estimator + +LICENSE= MIT + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/security/py-zxcvbn-python/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-zxcvbn-python/distinfo Thu Jan 19 13:47:27 2017 (r431871) @@ -0,0 +1,3 @@ +TIMESTAMP = 1483999859 +SHA256 (zxcvbn-python-4.4.12.tar.gz) = f8cda13aec0c14f2ae9cd85057c12628c2c059a10ca7e02dcab26b9215000de4 +SIZE (zxcvbn-python-4.4.12.tar.gz) = 403246 Added: head/security/py-zxcvbn-python/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-zxcvbn-python/pkg-descr Thu Jan 19 13:47:27 2017 (r431871) @@ -0,0 +1,9 @@ +zxcvbn is a password strength estimator inspired by password +crackers. Through pattern matching and conservative estimation, it +recognizes and weighs 30k common passwords, common names and surnames +according to US census data, popular English words from Wikipedia and +US television and movies, and other common patterns like dates, +repeats (aaa), sequences (abcd), keyboard patterns (qwertyuiop), and +l33t speak. + +WWW: https://pypi.python.org/pypi/zxcvbn-python