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 9FD8813888F for ; Wed, 21 Oct 2015 13:45:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 441BA21C016; Wed, 21 Oct 2015 13:45:34 +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 BE32B21C016 for ; Wed, 21 Oct 2015 13:45:08 +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 E5BB134090F for ; Wed, 21 Oct 2015 13:45:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C43171565 for ; Wed, 21 Oct 2015 13:44:58 +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: <1445430545.effea706c224c2a4d9904dbeb99553ffe32ac99f.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/testpath/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/testpath/testpath-0.2.ebuild dev-python/testpath/testpath-9999.ebuild X-VCS-Directories: dev-python/testpath/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: effea706c224c2a4d9904dbeb99553ffe32ac99f X-VCS-Branch: master Date: Wed, 21 Oct 2015 13:44:58 +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: b89f857f-7bb1-4beb-a57a-be38a88b2f3d X-Archives-Hash: bfeb8c9ea2244fabf902960a0ab00abe commit: effea706c224c2a4d9904dbeb99553ffe32ac99f Author: Justin Lecher gentoo org> AuthorDate: Wed Oct 21 12:29:05 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Oct 21 12:29:05 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=effea706 dev-python/testpath: Add python3.5 support Use virtual package for pathlib support Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/testpath/testpath-0.2.ebuild | 5 +++-- dev-python/testpath/testpath-9999.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-python/testpath/testpath-0.2.ebuild b/dev-python/testpath/testpath-0.2.ebuild index df61d95..a3ee765 100644 --- a/dev-python/testpath/testpath-0.2.ebuild +++ b/dev-python/testpath/testpath-0.2.ebuild @@ -3,7 +3,8 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python2_7 python{3_3,3_4} ) + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) inherit distutils-r1 @@ -18,8 +19,8 @@ IUSE="doc test" DEPEND=" test? ( - dev-python/pathlib[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] + virtual/python-pathlib[${PYTHON_USEDEP}] ) doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) " diff --git a/dev-python/testpath/testpath-9999.ebuild b/dev-python/testpath/testpath-9999.ebuild index 61ceb0c..90b4b70 100644 --- a/dev-python/testpath/testpath-9999.ebuild +++ b/dev-python/testpath/testpath-9999.ebuild @@ -3,7 +3,8 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python2_7 python{3_3,3_4} ) + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) inherit distutils-r1 git-r3 @@ -17,8 +18,8 @@ IUSE="doc test" DEPEND=" test? ( - dev-python/pathlib[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] + virtual/python-pathlib[${PYTHON_USEDEP}] ) doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) "