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 473EE1388C3 for ; Tue, 10 Nov 2015 10:54:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8838A21C007; Tue, 10 Nov 2015 10:54:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CBF3121C004 for ; Tue, 10 Nov 2015 10:54:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B1B0A3404A5 for ; Tue, 10 Nov 2015 10:54:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 712DE2418 for ; Tue, 10 Nov 2015 10:54:20 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1447152849.f4ceb532a7bd0c2e10a2ff935dfd578673afceb7.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mergedict/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mergedict/mergedict-0.2.0.ebuild X-VCS-Directories: dev-python/mergedict/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: f4ceb532a7bd0c2e10a2ff935dfd578673afceb7 X-VCS-Branch: master Date: Tue, 10 Nov 2015 10:54:20 +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: 542f4e3b-7059-41f8-849b-0feb3c9cba5c X-Archives-Hash: 9d175da00c938706824e0f162440ab3a commit: f4ceb532a7bd0c2e10a2ff935dfd578673afceb7 Author: Justin Lecher gentoo org> AuthorDate: Tue Nov 10 08:31:28 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Nov 10 10:54:09 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4ceb532 dev-python/mergedict: Use virtual for module with mixed support Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/mergedict/mergedict-0.2.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/mergedict/mergedict-0.2.0.ebuild b/dev-python/mergedict/mergedict-0.2.0.ebuild index 04bc687..6cf13a6 100644 --- a/dev-python/mergedict/mergedict-0.2.0.ebuild +++ b/dev-python/mergedict/mergedict-0.2.0.ebuild @@ -3,7 +3,8 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +PYTHON_COMPAT=( python2_7 python3_{3,4} pypy ) inherit distutils-r1 @@ -17,4 +18,4 @@ KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="dev-python/singledispatch[${PYTHON_USEDEP}]" +RDEPEND="virtual/python-singledispatch[${PYTHON_USEDEP}]"