idella4 15/06/16 07:11:29 Modified: ChangeLog Added: fudge-1.1.0.ebuild Log: bump, tidy (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.19 dev-python/fudge/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fudge/ChangeLog?rev=1.19&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fudge/ChangeLog?rev=1.19&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fudge/ChangeLog?r1=1.18&r2=1.19 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- ChangeLog 8 Apr 2015 08:05:22 -0000 1.18 +++ ChangeLog 16 Jun 2015 07:11:29 -0000 1.19 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/fudge # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v 1.18 2015/04/08 08:05:22 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/fudge/ChangeLog,v 1.19 2015/06/16 07:11:29 idella4 Exp $ + +*fudge-1.1.0 (16 Jun 2015) + + 16 Jun 2015; Ian Delaney <[email protected]> +fudge-1.1.0.ebuild: + bump, tidy 08 Apr 2015; Michał Górny <[email protected]> fudge-0.9.6-r1.ebuild: Drop old Python implementations 1.1 dev-python/fudge/fudge-1.1.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fudge/fudge-1.1.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fudge/fudge-1.1.0.ebuild?rev=1.1&content-type=text/plain Index: fudge-1.1.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/fudge/fudge-1.1.0.ebuild,v 1.1 2015/06/16 07:11:29 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) inherit distutils-r1 DESCRIPTION="Replace real objects with fakes (mocks, stubs, etc) while testing" HOMEPAGE="http://farmdev.com/projects/fudge/ http://pypi.python.org/pypi/fudge" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc test" RDEPEND="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/nose[${PYTHON_USEDEP}] )" python_compile_all() { use doc && emake -C docs html } python_test() { nosetests -w "${BUILD_DIR}"/lib \ || die "Tests fail with ${EPYTHON}" } python_install_all() { use doc && local HTML_DOCS=( docs/_build/html/. ) distutils-r1_python_install_all }
