idella4 15/03/19 04:58:45 Modified: ChangeLog Added: cytoolz-0.7.2-r2.ebuild Removed: cytoolz-0.7.2-r1.ebuild cytoolz-0.7.2.ebuild Log: revbump; add missed dep and update test phase, rm obsolete (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.8 dev-python/cytoolz/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cytoolz/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cytoolz/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cytoolz/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/cytoolz/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 18 Mar 2015 05:10:57 -0000 1.7 +++ ChangeLog 19 Mar 2015 04:58:45 -0000 1.8 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/cytoolz # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cytoolz/ChangeLog,v 1.7 2015/03/18 05:10:57 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cytoolz/ChangeLog,v 1.8 2015/03/19 04:58:45 idella4 Exp $ + +*cytoolz-0.7.2-r2 (19 Mar 2015) + + 19 Mar 2015; Ian Delaney <[email protected]> +cytoolz-0.7.2-r2.ebuild, + -cytoolz-0.7.2-r1.ebuild, -cytoolz-0.7.2.ebuild: + revbump; add missed dep and update test phase, rm obsolete *cytoolz-0.7.2-r1 (18 Mar 2015) 1.1 dev-python/cytoolz/cytoolz-0.7.2-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cytoolz/cytoolz-0.7.2-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cytoolz/cytoolz-0.7.2-r2.ebuild?rev=1.1&content-type=text/plain Index: cytoolz-0.7.2-r2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/cytoolz/cytoolz-0.7.2-r2.ebuild,v 1.1 2015/03/19 04:58:45 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit distutils-r1 DESCRIPTION="Cython implementation of Toolz: High performance functional utilities" HOMEPAGE="https://pypi.python.org/pypi/cytoolz" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" # Informed by author the dep in toolz is not only required but the # tests are version sensitive. Dep on toolz actually appears missing from setup.py # https://github.com/pytoolz/cytoolz/issues/57 RDEPEND=" dev-python/cython[${PYTHON_USEDEP}] >=dev-python/toolz-0.7.1[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} test? ( dev-python/nose[${PYTHON_USEDEP}] )" python_compile() { python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" distutils-r1_python_compile } python_test() { pushd "${BUILD_DIR}"/lib/ > /dev/null PYTHONPATH=.:${PN} nosetests --with-doctest ${PN} || die "tests failed under ${EPYTHON}" popd > /dev/null }
