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 DC59C13888F for ; Wed, 21 Oct 2015 13:42:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F1DF21C062; 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 F3CE721C05F for ; Wed, 21 Oct 2015 13:41:31 +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 4B34234092E 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 886B11565 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.8ad288b65a32f56fb14d720ca3e4c3317867c53d.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/python-pathlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/python-pathlib/python-pathlib-1.0.ebuild X-VCS-Directories: virtual/python-pathlib/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 8ad288b65a32f56fb14d720ca3e4c3317867c53d 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: 4d57beca-8e65-4742-95c8-54a393a1185b X-Archives-Hash: 5290b813bc77217c8605aab4ac40bb2a commit: 8ad288b65a32f56fb14d720ca3e4c3317867c53d Author: Justin Lecher gentoo org> AuthorDate: Wed Oct 21 12:26: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=8ad288b6 virtual/python-pathlib: Add python3.5 support Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> virtual/python-pathlib/python-pathlib-1.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/virtual/python-pathlib/python-pathlib-1.0.ebuild b/virtual/python-pathlib/python-pathlib-1.0.ebuild index 6a1e388..b73637a 100644 --- a/virtual/python-pathlib/python-pathlib-1.0.ebuild +++ b/virtual/python-pathlib/python-pathlib-1.0.ebuild @@ -3,7 +3,9 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy ) + inherit python-r1 DESCRIPTION="A virtual for Python pathlib module"