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 6C813138334 for ; Tue, 15 Oct 2019 15:58:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94066E089A; Tue, 15 Oct 2019 15:58:33 +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 7943AE08AE for ; Tue, 15 Oct 2019 15:58:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CD0D734BE4B for ; Tue, 15 Oct 2019 15:58:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00021882 for ; Tue, 15 Oct 2019 15:58:28 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1571155071.916a8b2f95d9f7c599d812fea4731ec59df7bf22.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-pep8/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-pep8/pytest-pep8-1.0.6-r1.ebuild X-VCS-Directories: dev-python/pytest-pep8/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 916a8b2f95d9f7c599d812fea4731ec59df7bf22 X-VCS-Branch: master Date: Tue, 15 Oct 2019 15:58:28 +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: 6843080c-46e3-4a1f-9176-3585b502adb7 X-Archives-Hash: 28f334b5e85e2fc1b824c60971991d03 commit: 916a8b2f95d9f7c599d812fea4731ec59df7bf22 Author: Craig Andrews gentoo org> AuthorDate: Sun Oct 13 20:28:53 2019 +0000 Commit: Craig Andrews gentoo org> CommitDate: Tue Oct 15 15:57:51 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=916a8b2f dev-python/pytest-pep8: EAPI=7 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Craig Andrews gentoo.org> dev-python/pytest-pep8/pytest-pep8-1.0.6-r1.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-python/pytest-pep8/pytest-pep8-1.0.6-r1.ebuild b/dev-python/pytest-pep8/pytest-pep8-1.0.6-r1.ebuild new file mode 100644 index 00000000000..bdf4a19b0b6 --- /dev/null +++ b/dev-python/pytest-pep8/pytest-pep8-1.0.6-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="pytest plugin to check PEP8 requirements" +HOMEPAGE="https://pypi.org/project/pytest-pep8/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +RDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pep8-1.3[${PYTHON_USEDEP}] + >=dev-python/pytest-2.4.2[${PYTHON_USEDEP}] + dev-python/pytest-cache[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/1.0.6-MANIFEST.patch +) + +python_test() { + ${EPYTHON} test_pep8.py || die +}