diff options
author | Ian Delaney <idella4@gentoo.org> | 2015-05-12 14:55:14 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-05-12 14:55:14 +0000 |
commit | 2e621f5044601d646f15ff110fca1ec4af1a3c15 (patch) | |
tree | 1e32a0276e5ee57dd6fbb6b45c40c1aa3b202fd9 /dev-python/pyzmq/pyzmq-14.3.1.ebuild | |
parent | Avoid net-libs/libkpeople blockers with KF5. (diff) | |
download | gentoo-2-2e621f5044601d646f15ff110fca1ec4af1a3c15.tar.gz gentoo-2-2e621f5044601d646f15ff110fca1ec4af1a3c15.tar.bz2 gentoo-2-2e621f5044601d646f15ff110fca1ec4af1a3c15.zip |
bump, rm old
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/pyzmq/pyzmq-14.3.1.ebuild')
-rw-r--r-- | dev-python/pyzmq/pyzmq-14.3.1.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/dev-python/pyzmq/pyzmq-14.3.1.ebuild b/dev-python/pyzmq/pyzmq-14.3.1.ebuild deleted file mode 100644 index b834afd19603..000000000000 --- a/dev-python/pyzmq/pyzmq-14.3.1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.3.1.ebuild,v 1.8 2014/12/30 16:58:13 floppym Exp $ - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) - -inherit distutils-r1 toolchain-funcs - -DESCRIPTION="PyZMQ is a lightweight and super-fast messaging library built on top of the ZeroMQ library" -HOMEPAGE="http://www.zeromq.org/bindings:python http://pypi.python.org/pypi/pyzmq" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="doc examples green test" - -PY2_USEDEP=$(python_gen_usedep python2_7) -RDEPEND=">=net-libs/zeromq-2.1.9 - dev-python/py[${PYTHON_USEDEP}] - dev-python/cffi[${PYTHON_USEDEP}] - green? ( dev-python/gevent[${PY2_USEDEP}] )" -DEPEND="${RDEPEND} - test? ( dev-python/nose[${PYTHON_USEDEP}] ) - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" - -python_configure_all() { - tc-export CC -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_compile() { - python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" - distutils-r1_python_compile -} - -python_test() { - if python_is_python3; then - einfo "Skipping python3 due to lack of support by gevent" - else - nosetests -svw "${BUILD_DIR}/lib/" - fi -} - -python_install_all() { - use examples && local EXAMPLES=( examples/. ) - use doc && local HTML_DOCS=( docs/build/html/. ) - distutils-r1_python_install_all -} |