You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/blockdiag/blockdiag-3.0.0.ebuild

59 lines
1.6 KiB

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
DISTUTILS_USE_SETUPTOOLS="rdepend"
inherit distutils-r1 optfeature
DESCRIPTION="Generate block-diagram image from text"
HOMEPAGE="http://blockdiag.com/ https://pypi.org/project/blockdiag/ https://github.com/blockdiag/blockdiag/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
RDEPEND="
>=dev-python/funcparserlib-1.0.0_alpha0[${PYTHON_USEDEP}]
>=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
dev-python/webcolors[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/mock[${PYTHON_USEDEP}]
dev-python/reportlab[${PYTHON_USEDEP}]
dev-python/docutils[${PYTHON_USEDEP}]
media-fonts/ja-ipafonts
)
"
distutils_enable_tests --install nose
python_prepare_all() {
# disable tests requiring Internet access
sed -e 's:test_app_cleans_up_images:_&:' \
-i src/blockdiag/tests/test_command.py || die
sed -e 's:ghostscript_not_found_test:_&:' \
-i src/blockdiag/tests/test_generate_diagram.py || die
rm src/blockdiag/tests/diagrams/node_icon.diag || die
# By some reason it is needed - recheck on next bump
touch src/blockdiag/tests/diagrams/invalid.txt || die
distutils-r1_python_prepare_all
}
src_test() {
ALL_TESTS=1 distutils-r1_src_test
}
pkg_postinst() {
# TODO: Better descriptions!
optfeature "PDF format" dev-python/reportlab
optfeature "misc extra support" media-gfx/imagemagick
optfeature "Ctypes-based simple MagickWand API binding for Python" dev-python/wand
}