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 2A7C6139085 for ; Sat, 21 Jan 2017 01:41:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6EF02234019; Sat, 21 Jan 2017 01:41:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45C35234019 for ; Sat, 21 Jan 2017 01:41:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2D861341649 for ; Sat, 21 Jan 2017 01:41:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C16FC2AD1 for ; Sat, 21 Jan 2017 01:41:24 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1484962860.c9273a1274587c2922c001505b14a76647640266.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytools/pytools-9999.ebuild X-VCS-Directories: dev-python/pytools/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c9273a1274587c2922c001505b14a76647640266 X-VCS-Branch: master Date: Sat, 21 Jan 2017 01:41:24 +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: a77c8443-3af2-4843-ba09-ce38bf905a1a X-Archives-Hash: b7c56ac4f3a24412e7a3e679c519ef2c commit: c9273a1274587c2922c001505b14a76647640266 Author: Louis Sautier gmail com> AuthorDate: Sat Jan 21 00:47:52 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Jan 21 01:41:00 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9273a12 dev-python/pytools: live ebuild: add py3.5, update git repo URI Package-Manager: Portage-2.3.3, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/3572 dev-python/pytools/pytools-9999.ebuild | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/dev-python/pytools/pytools-9999.ebuild b/dev-python/pytools/pytools-9999.ebuild index 7bd405b..f11d02d 100644 --- a/dev-python/pytools/pytools-9999.ebuild +++ b/dev-python/pytools/pytools-9999.ebuild @@ -1,28 +1,36 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -PYTHON_COMPAT=( python{2_7,3_4} ) -EGIT_MIN_CLONE_TYPE=single +PYTHON_COMPAT=( python{2_7,3_{4,5}} ) inherit distutils-r1 git-r3 DESCRIPTION="A collection of tools missing from the Python standard library" -HOMEPAGE="http://mathema.tician.de/software/pytools" -EGIT_REPO_URI="http://git.tiker.net/trees/pytools.git" +HOMEPAGE="https://mathema.tician.de/software/pytools/" +EGIT_REPO_URI="https://github.com/inducer/pytools" LICENSE="MIT" SLOT="0" KEYWORDS="" IUSE="test" +RDEPEND=" + >=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}] + >=dev-python/decorator-3.2.0[${PYTHON_USEDEP}] + >=dev-python/numpy-1.6.0[${PYTHON_USEDEP}] + >=dev-python/six-1.8.0[${PYTHON_USEDEP}] +" DEPEND=" >=dev-python/setuptools-0.7.2[${PYTHON_USEDEP}] - dev-python/decorator[${PYTHON_USEDEP}] - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" -RDEPEND="" + test? ( + ${RDEPEND} + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-runner[${PYTHON_USEDEP}] + ) +" python_test() { py.test -v || die "Tests fail with ${EPYTHON}"