diff --git a/dev-python/glyphsLib/Manifest b/dev-python/glyphsLib/Manifest index e6a4970832..42e919673d 100644 --- a/dev-python/glyphsLib/Manifest +++ b/dev-python/glyphsLib/Manifest @@ -1 +1,2 @@ DIST glyphsLib-5.3.0.zip 954392 BLAKE2B e7a0df00e8e724ab958f2e4a9c1e68f3aff6e05e9300c86585b8a35d0f38fe0147af21e7470f45ac2655105c0d42c19f940a4db67c16fe06c4293b596d795dc8 SHA512 c2255a84172b972168b914343a35e6cff130b99c66b636f0aa7e97ffcad6fe916289dfc5fc2871f9ba466db4e45f8fcf5784824083a91d481e8c1323e6cf9970 +DIST glyphsLib-5.3.2.zip 960327 BLAKE2B 505d14a1e4e4a5cf8e3ea9edb1ed4fd384cc4e5d0bf6874904d45ba227f53202556076e84f3cc68a7b40354c128f71733233c1a95ea66040e0693779c5da38c7 SHA512 fbb09d666cda404a02908cf6b782a2fc986774bd490960bc71bc225260904ea284800018a4b7e326122cc226bdbe5aa9718072e8eeac019eb05c1195c535778a diff --git a/dev-python/glyphsLib/glyphsLib-5.3.2.ebuild b/dev-python/glyphsLib/glyphsLib-5.3.2.ebuild new file mode 100644 index 0000000000..1e2d086d1c --- /dev/null +++ b/dev-python/glyphsLib/glyphsLib-5.3.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_8 ) +inherit distutils-r1 + +DESCRIPTION="A library to provide a bridge from Glyphs source files to UFOs" +HOMEPAGE="https://github.com/googlei18n/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 '/\/d' -i setup.cfg + distutils-r1_python_prepare_all +}