nifstd-tools-0.0.8tgbugs-overlay
download
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..14} )
inherit distutils-r1
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="https://github.com/tgbugs/pyontutils.git"
inherit git-r3
KEYWORDS=""
else
inherit pypi
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="utilities for working with the NIF ontology"
HOMEPAGE="https://github.com/tgbugs/pyontutils/tree/master/nifstd"
LICENSE="MIT"
SLOT="0"
IUSE="dev doc server spell test"
RESTRICT="!test? ( test )"
BDEPEND="
dev-python/fastentrypoints[${PYTHON_USEDEP}]"
IDEPEND="
acct-user/nifstd-tools
acct-group/nifstd-tools
"
RDEPEND="
dev-python/flask[${PYTHON_USEDEP}]
$(python_gen_cond_dep '
dev-python/nbconvert[${PYTHON_USEDEP}]
' 'python3*')
$(python_gen_cond_dep '
dev-python/nbformat[${PYTHON_USEDEP}]
' 'python3*')
dev-python/psutil[${PYTHON_USEDEP}]
dev-python/pymysql[${PYTHON_USEDEP}]
>=dev-python/pyontutils-0.1.32[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/sqlalchemy[${PYTHON_USEDEP}]
dev? (
dev-python/mysql-connector-python[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
app-text/tesseract
dev-python/wheel[${PYTHON_USEDEP}]
)
doc? (
>=app-editors/emacs-26
app-text/pandoc
)
server? (
www-servers/gunicorn[${PYTHON_USEDEP}]
)
spell? (
app-text/hunspell
)
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
if [[ ${PV} == "9999" ]]; then
S="${S}/${PN%%-*}"
src_prepare () {
sed -i '1 i\import fastentrypoints' setup.py
# replace package version to keep python quiet
sed -i "s/__version__.\+$/__version__ = '9999.0.0+$(git rev-parse --short HEAD)'/" ${PN}/__init__.py
default
}
else
src_prepare () {
sed -i '1 i\import fastentrypoints' setup.py
default
}
fi
python_test() {
if [[ ${PV} == "9999" ]]; then
git remote add origin ${EGIT_REPO_URI}
fi
esetup.py install_data
epytest -s -v --color=yes -s || die "Tests fail with ${EPYTHON}"
}
python_install_all() {
local DOCS=( README* )
distutils-r1_python_install_all
}
src_install() {
keepdir "/var/log/${PN}"
fowners ${PN}:${PN} "/var/log/${PN}"
newinitd "resources/ontree.rc" ontree
newconfd "resources/ontree.confd" ontree
chmod 0600 "${D}"/etc/conf.d/*
distutils-r1_src_install
}
pkg_postinst() {
ewarn "In order to run ontree you need to set the SciGraph"
ewarn "api endpoint and possibly api key in /etc/conf.d/ontree"
}