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 184B6138334 for ; Wed, 2 Jan 2019 21:29:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D86E5E09A6; Wed, 2 Jan 2019 21:29:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0FF3E09A6 for ; Wed, 2 Jan 2019 21:29:18 +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 0A714335D01 for ; Wed, 2 Jan 2019 21:29:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02BC050B for ; Wed, 2 Jan 2019 21:29:14 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1546464423.97142c6e2a787450d96a0c05dadfca1e42bc421c.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pychroot/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pychroot/pychroot-9999.ebuild X-VCS-Directories: dev-python/pychroot/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 97142c6e2a787450d96a0c05dadfca1e42bc421c X-VCS-Branch: master Date: Wed, 2 Jan 2019 21:29:14 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 09d8fd26-1499-42dd-9e10-c50ca7a75622 X-Archives-Hash: 44e52fbb05cf5571563399e478b1de24 commit: 97142c6e2a787450d96a0c05dadfca1e42bc421c Author: Tim Harder gentoo org> AuthorDate: Wed Jan 2 21:27:03 2019 +0000 Commit: Tim Harder gentoo org> CommitDate: Wed Jan 2 21:27:03 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97142c6e dev-python/pychroot: add py37 support Signed-off-by: Tim Harder gentoo.org> dev-python/pychroot/pychroot-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/pychroot/pychroot-9999.ebuild b/dev-python/pychroot/pychroot-9999.ebuild index 57a2af631a2..a59532024a5 100644 --- a/dev-python/pychroot/pychroot-9999.ebuild +++ b/dev-python/pychroot/pychroot-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -PYTHON_COMPAT=( python{3_4,3_5,3_6} ) +PYTHON_COMPAT=( python3_{4,5,6,7} ) inherit distutils-r1 if [[ ${PV} == *9999 ]] ; then @@ -21,7 +21,7 @@ SLOT="0" IUSE="test" if [[ ${PV} == *9999 ]]; then - RDEPEND="=dev-python/snakeoil-9999[${PYTHON_USEDEP}]" + RDEPEND="~dev-python/snakeoil-9999[${PYTHON_USEDEP}]" else RDEPEND=">=dev-python/snakeoil-0.8.0[${PYTHON_USEDEP}]" fi