From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 98037139085 for ; Mon, 9 Jan 2017 18:32:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4D54E0C90; Mon, 9 Jan 2017 18:31:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B28F0E0C90 for ; Mon, 9 Jan 2017 18:31:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7FC87340F53 for ; Mon, 9 Jan 2017 18:31:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8685E261B for ; Mon, 9 Jan 2017 18:31:55 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1483986691.0adb2e1d0cb71e9785a639d6c7c213299960b304.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/keyring/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/keyring/keyring-10.1-r1.ebuild X-VCS-Directories: dev-python/keyring/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: 0adb2e1d0cb71e9785a639d6c7c213299960b304 X-VCS-Branch: master Date: Mon, 9 Jan 2017 18:31:55 +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: 05226c2b-d136-4dde-929e-07334e5f8a25 X-Archives-Hash: 03f39d71b24372b03453d6e02e9aae53 commit: 0adb2e1d0cb71e9785a639d6c7c213299960b304 Author: Matthew Thode gentoo org> AuthorDate: Mon Jan 9 18:31:13 2017 +0000 Commit: Matt Thode gentoo org> CommitDate: Mon Jan 9 18:31:31 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0adb2e1d dev-python/keyring: updating setuptools_scm version for bug 605204 Package-Manager: portage-2.3.0 dev-python/keyring/keyring-10.1-r1.ebuild | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/dev-python/keyring/keyring-10.1-r1.ebuild b/dev-python/keyring/keyring-10.1-r1.ebuild new file mode 100644 index 00000000..fbafe68 --- /dev/null +++ b/dev-python/keyring/keyring-10.1-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +DESCRIPTION="Provides access to the system keyring service" +HOMEPAGE="https://github.com/jaraco/keyring" +SRC_URI="mirror://pypi/k/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="PSF-2" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}] + dev-python/secretstorage[${PYTHON_USEDEP}] + test? ( + dev-python/pytest-runner[${PYTHON_USEDEP}] + >=dev-python/pytest-2.8[${PYTHON_USEDEP}] + )" +RDEPEND="" + +python_test() { + py.test -v -v || die "testsuite failed under ${EPYTHON}" +}