diff --git a/dev-python/pluggy/Manifest b/dev-python/pluggy/Manifest new file mode 100644 index 0000000000000..76351b4563c6d --- /dev/null +++ b/dev-python/pluggy/Manifest @@ -0,0 +1 @@ +DIST pluggy-0.3.1.tar.gz 15821 SHA256 159cc783e056c07da6552aa5aef6b1e6c0064b4f18bd49c531fd2d40aafb0ea3 SHA512 ebff28ef6d5eb78d8043fcf3860e43dd80bd800c12f6f744ae2a8757815f94034c858dbd6f4ab35dd4c609d4446aeb1783ace4f54ea6c3de6ec295ec06c7abb8 WHIRLPOOL a1b516135fa770c519994e0e1f045ac1c16e9166f169edc6b5fe79a0b68308273c8c28d6db138f7042dfe95d2e97e5bddd1d7fcfcc3b89cf5e4aee2da9d73c23 diff --git a/dev-python/pluggy/metadata.xml b/dev-python/pluggy/metadata.xml new file mode 100644 index 0000000000000..9722362930616 --- /dev/null +++ b/dev-python/pluggy/metadata.xml @@ -0,0 +1,15 @@ + + + + + python@gentoo.org + Python + + + pluggy + + holger@merlinux.eu + Holger Krekel + + + diff --git a/dev-python/pluggy/pluggy-0.3.1.ebuild b/dev-python/pluggy/pluggy-0.3.1.ebuild new file mode 100644 index 0000000000000..cb12139c23fc3 --- /dev/null +++ b/dev-python/pluggy/pluggy-0.3.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="plugin and hook calling mechanisms for python" +HOMEPAGE=" http://pypi.python.org/pypi/pluggy" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +}