From owner-cvs-ports@FreeBSD.ORG Fri Mar 2 18:47:44 2012 Return-Path: Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F40801065676; Fri, 2 Mar 2012 18:47:43 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C78A18FC2C; Fri, 2 Mar 2012 18:47:43 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id q22Ilh0j090589; Fri, 2 Mar 2012 18:47:43 GMT (envelope-from jgh@repoman.freebsd.org) Received: (from jgh@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id q22Ilhup090588; Fri, 2 Mar 2012 18:47:43 GMT (envelope-from jgh) Message-Id: <201203021847.q22Ilhup090588@repoman.freebsd.org> From: Jason Helfman Date: Fri, 2 Mar 2012 18:47:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/security/py-keyring Makefile distinfo pkg-plist X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 18:47:44 -0000 jgh 2012-03-02 18:47:43 UTC FreeBSD ports repository Modified files: security/py-keyring Makefile distinfo pkg-plist Log: -Update to 0.8 * Mac OS X keyring backend now uses subprocess calls to the `security` command instead of calling the API, which with the latest updates, no longer allows Python to invoke from a virtualenv. Fixes issue #13. * When using file-based storage, the keyring files are no longer stored in the user's home directory, but are instead stored in platform-friendly locations (`%localappdata%\Python Keyring` on Windows and according to the freedesktop.org Base Dir Specification (`$XDG_DATA_HOME/python_keyring` or `$HOME/.local/share/python_keyring`) on other operating systems). This fixes #21. *Backward Compatibility Notice* Due to the new storage location for file-based keyrings, keyring 0.8 supports backward compatibility by automatically moving the password files to the updated location. In general, users can upgrade to 0.8 and continue to operate normally. Any applications that customize the storage location or make assumptions about the storage location will need to take this change into consideration. Additionally, after upgrading to 0.8, it is not possible to downgrade to 0.7 without manually moving configuration files. In 1.0, the backward compatibilty will be removed. PR: ports/165606 Submitted by: maintainer, douglas@douglasthrift.net Revision Changes Path 1.11 +1 -1 ports/security/py-keyring/Makefile 1.9 +2 -2 ports/security/py-keyring/distinfo 1.7 +6 -0 ports/security/py-keyring/pkg-plist