jlec 15/06/19 07:51:32
Modified: pyzmq-14.4.1.ebuild pyzmq-14.6.0.ebuild ChangeLog
Added: pyzmq-14.7.0.ebuild
Removed: pyzmq-14.4.0.ebuild pyzmq-14.5.0.ebuild
pyzmq-2.2.0.1-r1.ebuild
Log:
Version Bump; drop old; fix versions in dependency, obsoletes bug #493298,
bug #531398
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key
E9402A79B03529A2!)
Revision Changes Path
1.12 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.12&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild?rev=1.12&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild?r1=1.11&r2=1.12
Index: pyzmq-14.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- pyzmq-14.4.1.ebuild 7 Jun 2015 09:49:28 -0000 1.11
+++ pyzmq-14.4.1.ebuild 19 Jun 2015 07:51:32 -0000 1.12
@@ -1,39 +1,37 @@
# 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.11
2015/06/07 09:49:28 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.4.1.ebuild,v 1.12
2015/06/19 07:51:32 jlec Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+PYTHON_COMPAT=( python2_7 python3_{3,4} )
inherit distutils-r1 toolchain-funcs
-DESCRIPTION="PyZMQ is a lightweight and super-fast messaging library built on
top of the ZeroMQ library"
+DESCRIPTION="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"
+# Ensures installation of gevent for test phase
+REQUIRED_USE="test? ( green )"
+
PY2_USEDEP=$(python_gen_usedep python2_7)
RDEPEND=">=net-libs/zeromq-2.1.9
dev-python/py[${PYTHON_USEDEP}]
- dev-python/cffi[${PYTHON_USEDEP}]
+ dev-python/cffi:=[${PYTHON_USEDEP}]
green? ( dev-python/gevent[${PY2_USEDEP}] )"
DEPEND="${RDEPEND}
- test? (
- dev-python/nose[${PYTHON_USEDEP}]
- )
+ 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
}
1.2 dev-python/pyzmq/pyzmq-14.6.0.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.6.0.ebuild?rev=1.2&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.6.0.ebuild?rev=1.2&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.6.0.ebuild?r1=1.1&r2=1.2
Index: pyzmq-14.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pyzmq-14.6.0.ebuild 14 May 2015 01:38:01 -0000 1.1
+++ pyzmq-14.6.0.ebuild 19 Jun 2015 07:51:32 -0000 1.2
@@ -1,14 +1,14 @@
# 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.6.0.ebuild,v 1.1
2015/05/14 01:38:01 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-14.6.0.ebuild,v 1.2
2015/06/19 07:51:32 jlec Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python2_7 python3_{3,4} )
inherit distutils-r1 toolchain-funcs
-DESCRIPTION="lightweight and super-fast messaging library built on top of the
ZeroMQ library"
+DESCRIPTION="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"
@@ -22,13 +22,12 @@
PY2_USEDEP=$(python_gen_usedep python2_7)
RDEPEND="
- >=net-libs/zeromq-4.0.5:=
+ >=net-libs/zeromq-4.1.2:=
dev-python/py[${PYTHON_USEDEP}]
dev-python/cffi:=[${PYTHON_USEDEP}]
green? ( dev-python/gevent[${PY2_USEDEP}] )"
DEPEND="${RDEPEND}
- test? (
- dev-python/nose[${PYTHON_USEDEP}] )
+ test? ( dev-python/nose[${PYTHON_USEDEP}] )
doc? (
dev-python/sphinx[${PYTHON_USEDEP}]
dev-python/numpydoc[${PYTHON_USEDEP}]
1.77 dev-python/pyzmq/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.77&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?rev=1.77&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/ChangeLog?r1=1.76&r2=1.77
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog 7 Jun 2015 09:49:28 -0000 1.76
+++ ChangeLog 19 Jun 2015 07:51:32 -0000 1.77
@@ -1,6 +1,14 @@
# ChangeLog for dev-python/pyzmq
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.76
2015/06/07 09:49:28 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/ChangeLog,v 1.77
2015/06/19 07:51:32 jlec Exp $
+
+*pyzmq-14.7.0 (19 Jun 2015)
+
+ 19 Jun 2015; Justin Lecher <[email protected]> +pyzmq-14.7.0.ebuild,
+ -pyzmq-14.4.0.ebuild, -pyzmq-14.5.0.ebuild, -pyzmq-2.2.0.1-r1.ebuild,
+ pyzmq-14.4.1.ebuild, pyzmq-14.6.0.ebuild:
+ Version Bump; drop old; fix versions in dependency, obsoletes bug #493298,
bug
+ #531398
07 Jun 2015; Markus Meier <[email protected]> pyzmq-14.4.1.ebuild:
arm stable, bug #540290
1.1 dev-python/pyzmq/pyzmq-14.7.0.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.7.0.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyzmq/pyzmq-14.7.0.ebuild?rev=1.1&content-type=text/plain
Index: pyzmq-14.7.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.7.0.ebuild,v 1.1
2015/06/19 07:51:32 jlec Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 python3_{3,4} )
inherit distutils-r1 toolchain-funcs
DESCRIPTION="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"
# Ensures installation of gevent for test phase
REQUIRED_USE="test? ( green )"
PY2_USEDEP=$(python_gen_usedep python2_7)
RDEPEND="
>=net-libs/zeromq-4.1.2:=
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}]
)"
python_prepare_all() {
# Prevent un-needed download during build
sed -e "/'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die
distutils-r1_python_prepare_all
}
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
}