From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-643987-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DE47C138247 for <garchives@archives.gentoo.org>; Sat, 30 Nov 2013 03:50:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9249EE0B7C; Sat, 30 Nov 2013 03:50:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 141CCE0B7C for <gentoo-commits@lists.gentoo.org>; Sat, 30 Nov 2013 03:50:54 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F33B633F340 for <gentoo-commits@lists.gentoo.org>; Sat, 30 Nov 2013 03:50:53 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2304) id 9ACA02004E; Sat, 30 Nov 2013 03:50:52 +0000 (UTC) From: "Mike Gilbert (floppym)" <floppym@gentoo.org> To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, floppym@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: pytest-2.4.2.ebuild ChangeLog X-VCS-Directories: dev-python/pytest X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131130035052.9ACA02004E@flycatcher.gentoo.org> Date: Sat, 30 Nov 2013 03:50:52 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 07ab8c5a-b4aa-42cc-8a62-f0e2f56486ca X-Archives-Hash: 068b4d79f4149f819f5a007c7f97eac8 floppym 13/11/30 03:50:52 Modified: pytest-2.4.2.ebuild ChangeLog Log: Fix pexpect-3.0 problems in tests. (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4) Revision Changes Path 1.4 dev-python/pytest/pytest-2.4.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild?r1=1.3&r2=1.4 Index: pytest-2.4.2.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- pytest-2.4.2.ebuild 17 Nov 2013 04:13:46 -0000 1.3 +++ pytest-2.4.2.ebuild 30 Nov 2013 03:50:52 -0000 1.4 @@ -1,16 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.3 2013/11/17 04:13:46 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.4 2013/11/30 03:50:52 floppym Exp $ EAPI="5" PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 ) inherit distutils-r1 eutils -RESTRICT="test" -#testing restricted due to test failures with pexpect-3.0 (which is required for pypy2_0 and python3_x support) -#https://bitbucket.org/hpk42/pytest/issue/386/tests-fail-with-pexpect-30 - DESCRIPTION="py.test: simple powerful testing with Python" HOMEPAGE="http://pytest.org/ http://pypi.python.org/pypi/pytest" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" @@ -29,7 +25,11 @@ dev-python/setuptools[${PYTHON_USEDEP}] virtual/python-argparse[${PYTHON_USEDEP}] test? ( dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/pexpect[${PYTHON_USEDEP}] )" + >=dev-python/pexpect-3.0[${PYTHON_USEDEP}] )" + +PATCHES=( + "${FILESDIR}/pytest-2.4.2-pexpect-3.0.patch" +) python_prepare_all() { # Disable versioning of py.test script to avoid collision with 1.82 dev-python/pytest/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/ChangeLog?rev=1.82&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/ChangeLog?rev=1.82&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pytest/ChangeLog?r1=1.81&r2=1.82 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v retrieving revision 1.81 retrieving revision 1.82 diff -u -r1.81 -r1.82 --- ChangeLog 17 Nov 2013 04:13:46 -0000 1.81 +++ ChangeLog 30 Nov 2013 03:50:52 -0000 1.82 @@ -1,6 +1,10 @@ # ChangeLog for dev-python/pytest # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.81 2013/11/17 04:13:46 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.82 2013/11/30 03:50:52 floppym Exp $ + + 30 Nov 2013; Mike Gilbert <floppym@gentoo.org> + +files/pytest-2.4.2-pexpect-3.0.patch, pytest-2.4.2.ebuild: + Fix pexpect-3.0 problems in tests. 17 Nov 2013; Matthew Thode <prometheanfire@gentoo.org> pytest-2.4.2.ebuild: added pytest-2.4.2 with restricted tests due to upstream bug