diff --git a/dev-python/pyclipper/Manifest b/dev-python/pyclipper/Manifest new file mode 100644 index 0000000000000..95b30bfed2f83 --- /dev/null +++ b/dev-python/pyclipper/Manifest @@ -0,0 +1 @@ +DIST pyclipper-1.1.0.tar.gz 53916 BLAKE2B 53b7b6609d602cdcbd8c8f4ceaed999c97e155747f7daeb630333f18fd2719040d118c8fa3d0e60a1ccd92c20aecb355ec9d4f9c22f66dc07b14a919f981f667 SHA512 53371bc2e0439f72ac4ebf96f833c4451d2b1924d7f9cddcbac79a0a6d6bd95ac1fb3fb08e3ea3fcf3ffe22cd718d31c7c528016605b275a3e80642e58546d74 diff --git a/dev-python/pyclipper/metadata.xml b/dev-python/pyclipper/metadata.xml new file mode 100644 index 0000000000000..3da97a9953ccb --- /dev/null +++ b/dev-python/pyclipper/metadata.xml @@ -0,0 +1,8 @@ + + + + + pacho@gentoo.org + Pacho Ramos + + diff --git a/dev-python/pyclipper/pyclipper-1.1.0.ebuild b/dev-python/pyclipper/pyclipper-1.1.0.ebuild new file mode 100644 index 0000000000000..98a6fe8fc6ce5 --- /dev/null +++ b/dev-python/pyclipper/pyclipper-1.1.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{6,7} ) +inherit distutils-r1 + +DESCRIPTION="Cython wrapper for the C++ translation of the Angus Johnson's Clipper library" +HOMEPAGE="https://github.com/fonttools/pyclipper" +SRC_URI="https://github.com/fonttools/pyclipper/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + dev-python/cython[${PYTHON_USEDEP}] + dev-python/setuptools-git[${PYTHON_USEDEP}] + dev-python/setuptools_scm[${PYTHON_USEDEP}] +" +RDEPEND="" + +python_test() { + esetup.py test +}