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 18D6A13888F for ; Wed, 21 Oct 2015 13:42:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F068521C067; Wed, 21 Oct 2015 13:41:33 +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 2B4E521C063 for ; Wed, 21 Oct 2015 13:41:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5CC81340945 for ; Wed, 21 Oct 2015 13:41:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76D971564 for ; Wed, 21 Oct 2015 13:41:27 +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: <1445434824.515dbbf225912b125854dc9dd9d3ebc8d188b826.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pathlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pathlib/pathlib-1.0.1-r1.ebuild dev-python/pathlib/pathlib-1.0.1.ebuild X-VCS-Directories: dev-python/pathlib/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 515dbbf225912b125854dc9dd9d3ebc8d188b826 X-VCS-Branch: master Date: Wed, 21 Oct 2015 13:41: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: c6f35979-c202-49e5-91bc-398f7a41fa59 X-Archives-Hash: 32a33b3319dc9d411d6071035d95cf0e commit: 515dbbf225912b125854dc9dd9d3ebc8d188b826 Author: Justin Lecher gentoo org> AuthorDate: Wed Oct 21 12:16:13 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Oct 21 13:40:24 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=515dbbf2 dev-python/pathlib: Don't install existing modules on py3.4 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/pathlib/{pathlib-1.0.1.ebuild => pathlib-1.0.1-r1.ebuild} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/pathlib/pathlib-1.0.1.ebuild b/dev-python/pathlib/pathlib-1.0.1-r1.ebuild similarity index 90% rename from dev-python/pathlib/pathlib-1.0.1.ebuild rename to dev-python/pathlib/pathlib-1.0.1-r1.ebuild index a85afa5..56d014d 100644 --- a/dev-python/pathlib/pathlib-1.0.1.ebuild +++ b/dev-python/pathlib/pathlib-1.0.1-r1.ebuild @@ -5,7 +5,8 @@ EAPI=5 # In Python 3.4, pathlib is now part of the standard library. -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) +PYTHON_COMPAT=( python{2_7,3_3} pypy ) + inherit distutils-r1 DESCRIPTION="Object-oriented filesystem paths"