idella4     15/02/08 14:45:04

  Modified:             pyzmq-14.4.1.ebuild ChangeLog
  Added:                pyzmq-14.5.0.ebuild
  Removed:              pyzmq-13.1.0.ebuild
  Log:
  14.4.1; correction to deps, test phase bump; re-expose py3 to test phase (see 
comment), remove 1 old
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  Changes    Path
1.6                  dev-python/pyzmq/pyzmq-14.4.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild?r1=1.5&r2=1.6

Index: pyzmq-14.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pyzmq-14.4.1.ebuild 30 Dec 2014 16:58:13 -0000      1.5
+++ pyzmq-14.4.1.ebuild 8 Feb 2015 14:45:04 -0000       1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild,v 1.5 
2014/12/30 16:58:13 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild,v 1.6 
2015/02/08 14:45:04 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -25,13 +25,13 @@
 DEPEND="${RDEPEND}
        test? (
                dev-python/nose[${PYTHON_USEDEP}]
-               $(python_gen_cond_dep "dev-python/gevent[${PY2_USEDEP}]" 
python2_7)
        )
        doc? (
                dev-python/sphinx[${PYTHON_USEDEP}]
                dev-python/numpydoc[${PYTHON_USEDEP}]
        )"
 
+# Ensures installation of gevent for test phase
 REQUIRED_USE="test? ( green )"
 
 python_configure_all() {
@@ -50,8 +50,6 @@
 python_test() {
        if python_is_python3; then
                einfo "Skipping python3 due to lack of support by gevent"
-       elif ! use green; then
-               einfo "Skipping greenlet tests due to green USE flag being 
disabled"
        else
                nosetests -svw "${BUILD_DIR}/lib/"
        fi



1.64                 dev-python/pyzmq/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.64&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.64&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog   30 Dec 2014 16:58:13 -0000      1.63
+++ ChangeLog   8 Feb 2015 14:45:04 -0000       1.64
@@ -1,6 +1,13 @@
 # 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.63 
2014/12/30 16:58:13 floppym Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.64 
2015/02/08 14:45:04 idella4 Exp $
+
+*pyzmq-14.5.0 (08 Feb 2015)
+
+  08 Feb 2015; Ian Delaney <[email protected]> +pyzmq-14.5.0.ebuild,
+  -pyzmq-13.1.0.ebuild, pyzmq-14.4.1.ebuild:
+  14.4.1; correction to deps, test phase bump; re-expose py3 to test phase (see
+  comment), remove 1 old
 
   30 Dec 2014; Mike Gilbert <[email protected]> pyzmq-14.3.1.ebuild,
   pyzmq-14.4.0.ebuild, pyzmq-14.4.1.ebuild:



1.1                  dev-python/pyzmq/pyzmq-14.5.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.5.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.5.0.ebuild?rev=1.1&content-type=text/plain

Index: pyzmq-14.5.0.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.5.0.ebuild,v 1.1 
2015/02/08 14:45:04 idella4 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 ~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}]
                dev-python/numpydoc[${PYTHON_USEDEP}]
        )"

# Ensures installation of gevent for test phase
REQUIRED_USE="test? ( green )"

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() {
        # suite reports error in absence of gevent under py3 but is designed to 
continue
        # rather than exit making py3 apt for the test phase
        nosetests -svw "${BUILD_DIR}/lib/"
}

python_install_all() {
        use examples && local EXAMPLES=( examples/. )
        use doc && local HTML_DOCS=( docs/build/html/. )
        distutils-r1_python_install_all
}




Reply via email to