diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-06-23 07:00:28 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-06-23 07:00:28 +0100 |
commit | e23cdda4dbb0c83b9e682ab5e916085a35203da5 (patch) | |
tree | 5a4ac448a3b288b731c24d947e0ce52df3cab07b /dev-python/xstatic-patternfly-bootstrap-treeview | |
parent | 8187a741807f3e9a9e26304973cf18087dcf2560 (diff) |
gentoo resync : 23.06.2018
Diffstat (limited to 'dev-python/xstatic-patternfly-bootstrap-treeview')
3 files changed, 47 insertions, 0 deletions
diff --git a/dev-python/xstatic-patternfly-bootstrap-treeview/Manifest b/dev-python/xstatic-patternfly-bootstrap-treeview/Manifest new file mode 100644 index 000000000000..f7da4b089a82 --- /dev/null +++ b/dev-python/xstatic-patternfly-bootstrap-treeview/Manifest @@ -0,0 +1,3 @@ +DIST xstatic-patternfly-bootstrap-treeview-2.1.3.2.tar.gz 19720 BLAKE2B 930f6aded2b42bb49b7b7865d64ff21923f720d15b375b018621fc1647cc0588226308e7c362d436f22074782a0e55ce7851fffbd47db1ea9c17f197e39c7e15 SHA512 51c3c60a56390b2c9662bf54a72a485ab0fa17872cd4163785c20b72fe4cc70b7a019214c1474d720e13e91eff807f0497d50bfaf5f3ce4f52a1bd488090b041 +EBUILD xstatic-patternfly-bootstrap-treeview-2.1.3.2.ebuild 751 BLAKE2B 8202f08397e9b9439758152a9d5dad4d77a981d1c6bf23fb146a174abce6214d82c3b8313a8d49139a4e42336ca527bda584877efa59f3ee7126ea493ba0e4ce SHA512 96f5b27675828cf15ab3da2a85cbc28e5a93f94ad57daab505f0fce219b6ef6aa283ac0ad5ec8254dbd354662d064f84f727bddd8cfaadc1596ca2ef4bd62997 +MISC metadata.xml 328 BLAKE2B cd1db5ebb236344ab7336b3db5f4523fc3730a99a294392907ee5289a17feffd31390be088c02aa6c87a84bbbebd84bb48482cd739a5f55303333083d4bdc0c0 SHA512 883210945f38216a48fa5166057e95aafa03c9aec5a7de0d16303fb6a4e6d98c22695b55dd5fc1d26ba78b7c3def32ac7bfce1f036db32116a9b4e5e0b31a8c8 diff --git a/dev-python/xstatic-patternfly-bootstrap-treeview/metadata.xml b/dev-python/xstatic-patternfly-bootstrap-treeview/metadata.xml new file mode 100644 index 000000000000..8768d46bf628 --- /dev/null +++ b/dev-python/xstatic-patternfly-bootstrap-treeview/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>python@gentoo.org</email> + <name>Python Project</name> + </maintainer> + <upstream> + <remote-id type="pypi">XStatic</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/xstatic-patternfly-bootstrap-treeview/xstatic-patternfly-bootstrap-treeview-2.1.3.2.ebuild b/dev-python/xstatic-patternfly-bootstrap-treeview/xstatic-patternfly-bootstrap-treeview-2.1.3.2.ebuild new file mode 100644 index 000000000000..5d71669b7da3 --- /dev/null +++ b/dev-python/xstatic-patternfly-bootstrap-treeview/xstatic-patternfly-bootstrap-treeview-2.1.3.2.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-Bootstrap-Treeview" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="XStatic-Patternfly-Bootstrap-Treeview package" +HOMEPAGE="https://pypi.org/project/XStatic-Patternfly-Bootstrap-Treeview" +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 +} |