alunduil 15/02/22 16:55:27 Modified: ChangeLog Added: behave-1.2.5.ebuild Log: add version 1.2.5 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Revision Changes Path 1.2 dev-python/behave/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/behave/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/behave/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/behave/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/behave/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 22 Oct 2014 01:12:16 -0000 1.1 +++ ChangeLog 22 Feb 2015 16:55:27 -0000 1.2 @@ -1,10 +1,15 @@ # ChangeLog for dev-python/behave -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/behave/ChangeLog,v 1.1 2014/10/22 01:12:16 alunduil Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/behave/ChangeLog,v 1.2 2015/02/22 16:55:27 alunduil Exp $ + +*behave-1.2.5 (22 Feb 2015) + + 22 Feb 2015; Alex Brandt <[email protected]> +behave-1.2.5.ebuild, + metadata.xml: + add version 1.2.5 *behave-1.2.4 (22 Oct 2014) 22 Oct 2014; Alex Brandt <[email protected]> +behave-1.2.4.ebuild, +metadata.xml: add ebuild written by me - 1.1 dev-python/behave/behave-1.2.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/behave/behave-1.2.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/behave/behave-1.2.5.ebuild?rev=1.1&content-type=text/plain Index: behave-1.2.5.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/behave/behave-1.2.5.ebuild,v 1.1 2015/02/22 16:55:27 alunduil Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) inherit distutils-r1 DESCRIPTION="behaviour-driven development, Python style" HOMEPAGE="http://github.com/behave/behave" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" IUSE="doc test" DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] doc? ( >=dev-python/sphinx-1.2.2[${PYTHON_USEDEP}] >=dev-python/sphinxcontrib-cheeseshop-0.2[${PYTHON_USEDEP}] ) test? ( >=dev-python/mock-1.0[${PYTHON_USEDEP}] >=dev-python/nose-1.3[${PYTHON_USEDEP}] >=dev-python/pyhamcrest-1.8[${PYTHON_USEDEP}] ) " RDEPEND=" >=dev-python/parse-1.6.3[${PYTHON_USEDEP}] >=dev-python/parse-type-0.3.4[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}] " python_compile_all() { use doc && emake -C docs html } python_test() { nosetests || die "nosetests failed under ${EPYTHON}" ${PYTHON} -m behave --tags='~@xfail' features/ || die "behave features failed under ${EPYTHON}" ${PYTHON} -m behave --tags='~@xfail' tools/test-features/ || die "behave test-festures failed under ${EPYTHON}" ${PYTHON} -m behave --tags='~@xfail' issue.features/ || die "behave issue.features failed under ${EPYTHON}" } python_install_all() { use doc && local HTML_DOCS=( build/docs/html/. ) distutils-r1_python_install_all }
