diff options
-rw-r--r-- | dev-python/foolscap/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/foolscap/foolscap-0.6.4-r1.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/dev-python/foolscap/ChangeLog b/dev-python/foolscap/ChangeLog index f1dddd0ba641..2ad5d8061dbc 100644 --- a/dev-python/foolscap/ChangeLog +++ b/dev-python/foolscap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/foolscap # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/foolscap/ChangeLog,v 1.45 2013/08/03 09:45:47 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/foolscap/ChangeLog,v 1.46 2013/08/25 21:07:06 mgorny Exp $ + +*foolscap-0.6.4-r1 (25 Aug 2013) + + 25 Aug 2013; Michał Górny <mgorny@gentoo.org> +foolscap-0.6.4-r1.ebuild: + Convert to distutils-r1 wrt bug #482442. 03 Aug 2013; Michał Górny <mgorny@gentoo.org> foolscap-0.6.0.ebuild, foolscap-0.6.1.ebuild, foolscap-0.6.3.ebuild, foolscap-0.6.4.ebuild: diff --git a/dev-python/foolscap/foolscap-0.6.4-r1.ebuild b/dev-python/foolscap/foolscap-0.6.4-r1.ebuild new file mode 100644 index 000000000000..e21c9b8df713 --- /dev/null +++ b/dev-python/foolscap/foolscap-0.6.4-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/foolscap/foolscap-0.6.4-r1.ebuild,v 1.1 2013/08/25 21:07:06 mgorny Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit distutils-r1 + +DESCRIPTION="RPC protocol for Twisted" +HOMEPAGE="http://foolscap.lothar.com/trac http://pypi.python.org/pypi/foolscap" +SRC_URI="http://${PN}.lothar.com/releases/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="doc ssl" + +RDEPEND=">=dev-python/twisted-core-2.4.0[${PYTHON_USEDEP}] + dev-python/twisted-web[${PYTHON_USEDEP}] + ssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )" +DEPEND="${DEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + local -x LC_ALL=C + trial ${PN} || die "Tests fail for ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all + + if use doc; then + dodoc doc/*.txt + dohtml -A py,tpl,xhtml -r doc/* + fi +} |