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 12760138359 for ; Sun, 20 Sep 2020 00:42:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28CCCE0825; Sun, 20 Sep 2020 00:42:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 054E8E0825 for ; Sun, 20 Sep 2020 00:42:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 90FCD34108E for ; Sun, 20 Sep 2020 00:42:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 05DB233A for ; Sun, 20 Sep 2020 00:42:30 +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: <1600562537.9495e0d02bb06635fdff3fdc4aa92cd2bbca77ba.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/pybids/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/pybids/pybids-0.11.1.ebuild X-VCS-Directories: sci-libs/pybids/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 9495e0d02bb06635fdff3fdc4aa92cd2bbca77ba X-VCS-Branch: master Date: Sun, 20 Sep 2020 00:42:30 +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: 00ea638d-2274-45b1-88af-970b6af66cb4 X-Archives-Hash: 798398c3ebbd898cc1131b8c77af700e commit: 9495e0d02bb06635fdff3fdc4aa92cd2bbca77ba Author: Horea Christian chymera eu> AuthorDate: Sun Sep 20 00:42:17 2020 +0000 Commit: Horea Christian gmail com> CommitDate: Sun Sep 20 00:42:17 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=9495e0d0 sci-libs/pybids: version bump 0.11.1 Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Horea Christian chymera.eu> sci-libs/pybids/pybids-0.11.1.ebuild | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/sci-libs/pybids/pybids-0.11.1.ebuild b/sci-libs/pybids/pybids-0.11.1.ebuild new file mode 100644 index 000000000..8b30eeb0d --- /dev/null +++ b/sci-libs/pybids/pybids-0.11.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="Python package to access BIDS datasets" +HOMEPAGE="https://github.com/INCF/pybids" +SRC_URI="https://github.com/INCF/pybids/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +DEPEND="" +RDEPEND=" + dev-python/num2words[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + dev-python/patsy[${PYTHON_USEDEP}] + dev-python/sqlalchemy[${PYTHON_USEDEP}] + sci-libs/bids-validator[${PYTHON_USEDEP}] + sci-libs/nibabel[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + " + +#RESTRICT="test" +# Fails because fixtures are called directly +# https://github.com/bids-standard/pybids/issues/289#issuecomment-476853673 + +python_test() { + #rm bids/tests/test_config.py || die + distutils_install_for_testing + pytest -vv || die +}