blob: e58727749f14abe23e473a17845e556e43843d31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 optfeature pypi
DESCRIPTION="Noto fonts support tools and scripts plus web site generation"
HOMEPAGE="
https://pypi.org/project/notofonttools/
https://github.com/googlefonts/nototools
"
LICENSE="Apache-2.0 OFL-1.1"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND=">=dev-python/fonttools-4.11.0[${PYTHON_USEDEP}]"
# TODO: Some dependencies are unpackaged
RESTRICT="test"
distutils_enable_tests pytest
pkg_postinst() {
optfeature "nototools.shape_diff module" "dev-python/booleanOperations dev-python/defcon dev-python/pillow"
}
|