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 3C137139696 for ; Mon, 1 May 2017 14:56:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CAF921C08A; Mon, 1 May 2017 14:56:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6866B21C08A for ; Mon, 1 May 2017 14:56:30 +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 634563416F7 for ; Mon, 1 May 2017 14:56:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97A5E7441 for ; Mon, 1 May 2017 14:56:27 +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: <1493650574.9ac01c4517c566d3ef4aba117cb3cb85f517dfc7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/atomicwrites/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/atomicwrites/atomicwrites-1.1.5-r2.ebuild X-VCS-Directories: dev-python/atomicwrites/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9ac01c4517c566d3ef4aba117cb3cb85f517dfc7 X-VCS-Branch: master Date: Mon, 1 May 2017 14:56:27 +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: 7c7739ae-b14b-4cf8-a957-9a8926fc0ff1 X-Archives-Hash: 6a4635f1409c9d98ede2f44a348d2f95 commit: 9ac01c4517c566d3ef4aba117cb3cb85f517dfc7 Author: Michał Górny gentoo org> AuthorDate: Mon May 1 13:28:27 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 1 14:56:14 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ac01c45 dev-python/atomicwrites: Add missing setuptools dep dev-python/atomicwrites/atomicwrites-1.1.5-r2.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/atomicwrites/atomicwrites-1.1.5-r2.ebuild b/dev-python/atomicwrites/atomicwrites-1.1.5-r2.ebuild index 040ea3916c2..71e648359d6 100644 --- a/dev-python/atomicwrites/atomicwrites-1.1.5-r2.ebuild +++ b/dev-python/atomicwrites/atomicwrites-1.1.5-r2.ebuild @@ -6,7 +6,7 @@ PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) inherit distutils-r1 -DESCRIPTION="Atomic file writes." +DESCRIPTION="Atomic file writes" HOMEPAGE="https://github.com/untitaker/python-atomicwrites" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" @@ -15,7 +15,6 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="" -RDEPEND="${DEPEND}" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" DOCS=( README.rst )