From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 64B5E1381F3 for ; Wed, 23 Oct 2013 05:22:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9D97E0A43; Wed, 23 Oct 2013 05:22:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3D77CE0A43 for ; Wed, 23 Oct 2013 05:22:27 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5A8D333F0B2 for ; Wed, 23 Oct 2013 05:22:26 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2310) id 262A32004C; Wed, 23 Oct 2013 05:22:25 +0000 (UTC) From: "Matt Thode (prometheanfire)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, prometheanfire@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/keyring: keyring-3.1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: keyring-3.1.ebuild ChangeLog X-VCS-Directories: dev-python/keyring X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131023052225.262A32004C@flycatcher.gentoo.org> Date: Wed, 23 Oct 2013 05:22:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 59d133ce-4b3e-4b92-b5ff-2116724bea1e X-Archives-Hash: 603ae56502b0dab27ca8844a21fd5808 prometheanfire 13/10/23 05:22:25 Modified: ChangeLog Added: keyring-3.1.ebuild Log: update of dev-python/keyring to 3.1 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3) Revision Changes Path 1.10 dev-python/keyring/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/keyring/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/keyring/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/keyring/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/keyring/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 27 Sep 2013 02:15:22 -0000 1.9 +++ ChangeLog 23 Oct 2013 05:22:25 -0000 1.10 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/keyring # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/keyring/ChangeLog,v 1.9 2013/09/27 02:15:22 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/keyring/ChangeLog,v 1.10 2013/10/23 05:22:25 prometheanfire Exp $ + +*keyring-3.1 (23 Oct 2013) + + 23 Oct 2013; Matthew Thode +keyring-3.1.ebuild: + update of dev-python/keyring to 3.1 27 Sep 2013; Matthew Thode keyring-1.5-r1.ebuild: fix for bug 485384 1.1 dev-python/keyring/keyring-3.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/keyring/keyring-3.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/keyring/keyring-3.1.ebuild?rev=1.1&content-type=text/plain Index: keyring-3.1.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/keyring/keyring-3.1.ebuild,v 1.1 2013/10/23 05:22:25 prometheanfire Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} python{3_2,3_3} pypy2_0 ) #tests restricted due to unpackaged dependancies RESTRICT="test" inherit distutils-r1 DESCRIPTION="Provides access to the system keyring service" HOMEPAGE="https://bitbucket.org/kang/python-keyring-lib" SRC_URI="mirror://pypi/k/${PN}/${P}.zip" LICENSE="PSF-2" KEYWORDS="~amd64 ~x86" SLOT="0" IUSE="test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] dev-python/pytest-runner[${PYTHON_USEDEP}] app-arch/unzip test? ( virtual/python-unittest2[${PYTHON_USEDEP}] )" RDEPEND="" PATCHES=( ) # "${FILESDIR}/setup-1.0.patch" python_test() { # test_backend.py and test_core.py access keyring backends # which may spawn password prompts and do other damage. # XXX: leave out the harmless tests (dummy backends?) for t in test_{cli,util}.py; do "${PYTHON}" "${BUILD_DIR}"/lib/${PN}/tests/${t} \ || die "${t} fails with ${EPYTHON}" done }