diff options
Diffstat (limited to 'dev-python/amqplib/amqplib-0.6.1-r1.ebuild')
-rw-r--r-- | dev-python/amqplib/amqplib-0.6.1-r1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/amqplib/amqplib-0.6.1-r1.ebuild b/dev-python/amqplib/amqplib-0.6.1-r1.ebuild new file mode 100644 index 00000000000..f283aaf974c --- /dev/null +++ b/dev-python/amqplib/amqplib-0.6.1-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 eutils + +DESCRIPTION="Python client for the Advanced Message Queuing Procotol (AMQP)" +HOMEPAGE="http://code.google.com/p/py-amqplib/" +SRC_URI="http://py-amqplib.googlecode.com/files/${P}.tgz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="examples extras test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" + +PATCHES=( + "${FILESDIR}/${P}_disable_socket_tests.patch" +) + +python_test() { + "${PYTHON}" tests/client_0_8/run_all.py \ + || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all + + dodoc -r docs/. + if use examples; then + docinto examples + dodoc -r demo/. + fi + if use extras; then + insinto /usr/share/${PF} + doins -r extras + fi +} |