diff options
Diffstat (limited to 'dev-python/python-msrplib/python-msrplib-0.14.1.ebuild')
-rw-r--r-- | dev-python/python-msrplib/python-msrplib-0.14.1.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-python/python-msrplib/python-msrplib-0.14.1.ebuild b/dev-python/python-msrplib/python-msrplib-0.14.1.ebuild deleted file mode 100644 index 624d190..0000000 --- a/dev-python/python-msrplib/python-msrplib-0.14.1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=3 -PYTHON_DEPEND="*:2.5" -SUPPORT_PYTHON_ABIS="1" -DISTUTILS_SRC_TEST="nosetests" - -inherit distutils - -DESCRIPTION="MSRP client library, implements RFC4975 and RFC4976" -HOMEPAGE="http://www.msrprelay.org/" -SRC_URI="http://download.ag-projects.com/MSRP/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="examples" - -DEPEND="test? ( ${RDEPEND} )" -RDEPEND="dev-python/eventlet - dev-python/python-application - dev-python/python-gnutls - dev-python/twisted - dev-python/twisted-names - net-zope/zope-interface" - -src_compile() { - distutils_src_compile -} - -src_test() { - testing() { - PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/test_basic.py - } - python_execute_function testing -} - - -src_install() { - distutils_src_install - - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples || die - fi -} - |