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 DD9C21382C5 for ; Sun, 17 May 2020 06:25:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D27D7E08F1; Sun, 17 May 2020 06:25:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B33EEE08F1 for ; Sun, 17 May 2020 06:25:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 17F4734F6DB for ; Sun, 17 May 2020 06:25:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74D3518F for ; Sun, 17 May 2020 06:25:16 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1589696567.27d40cd12e45be2c95fa718edea75045414b0c8c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/secretstorage/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/secretstorage/secretstorage-3.1.2.ebuild X-VCS-Directories: dev-python/secretstorage/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 27d40cd12e45be2c95fa718edea75045414b0c8c X-VCS-Branch: master Date: Sun, 17 May 2020 06:25:16 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3586aaa1-5846-4c3f-ac70-cfb65289dc81 X-Archives-Hash: f47eae9662f54a6834ea140ff91813ca commit: 27d40cd12e45be2c95fa718edea75045414b0c8c Author: Michał Górny gentoo org> AuthorDate: Sun May 17 06:22:26 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 17 06:22:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27d40cd1 dev-python/secretstorage: Add a test-dep on gnome-keyring Closes: https://bugs.gentoo.org/714872 Signed-off-by: Michał Górny gentoo.org> dev-python/secretstorage/secretstorage-3.1.2.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/secretstorage/secretstorage-3.1.2.ebuild b/dev-python/secretstorage/secretstorage-3.1.2.ebuild index 9418b7f1277..bd2d5906744 100644 --- a/dev-python/secretstorage/secretstorage-3.1.2.ebuild +++ b/dev-python/secretstorage/secretstorage-3.1.2.ebuild @@ -12,6 +12,7 @@ MY_PN="SecretStorage" DESCRIPTION="Python bindings to FreeDesktop.org Secret Service API." HOMEPAGE="https://github.com/mitya57/secretstorage https://pypi.org/project/SecretStorage/" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" LICENSE="BSD" SLOT="0" @@ -21,8 +22,9 @@ RDEPEND=" dev-python/cryptography[${PYTHON_USEDEP}] >=dev-python/jeepney-0.4.2[${PYTHON_USEDEP}] " - -S="${WORKDIR}/${MY_PN}-${PV}" +BDEPEND=" + test? ( gnome-base/gnome-keyring ) +" distutils_enable_tests unittest distutils_enable_sphinx docs \