From owner-svn-ports-all@freebsd.org Mon Jul 11 04:29:58 2016 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 971F5B90F9F; Mon, 11 Jul 2016 04:29:58 +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 49CEA18BD; Mon, 11 Jul 2016 04:29:58 +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 u6B4TvNH099886; Mon, 11 Jul 2016 04:29:57 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6B4Tvd0099882; Mon, 11 Jul 2016 04:29:57 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607110429.u6B4Tvd0099882@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 11 Jul 2016 04:29:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418354 - in head/security: . py-safe 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.22 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: Mon, 11 Jul 2016 04:29:58 -0000 Author: jbeich Date: Mon Jul 11 04:29:56 2016 New Revision: 418354 URL: https://svnweb.freebsd.org/changeset/ports/418354 Log: security/py-safe: add new port PR: 210972 Submitted by: Andrej Ebert Is your password safe? Safe will check the password strength for you. https://pypi.python.org/pypi/Safe Added: head/security/py-safe/ head/security/py-safe/Makefile (contents, props changed) head/security/py-safe/distinfo (contents, props changed) head/security/py-safe/pkg-descr (contents, props changed) Modified: head/security/Makefile (contents, props changed) Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Jul 11 04:29:28 2016 (r418353) +++ head/security/Makefile Mon Jul 11 04:29:56 2016 (r418354) @@ -895,6 +895,7 @@ SUBDIR += py-rekall_gui SUBDIR += py-requests-kerberos SUBDIR += py-rsa + SUBDIR += py-safe SUBDIR += py-scrypt SUBDIR += py-service_identity SUBDIR += py-signedjson Added: head/security/py-safe/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-safe/Makefile Mon Jul 11 04:29:56 2016 (r418354) @@ -0,0 +1,20 @@ +# Created by: andrej@ebert.su +# $FreeBSD$ + +PORTNAME= safe +PORTVERSION= 0.4 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Safe-${PORTVERSION} + +MAINTAINER= andrej@ebert.su +COMMENT= Python library to test password strength + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python:2.6+ +USE_PYTHON= autoplist distutils + +.include Added: head/security/py-safe/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-safe/distinfo Mon Jul 11 04:29:56 2016 (r418354) @@ -0,0 +1,2 @@ +SHA256 (Safe-0.4.tar.gz) = a2fdac9fe8a9dcf02b438201d6ce0b7be78f85dc6492d03edfb89be2adf489de +SIZE (Safe-0.4.tar.gz) = 56803 Added: head/security/py-safe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-safe/pkg-descr Mon Jul 11 04:29:56 2016 (r418354) @@ -0,0 +1,4 @@ +Is your password safe? +Safe will check the password strength for you. + +WWW: https://pypi.python.org/pypi/Safe