mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-12 08:33:15 -04:00
Old URL was a permanent redirect. Signed-off-by: Ronny (tastytea) Gutbrod <gentoo@tastytea.de>
38 lines
846 B
Bash
38 lines
846 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{8..9} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A library to provide a bridge from Glyphs source files to UFOs"
|
|
HOMEPAGE="https://github.com/googlefonts/glyphsLib"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
|
|
|
|
LICENSE="Apache-2.0 MIT"
|
|
KEYWORDS="~amd64 ~x86"
|
|
SLOT="0"
|
|
|
|
RDEPEND="
|
|
>=dev-python/fonttools-4.14[${PYTHON_USEDEP}]
|
|
>=dev-python/ufoLib2-0.8[${PYTHON_USEDEP}]
|
|
"
|
|
BDEPEND="
|
|
app-arch/unzip
|
|
dev-python/setuptools_scm[${PYTHON_USEDEP}]
|
|
test? (
|
|
dev-python/defcon[${PYTHON_USEDEP}]
|
|
dev-python/ufoNormalizer[${PYTHON_USEDEP}]
|
|
>=app-text/xmldiff-2.2[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
python_prepare_all() {
|
|
sed -e '/\<wheel\>/d' -i setup.cfg
|
|
distutils-r1_python_prepare_all
|
|
}
|