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 6EA30138350 for ; Tue, 28 Apr 2020 07:44:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AAA66E096E; Tue, 28 Apr 2020 07:44:27 +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 7C751E096B for ; Tue, 28 Apr 2020 07:44: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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7CC9E34EF52 for ; Tue, 28 Apr 2020 07:44:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 390DF1FB for ; Tue, 28 Apr 2020 07:44:20 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1588022655.52d227888c37fa91e2f3c90db8305f46a2dd7ee9.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-cython/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pytest-cython/metadata.xml dev-python/pytest-cython/pytest-cython-0.1.0-r1.ebuild dev-python/pytest-cython/pytest-cython-0.1.0.ebuild X-VCS-Directories: dev-python/pytest-cython/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 52d227888c37fa91e2f3c90db8305f46a2dd7ee9 X-VCS-Branch: master Date: Tue, 28 Apr 2020 07:44:20 +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: 84362648-c122-424f-b27d-cbd4d593ee0b X-Archives-Hash: 6da39b7e1a6ba624c8d6317ad526cfa3 commit: 52d227888c37fa91e2f3c90db8305f46a2dd7ee9 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Apr 27 21:02:37 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Mon Apr 27 21:24:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=52d22788 dev-python/pytest-cython: dependency cleanup Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/pytest-cython/metadata.xml | 11 +++++++++++ ...ython-0.1.0.ebuild => pytest-cython-0.1.0-r1.ebuild} | 17 ++++++++++------- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/dev-python/pytest-cython/metadata.xml b/dev-python/pytest-cython/metadata.xml index d4c3950..0562381 100644 --- a/dev-python/pytest-cython/metadata.xml +++ b/dev-python/pytest-cython/metadata.xml @@ -1,7 +1,18 @@ + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + https://github.com/lgpage/pytest-cython/issues + https://raw.githubusercontent.com/lgpage/pytest-cython/master/CHANGELOG.rst + https://readthedocs.org/projects/pytest-cython/ + + page.lg@gmail.com + Logan Page + pytest-cython lgpage/pytest-cython diff --git a/dev-python/pytest-cython/pytest-cython-0.1.0.ebuild b/dev-python/pytest-cython/pytest-cython-0.1.0-r1.ebuild similarity index 78% rename from dev-python/pytest-cython/pytest-cython-0.1.0.ebuild rename to dev-python/pytest-cython/pytest-cython-0.1.0-r1.ebuild index df96a72..4ce9e89 100644 --- a/dev-python/pytest-cython/pytest-cython-0.1.0.ebuild +++ b/dev-python/pytest-cython/pytest-cython-0.1.0-r1.ebuild @@ -4,9 +4,9 @@ EAPI="7" PYTHON_COMPAT=( python3_{6,7} ) +DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 -DISTUTILS_USE_SETUPTOOLS=rdepend DESCRIPTION="Plugin for testing Cython extension modules" HOMEPAGE="https://github.com/lgpage/pytest-cython" @@ -15,18 +15,21 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="MIT" KEYWORDS="~amd64" -#IUSE="test" -RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]" -#DEPEND=" -# ${RDEPEND} +RDEPEND=" + dev-python/cython[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] +" +DEPEND=" + ${RDEPEND} +" +#those deps aren't really required I think # test? ( # dev-python/check-manifest[${PYTHON_USEDEP}] # dev-python/docutils[${PYTHON_USEDEP}] # dev-python/pygments[${PYTHON_USEDEP}] # dev-python/readme_renderer[${PYTHON_USEDEP}] # ) -#" -#distutils_enable_tests pytest +distutils_enable_tests pytest distutils_enable_sphinx docs dev-python/sphinx-py3doc-enhanced-theme