radhermit 14/05/09 04:49:11 Modified: ChangeLog Added: pyzmq-14.3.0.ebuild Log: Version bump. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path 1.47 dev-python/pyzmq/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.47&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.47&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?r1=1.46&r2=1.47 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- ChangeLog 9 May 2014 01:44:25 -0000 1.46 +++ ChangeLog 9 May 2014 04:49:11 -0000 1.47 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyzmq # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.46 2014/05/09 01:44:25 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.47 2014/05/09 04:49:11 radhermit Exp $ + +*pyzmq-14.3.0 (09 May 2014) + + 09 May 2014; Tim Harder <[email protected]> +pyzmq-14.3.0.ebuild: + Version bump. 09 May 2014; Mike Gilbert <[email protected]> pyzmq-14.1.1.ebuild: Dropy unnecessary test dependencies. 1.1 dev-python/pyzmq/pyzmq-14.3.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.3.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.3.0.ebuild?rev=1.1&content-type=text/plain Index: pyzmq-14.3.0.ebuild =================================================================== # 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.0.ebuild,v 1.1 2014/05/09 04:49:11 radhermit Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,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 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="examples green test" PY2_USEDEP=$(python_gen_usedep 'python2*') RDEPEND=">=net-libs/zeromq-2.1.9 green? ( dev-python/gevent[${PY2_USEDEP}] )" DEPEND="${RDEPEND} test? ( dev-python/cffi[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] )" python_configure_all() { tc-export CC } 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/. ) distutils-r1_python_install_all }
