From owner-svn-ports-head@FreeBSD.ORG Wed May 29 00:35:49 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CC95F495; Wed, 29 May 2013 00:35:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id BDEBA853; Wed, 29 May 2013 00:35:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4T0Zn3k018191; Wed, 29 May 2013 00:35:49 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4T0ZmMx018180; Wed, 29 May 2013 00:35:48 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201305290035.r4T0ZmMx018180@svn.freebsd.org> From: Martin Wilke Date: Wed, 29 May 2013 00:35:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319330 - in head/security: . py-SecretStorage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 May 2013 00:35:49 -0000 Author: miwi Date: Wed May 29 00:35:48 2013 New Revision: 319330 URL: http://svnweb.freebsd.org/changeset/ports/319330 Log: SecretService provides a way to securely storing passwords and other secrets in Python. It uses DBus Secret Service API that is supported by GNOME Keyring (>= 2.30) and KWallet (>= 4.8). It allows to create new passwords, delete and search for passwords matching given attributes. It also supports graphical prompts when unlocking is needed. WWW: http://pypi.python.org/pypi/SecretStorage PR: ports/179026 Submitted by: Douglas Thrift Added: head/security/py-SecretStorage/ head/security/py-SecretStorage/Makefile (contents, props changed) head/security/py-SecretStorage/distinfo (contents, props changed) head/security/py-SecretStorage/pkg-descr (contents, props changed) head/security/py-SecretStorage/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed May 29 00:34:17 2013 (r319329) +++ head/security/Makefile Wed May 29 00:35:48 2013 (r319330) @@ -735,6 +735,7 @@ SUBDIR += py-Products.PlonePAS SUBDIR += py-Products.PluggableAuthService SUBDIR += py-RestrictedPython + SUBDIR += py-SecretStorage SUBDIR += py-bcrypt SUBDIR += py-borg.localrole SUBDIR += py-cerealizer Added: head/security/py-SecretStorage/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-SecretStorage/Makefile Wed May 29 00:35:48 2013 (r319330) @@ -0,0 +1,20 @@ +# Created by: Douglas Thrift +# $FreeBSD$ + +PORTNAME= SecretStorage +PORTVERSION= 1.0.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= douglas@douglasthrift.net +COMMENT= Store passwords using the SecretService DBus API + +LICENSE= BSD + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:${PORTSDIR}/devel/py-dbus + +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +.include Added: head/security/py-SecretStorage/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-SecretStorage/distinfo Wed May 29 00:35:48 2013 (r319330) @@ -0,0 +1,2 @@ +SHA256 (SecretStorage-1.0.0.tar.gz) = 27c441f2cf524edaa0cf39abb4a9f65cde6ab99bb1471a9e2cdb11ffcfbc0081 +SIZE (SecretStorage-1.0.0.tar.gz) = 14063 Added: head/security/py-SecretStorage/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-SecretStorage/pkg-descr Wed May 29 00:35:48 2013 (r319330) @@ -0,0 +1,10 @@ +SecretService provides a way to securely storing passwords and other secrets in +Python. + +It uses DBus Secret Service API that is supported by GNOME Keyring (>= 2.30) and +KWallet (>= 4.8). + +It allows to create new passwords, delete and search for passwords matching +given attributes. It also supports graphical prompts when unlocking is needed. + +WWW: http://pypi.python.org/pypi/SecretStorage Added: head/security/py-SecretStorage/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-SecretStorage/pkg-plist Wed May 29 00:35:48 2013 (r319330) @@ -0,0 +1,19 @@ +%%PYTHON_SITELIBDIR%%/secretstorage/__init__.py +%%PYTHON_SITELIBDIR%%/secretstorage/__init__.pyc +%%PYTHON_SITELIBDIR%%/secretstorage/__init__.pyo +%%PYTHON_SITELIBDIR%%/secretstorage/collection.py +%%PYTHON_SITELIBDIR%%/secretstorage/collection.pyc +%%PYTHON_SITELIBDIR%%/secretstorage/collection.pyo +%%PYTHON_SITELIBDIR%%/secretstorage/defines.py +%%PYTHON_SITELIBDIR%%/secretstorage/defines.pyc +%%PYTHON_SITELIBDIR%%/secretstorage/defines.pyo +%%PYTHON_SITELIBDIR%%/secretstorage/exceptions.py +%%PYTHON_SITELIBDIR%%/secretstorage/exceptions.pyc +%%PYTHON_SITELIBDIR%%/secretstorage/exceptions.pyo +%%PYTHON_SITELIBDIR%%/secretstorage/item.py +%%PYTHON_SITELIBDIR%%/secretstorage/item.pyc +%%PYTHON_SITELIBDIR%%/secretstorage/item.pyo +%%PYTHON_SITELIBDIR%%/secretstorage/util.py +%%PYTHON_SITELIBDIR%%/secretstorage/util.pyc +%%PYTHON_SITELIBDIR%%/secretstorage/util.pyo +@dirrm %%PYTHON_SITELIBDIR%%/secretstorage