commit: 94ef252ca5d7028cd8bd38b47e24f64612f23739
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon May 22 10:36:48 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon May 22 10:36:48 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=94ef252c
sci-biology/bidsschematools: drop 0.4.0
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
.../bidsschematools/bidsschematools-0.4.0.ebuild | 37 ----------------------
1 file changed, 37 deletions(-)
diff --git a/sci-biology/bidsschematools/bidsschematools-0.4.0.ebuild
b/sci-biology/bidsschematools/bidsschematools-0.4.0.ebuild
deleted file mode 100644
index 0e62efa42..000000000
--- a/sci-biology/bidsschematools/bidsschematools-0.4.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="A Python library for working with the BIDS schema"
-HOMEPAGE="https://github.com/bids-standard/bids-specification"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="render"
-
-RDEPEND="
- dev-python/pyyaml[${PYTHON_USEDEP}]
- render? (
- dev-python/pandas[${PYTHON_USEDEP}]
- dev-python/tabulate[${PYTHON_USEDEP}]
- )
-"
-DEPEND=""
-
-distutils_enable_tests pytest
-
-src_prepare() {
- if ! use render; then
- rm "${S}/bidsschematools/render.py"
- rm "${S}/bidsschematools/tests/test_render.py"
- fi
- default
-}