mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-30 04:47:28 -07:00
Signed-off-by: Rolf Eike Beer <eike@sf-mail.de> Package-Manager: Portage-2.3.66, Repoman-2.3.11 RepoMan-Options: --include-arches="hppa" Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
100 lines
2.9 KiB
Bash
100 lines
2.9 KiB
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
|
|
PYTHON_REQ_USE="sqlite?,threads(+)"
|
|
|
|
# The usual required for tests
|
|
DISTUTILS_IN_SOURCE_BUILD=1
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="RDF library containing a triple store and parser/serializer"
|
|
HOMEPAGE="https://github.com/RDFLib/rdflib https://pypi.org/project/rdflib/"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE="doc berkdb examples mysql redland sqlite test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
dev-python/isodate[${PYTHON_USEDEP}]
|
|
dev-python/html5lib[${PYTHON_USEDEP}]
|
|
dev-python/pyparsing[${PYTHON_USEDEP}]
|
|
berkdb? ( dev-python/bsddb3[${PYTHON_USEDEP}] )
|
|
mysql? ( dev-python/mysql-python[$(python_gen_usedep 'python2*')] )
|
|
redland? ( dev-libs/redland-bindings[python,$(python_gen_usedep 'python2*')] )"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
|
|
test? (
|
|
dev-python/sparql-wrapper[${PYTHON_USEDEP}]
|
|
>=dev-python/nose-1.3.1-r1[${PYTHON_USEDEP}]
|
|
)"
|
|
|
|
PATCHES=(
|
|
# Python 3.7 StopIteration bug
|
|
"${FILESDIR}"/${PN}-4.2.2-python3.7-StopIteration.patch
|
|
)
|
|
|
|
python_prepare_all() {
|
|
# Upstream manufactured .pyc files which promptly break distutils' src_test
|
|
find -name "*.py[oc~]" -delete || die
|
|
|
|
# Bug 358189; take out tests that attempt to connect to the network
|
|
sed -e "/'--with-doctest',/d" -e "/'--doctest-extension=.doctest',/d" \
|
|
-e "/'--doctest-tests',/d" -i run_tests.py || die
|
|
|
|
sed -e "s: 'sphinx.ext.intersphinx',::" -i docs/conf.py || die
|
|
|
|
# doc build requires examples folder at the upper level of docs
|
|
if use doc; then
|
|
cd docs || die
|
|
ln -sf ../examples . || die
|
|
cd ../ || die
|
|
fi
|
|
|
|
distutils-r1_python_prepare_all
|
|
}
|
|
|
|
python_compile_all() {
|
|
# https://github.com/RDFLib/rdflib/issues/510
|
|
if use doc; then
|
|
einfo ""
|
|
einfo "Several warnings and Errors present in the build"
|
|
einfo "For a complete build, it is required to install"
|
|
einfo "github.com/gjhiggins/n3_pygments_lexer and"
|
|
einfo "github.com/gjhiggins/sparql_pygments_lexer"
|
|
einfo "outside portage via pip or by cloning. These have not been"
|
|
einfo "given a tagged release by the author and are not in portage"
|
|
einfo ""
|
|
|
|
emake -C docs html
|
|
HTML_DOCS=( docs/_build/html/. )
|
|
fi
|
|
}
|
|
|
|
python_test() {
|
|
# the default; nose with: --where=./ does not work for python3
|
|
if python_is_python3; then
|
|
pushd "${BUILD_DIR}/src/" >/dev/null || die
|
|
"${EPYTHON}" ./run_tests.py || die "Tests failed under ${EPYTHON}"
|
|
popd >/dev/null || die
|
|
else
|
|
"${EPYTHON}" ./run_tests.py || die "Tests failed under ${EPYTHON}"
|
|
fi
|
|
}
|
|
|
|
python_install_all() {
|
|
distutils-r1_python_install_all
|
|
|
|
if use examples; then
|
|
dodoc -r examples
|
|
docompress -x /usr/share/doc/${PF}/examples
|
|
fi
|
|
}
|