Files
gentoo/sci-biology/biopython/biopython-1.85.ebuild
T
Michał Górny b3c221572c sci-biology/biopython: Remove py3.11 (per scipy)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2026-04-18 11:14:01 +02:00

55 lines
1.5 KiB
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{12..13} )
DISTUTILS_USE_PEP517="setuptools"
DISTUTILS_EXT=1
inherit distutils-r1 optfeature pypi
DESCRIPTION="Python modules for computational molecular biology"
HOMEPAGE="https://www.biopython.org/ https://pypi.org/project/biopython/"
LICENSE="HPND"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-python/matplotlib[${PYTHON_USEDEP}]
dev-python/networkx[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/rdflib[${PYTHON_USEDEP}]
dev-python/pygraphviz[${PYTHON_USEDEP}]
>=dev-python/reportlab-3.5.13-r1[${PYTHON_USEDEP}]
dev-python/pydot[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
BDEPEND="app-alternatives/lex"
DOCS=( {CONTRIB,DEPRECATED,NEWS,README}.rst Doc/. )
python_test() {
cd Tests || die
"${EPYTHON}" run_tests.py --offline --verbose || die
}
python_install_all() {
# remove files causing ecompressdir to fail
rm Doc/examples/ls_orchid.gbk.{gz,bz2} || die
distutils-r1_python_install_all
dodir /usr/share/${PN}
cp -r --preserve=mode Scripts Tests "${ED}"/usr/share/${PN} || die
}
pkg_postinst() {
optfeature_header "For database support you need to install:"
optfeature "MySQL database support" dev-python/mysqlclient
optfeature "PostgreSQL database support" dev-python/psycopg:2
optfeature_header "Some applications need extra packages:"
optfeature "EMBOSS (The European Molecular Biology Open Software Suite)" sci-biology/emboss
}