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 4ABB41382C5 for ; Mon, 1 Feb 2021 01:46:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E949E095F; Mon, 1 Feb 2021 01:46:46 +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 0D4C3E095F for ; Mon, 1 Feb 2021 01:46:46 +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 ED37733E55B for ; Mon, 1 Feb 2021 01:46:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DDE6476 for ; Mon, 1 Feb 2021 01:46:43 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1612143996.e3edb6a6b3c72a2cf3a52504e46b33117316e5f1.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-visualization/fsleyes-props/ X-VCS-Repository: proj/sci X-VCS-Files: sci-visualization/fsleyes-props/fsleyes-props-1.6.7.ebuild X-VCS-Directories: sci-visualization/fsleyes-props/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: e3edb6a6b3c72a2cf3a52504e46b33117316e5f1 X-VCS-Branch: master Date: Mon, 1 Feb 2021 01:46:43 +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: 96173d7d-0e7c-4f52-927d-b25e7d087ee5 X-Archives-Hash: 99f10bd945873bba3dfdbed7684ce6d4 commit: e3edb6a6b3c72a2cf3a52504e46b33117316e5f1 Author: Horea Christian chymera eu> AuthorDate: Mon Feb 1 01:46:36 2021 +0000 Commit: Horea Christian gmail com> CommitDate: Mon Feb 1 01:46:36 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e3edb6a6 sci-visualization/fsleyes-props: keep old version Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Horea Christian chymera.eu> .../fsleyes-props/fsleyes-props-1.6.7.ebuild | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/sci-visualization/fsleyes-props/fsleyes-props-1.6.7.ebuild b/sci-visualization/fsleyes-props/fsleyes-props-1.6.7.ebuild new file mode 100644 index 000000000..d9983906e --- /dev/null +++ b/sci-visualization/fsleyes-props/fsleyes-props-1.6.7.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8} ) + +inherit distutils-r1 virtualx + +MY_PN="props" + +DESCRIPTION="Object attribute management for the FSLeyes viewer" +HOMEPAGE="https://git.fmrib.ox.ac.uk/fsl/fsleyes/fsleyes/tree/master" +SRC_URI="https://git.fmrib.ox.ac.uk/fsl/fsleyes/${MY_PN}/-/archive/${PV}/${MY_PN}-${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND=" + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + ) + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND=" + dev-python/deprecation[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + dev-python/wxpython[${PYTHON_USEDEP}] + sci-visualization/fsleyes-widgets[${PYTHON_USEDEP}] + dev-python/fslpy[${PYTHON_USEDEP}] + " + +S="${WORKDIR}/${MY_PN}-${PV}" + +PATCHES=( + "${FILESDIR}/fsleyes-props-1.6.7-coverage.patch" + "${FILESDIR}/fsleyes-props-1.6.7-tests.patch" +) + +python_test() { + virtx pytest --verbose || die +}