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 459B6138D65 for ; Mon, 24 Oct 2016 22:52:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A45D9E0913; Mon, 24 Oct 2016 22:52:32 +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 7E920E0913 for ; Mon, 24 Oct 2016 22:52:32 +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 8142C341657 for ; Mon, 24 Oct 2016 22:52:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B43C62FD for ; Mon, 24 Oct 2016 22:52:29 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1477349493.e98d7df4068a1a7a04b1109b7a938315bfccf102.bicatali@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-mpl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-mpl/Manifest dev-python/pytest-mpl/metadata.xml dev-python/pytest-mpl/pytest-mpl-0.5.ebuild X-VCS-Directories: dev-python/pytest-mpl/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: e98d7df4068a1a7a04b1109b7a938315bfccf102 X-VCS-Branch: master Date: Mon, 24 Oct 2016 22:52:29 +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: b4dfbd7e-8c2c-4fcf-8f47-4c41c5f3eb2f X-Archives-Hash: 9d03056910d383ccf2adf03856091f60 commit: e98d7df4068a1a7a04b1109b7a938315bfccf102 Author: Sébastien Fabbro gentoo org> AuthorDate: Mon Oct 24 22:11:46 2016 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Mon Oct 24 22:51:33 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e98d7df4 dev-python/pytest-mpl: initial import Package-Manager: portage-2.3.2 dev-python/pytest-mpl/Manifest | 1 + dev-python/pytest-mpl/metadata.xml | 15 ++++++++++++++ dev-python/pytest-mpl/pytest-mpl-0.5.ebuild | 32 +++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+) diff --git a/dev-python/pytest-mpl/Manifest b/dev-python/pytest-mpl/Manifest new file mode 100644 index 00000000..d34fbe1 --- /dev/null +++ b/dev-python/pytest-mpl/Manifest @@ -0,0 +1 @@ +DIST pytest-mpl-0.5.tar.gz 112523 SHA256 fee0da4a81e2a3e966cf6488a6bcc81a144688e145048ad1f66799a25135dad3 SHA512 9056982403994572a33c861ebe0d7bbcb48579ef95f7cf93f716f06510fa09c187a8daad0ed4a55667444b74461a5a02d7f9217d89de57f3cc10116c88aaa662 WHIRLPOOL 4416015f78113bcfc74119a8a04fa55385e496395be9af2e7bcda317ac846744e0bf1221e18eac28efdc5a2b5a5305b2eaa25eef4c8c1051e1949702e92768d6 diff --git a/dev-python/pytest-mpl/metadata.xml b/dev-python/pytest-mpl/metadata.xml new file mode 100644 index 00000000..53dc396 --- /dev/null +++ b/dev-python/pytest-mpl/metadata.xml @@ -0,0 +1,15 @@ + + + + + pytest-mpl + astrofrog/pytest-mpl + + + python@gentoo.org + Python + + + This is a plugin to faciliate image comparison for Matplotlib figures in pytest. + + diff --git a/dev-python/pytest-mpl/pytest-mpl-0.5.ebuild b/dev-python/pytest-mpl/pytest-mpl-0.5.ebuild new file mode 100644 index 00000000..b383a41 --- /dev/null +++ b/dev-python/pytest-mpl/pytest-mpl-0.5.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{4,5}} ) + +inherit distutils-r1 virtualx + +DOCS=( README.md CHANGES.md ) + +DESCRIPTION="pytest plugin to faciliate image comparison for matplotlib figures" +HOMEPAGE="https://github.com/astrofrog/pytest-mpl/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + echo "backend : Agg" > matplotlibrc || die + MPLCONFIGDIR=. virtx py.test -v || die +}