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 7C923139085 for ; Sun, 22 Jan 2017 02:13:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C90D22419A; Sun, 22 Jan 2017 02:13:42 +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 07C7722419A for ; Sun, 22 Jan 2017 02:13:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 DE5A9341026 for ; Sun, 22 Jan 2017 02:13:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48C352BF9 for ; Sun, 22 Jan 2017 02:13:39 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1485051215.e8ce88f4bf28e8ca3e58ccdce8168060ec7b37d9.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ply/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ply/ply-3.6-r1.ebuild dev-python/ply/ply-3.8.ebuild dev-python/ply/ply-3.9.ebuild X-VCS-Directories: dev-python/ply/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: e8ce88f4bf28e8ca3e58ccdce8168060ec7b37d9 X-VCS-Branch: master Date: Sun, 22 Jan 2017 02:13:39 +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: 0c063ae9-c1c1-4000-9afb-e62ef903caeb X-Archives-Hash: cd71f63408384f45d128a3910578d36c commit: e8ce88f4bf28e8ca3e58ccdce8168060ec7b37d9 Author: Mike Gilbert gentoo org> AuthorDate: Sun Jan 22 02:12:23 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Jan 22 02:13:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8ce88f4 dev-python/ply: clear PYTHONDONTWRITEBYTECODE for tests Bug: https://bugs.gentoo.org/458648 Package-Manager: Portage-2.3.3_p32, Repoman-2.3.1_p25 dev-python/ply/ply-3.6-r1.ebuild | 8 ++++---- dev-python/ply/ply-3.8.ebuild | 8 ++++---- dev-python/ply/ply-3.9.ebuild | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/dev-python/ply/ply-3.6-r1.ebuild b/dev-python/ply/ply-3.6-r1.ebuild index b9c8333..a3436a4 100644 --- a/dev-python/ply/ply-3.6-r1.ebuild +++ b/dev-python/ply/ply-3.6-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -19,9 +19,6 @@ IUSE="examples" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND="" -# See bug #458648 for reference -RESTRICT="test" - DOCS=( ANNOUNCE CHANGES TODO ) PATCHES=( "${FILESDIR}/3.6-lextab-None.patch" @@ -32,6 +29,9 @@ python_test() { cp -r -l test "${BUILD_DIR}"/ || die cd "${BUILD_DIR}"/test || die + # Checks for pyc/pyo files + local -x PYTHONDONTWRITEBYTECODE= + local t for t in testlex.py testyacc.py; do "${PYTHON}" "${t}" || die "${t} fails with ${EPYTHON}" diff --git a/dev-python/ply/ply-3.8.ebuild b/dev-python/ply/ply-3.8.ebuild index 9f368cb..35f8116 100644 --- a/dev-python/ply/ply-3.8.ebuild +++ b/dev-python/ply/ply-3.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -20,9 +20,6 @@ IUSE="examples" RDEPEND="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -# See bug #458648 for reference -RESTRICT="test" - DOCS=( ANNOUNCE CHANGES TODO ) PATCHES=( "${FILESDIR}/3.6-picklefile-IOError.patch" ) @@ -31,6 +28,9 @@ python_test() { cp -r -l test "${BUILD_DIR}"/ || die cd "${BUILD_DIR}"/test || die + # Checks for pyc/pyo files + local -x PYTHONDONTWRITEBYTECODE= + local t for t in testlex.py testyacc.py; do "${PYTHON}" "${t}" || die "${t} fails with ${EPYTHON}" diff --git a/dev-python/ply/ply-3.9.ebuild b/dev-python/ply/ply-3.9.ebuild index 8c335d7..92d2199 100644 --- a/dev-python/ply/ply-3.9.ebuild +++ b/dev-python/ply/ply-3.9.ebuild @@ -20,9 +20,6 @@ IUSE="examples" RDEPEND="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -# See bug #458648 for reference -RESTRICT="test" - DOCS=( ANNOUNCE CHANGES TODO ) PATCHES=( "${FILESDIR}/3.6-picklefile-IOError.patch" ) @@ -31,6 +28,9 @@ python_test() { cp -r -l test "${BUILD_DIR}"/ || die cd "${BUILD_DIR}"/test || die + # Checks for pyc/pyo files + local -x PYTHONDONTWRITEBYTECODE= + local t for t in testlex.py testyacc.py; do "${PYTHON}" "${t}" || die "${t} fails with ${EPYTHON}"