From owner-svn-ports-all@freebsd.org Fri Feb 12 21:03:11 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 BA5F1AA7554; Fri, 12 Feb 2016 21:03:11 +0000 (UTC) (envelope-from rm@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 96F1310F9; Fri, 12 Feb 2016 21:03:11 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1CL3A8h035930; Fri, 12 Feb 2016 21:03:10 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1CL3Asb035925; Fri, 12 Feb 2016 21:03:10 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201602122103.u1CL3Asb035925@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Fri, 12 Feb 2016 21:03:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408761 - in head/security: . py-keyrings.alt 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.20 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: Fri, 12 Feb 2016 21:03:11 -0000 Author: rm Date: Fri Feb 12 21:03:10 2016 New Revision: 408761 URL: https://svnweb.freebsd.org/changeset/ports/408761 Log: Alternate keyring backend implementations for use with the Python keyring package. WWW: https://pypi.python.org/pypi/keyrings.alt PR: 207046 Submitted by: Douglas Thrift Added: head/security/py-keyrings.alt/ head/security/py-keyrings.alt/Makefile (contents, props changed) head/security/py-keyrings.alt/distinfo (contents, props changed) head/security/py-keyrings.alt/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Fri Feb 12 20:52:05 2016 (r408760) +++ head/security/Makefile Fri Feb 12 21:03:10 2016 (r408761) @@ -835,6 +835,7 @@ SUBDIR += py-kerberos SUBDIR += py-keyczar SUBDIR += py-keyring + SUBDIR += py-keyrings.alt SUBDIR += py-letsencrypt SUBDIR += py-libnacl SUBDIR += py-m2crypto Added: head/security/py-keyrings.alt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-keyrings.alt/Makefile Fri Feb 12 21:03:10 2016 (r408761) @@ -0,0 +1,34 @@ +# Created by: Douglas Thrift +# $FreeBSD$ + +PORTNAME= keyrings.alt +PORTVERSION= 1.1 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= douglas@douglasthrift.net +COMMENT= Alternate Python keyring implementations + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.9:${PORTSDIR}/devel/py-setuptools_scm + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +OPTIONS_DEFINE= ENCRYPTED_FILE GNOME_KEYRING KDE_KWALLET KEYCZAR PYFS +ENCRYPTED_FILE_DESC= Install pycrypto to support the Encrypted File backend +GNOME_KEYRING_DESC= Install GNOME Keyring to support the Gnome backend +KDE_KWALLET_DESC= Install KDE KWallet to support the kwallet backend +KEYCZAR_DESC= Install keyczar to support keyring encryption +PYFS_DESC= Install pyfilesystem to support the pyfs backend + +ENCRYPTED_FILE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.5:${PORTSDIR}/security/py-pycrypto +GNOME_KEYRING_USE= GNOME=pygobject3 +KDE_KWALLET_USE= KDE4=pykde4 +KEYCZAR_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}keyczar>=0.71c:${PORTSDIR}/security/py-keyczar +PYFS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fs>=0.5:${PORTSDIR}/devel/py-fs + +.include Added: head/security/py-keyrings.alt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-keyrings.alt/distinfo Fri Feb 12 21:03:10 2016 (r408761) @@ -0,0 +1,2 @@ +SHA256 (keyrings.alt-1.1.tar.gz) = dc3b3ad7d34f22744de75bfcbeb608445aaf059ff4bb28bf2247de8372be207b +SIZE (keyrings.alt-1.1.tar.gz) = 21520 Added: head/security/py-keyrings.alt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-keyrings.alt/pkg-descr Fri Feb 12 21:03:10 2016 (r408761) @@ -0,0 +1,4 @@ +Alternate keyring backend implementations for use with the Python keyring +package. + +WWW: https://pypi.python.org/pypi/keyrings.alt