mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 08:58:27 -07:00
Package-Manager: Portage-2.3.99, Repoman-2.3.22 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
60 lines
1.3 KiB
Bash
60 lines
1.3 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python{3_6,3_7,3_8} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Tools for generating printable PDF documents from any data source"
|
|
HOMEPAGE="
|
|
https://www.reportlab.com/
|
|
https://pypi.org/project/reportlab/
|
|
https://bitbucket.org/rptlab/reportlab/"
|
|
SRC_URI="
|
|
mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz
|
|
https://www.reportlab.com/ftp/fonts/pfbfer-20070710.zip"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DEPEND="
|
|
media-libs/libart_lgpl:=
|
|
sys-libs/zlib:=
|
|
"
|
|
RDEPEND="
|
|
dev-python/pillow[tiff,truetype,jpeg(+),${PYTHON_USEDEP}]
|
|
"
|
|
BDEPEND="
|
|
test? ( ${RDEPEND} )
|
|
app-arch/unzip
|
|
"
|
|
RDEPEND+=${DEPEND}
|
|
|
|
distutils_enable_sphinx docs/source
|
|
|
|
src_unpack() {
|
|
unpack ${P}.tar.gz
|
|
cd ${P}/src/reportlab/fonts || die
|
|
unpack pfbfer-20070710.zip
|
|
}
|
|
|
|
src_prepare() {
|
|
# tests requiring Internet access
|
|
sed -i -e 's:test0:_&:' \
|
|
tests/test_platypus_general.py \
|
|
tests/test_platypus_images.py || die
|
|
sed -i -e 's:test9:_&:' tests/test_lib_utils.py || die
|
|
distutils-r1_src_prepare
|
|
}
|
|
|
|
python_test() {
|
|
pushd tests > /dev/null || die
|
|
"${EPYTHON}" runAll.py || die "Testing failed with ${EPYTHON}"
|
|
popd > /dev/null || die
|
|
}
|