diff --git a/dev-python/xstatic-patternfly/Manifest b/dev-python/xstatic-patternfly/Manifest new file mode 100644 index 0000000000000..7ee574e3ed3e0 --- /dev/null +++ b/dev-python/xstatic-patternfly/Manifest @@ -0,0 +1 @@ +DIST xstatic-patternfly-3.21.0.1.tar.gz 5674553 BLAKE2B 23d14689bfd43195b26f818a0a766aa7ee3f70145baf776790dc642b09a38285370065538ca38aa85ed13924feadff2c97beb1c88026fb98a5d38b502c86ff76 SHA512 14ffebfefe00107cae16d6f2a6cfa11bc7be5b4cfec54f6fe0c0adb0d22b4730870ddd382b202d3489032680d9d4a43aca8ded4b654c44b083ee36c18ca70168 diff --git a/dev-python/xstatic-patternfly/metadata.xml b/dev-python/xstatic-patternfly/metadata.xml new file mode 100644 index 0000000000000..8768d46bf628b --- /dev/null +++ b/dev-python/xstatic-patternfly/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python Project + + + XStatic + + diff --git a/dev-python/xstatic-patternfly/xstatic-patternfly-3.21.0.1.ebuild b/dev-python/xstatic-patternfly/xstatic-patternfly-3.21.0.1.ebuild new file mode 100644 index 0000000000000..52f725edf4e28 --- /dev/null +++ b/dev-python/xstatic-patternfly/xstatic-patternfly-3.21.0.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +MY_PN="XStatic-Patternfly" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="XStatic Patternfly package" +HOMEPAGE="https://pypi.org/project/XStatic-Patternfly" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/xstatic[${PYTHON_USEDEP}]" + +DEPEND=" + ${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${MY_P}" + +python_install() { + distutils-r1_python_install + find "${ED}" -name '*.pth' -delete || die +}