idella4     14/10/02 10:01:48

  Modified:             ChangeLog
  Added:                execnet-1.2.0-r1.ebuild
  Removed:              execnet-1.0.9.ebuild execnet-1.2.0.ebuild
  Log:
  clean old python impls, add py3.3 3.4 support, add IUSE test and testrunner 
dep, upgrade test phase, fixes bug #524246 by W. T. King requesting added py3 
support, rm old
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  Changes    Path
1.20                 dev-python/execnet/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/execnet/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog   31 Mar 2014 20:33:31 -0000      1.19
+++ ChangeLog   2 Oct 2014 10:01:48 -0000       1.20
@@ -1,6 +1,14 @@
 # ChangeLog for dev-python/execnet
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/execnet/ChangeLog,v 1.19 
2014/03/31 20:33:31 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/execnet/ChangeLog,v 1.20 
2014/10/02 10:01:48 idella4 Exp $
+
+*execnet-1.2.0-r1 (02 Oct 2014)
+
+  02 Oct 2014; Ian Delaney <[email protected]> +execnet-1.2.0-r1.ebuild,
+  -execnet-1.0.9.ebuild, -execnet-1.2.0.ebuild:
+  clean old python impls, add py3.3 3.4 support, add IUSE test and testrunner
+  dep, upgrade test phase, fixes bug #524246 by W. T. King requesting added py3
+  support, rm old
 
   31 Mar 2014; Michał Górny <[email protected]> execnet-1.1-r1.ebuild,
   execnet-1.2.0.ebuild:



1.1                  dev-python/execnet/execnet-1.2.0-r1.ebuild

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

Index: execnet-1.2.0-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/execnet/execnet-1.2.0-r1.ebuild,v 
1.1 2014/10/02 10:01:48 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )

inherit distutils-r1

DESCRIPTION="Rapid multi-Python deployment"
HOMEPAGE="http://codespeak.net/execnet/ http://pypi.python.org/pypi/execnet/";
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
        doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
        test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
RDEPEND=""

python_prepare_all() {
        # Remove doctest that access an i'net sire
        rm doc/example/test_info.txt || die

        distutils-r1_python_prepare_all
}

python_compile_all() {
        use doc && emake -C doc html
}

src_test() {
        # Tests are a bit fragile to failures in parallel.
        local DISTUTILS_NO_PARALLEL_BUILD=1
        distutils-r1_src_test
}

python_test() {
        # Re-enable in order to properly test disabling it ;).
        # https://bitbucket.org/hpk42/execnet/issue/10
        unset PYTHONDONTWRITEBYTECODE

        # 
https://bitbucket.org/hpk42/execnet/issue/35/test-failures-in-execnet-120
        py.test || die "Tests fail with ${EPYTHON}"
}

python_install_all() {
        use doc && local HTML_DOCS=( doc/_build/html/. )

        distutils-r1_python_install_all
}




Reply via email to