From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2585C13827E for ; Wed, 11 Dec 2013 16:18:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D79DDE0B86; Wed, 11 Dec 2013 16:18:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54CD5E0B86 for ; Wed, 11 Dec 2013 16:18:26 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 09C803407EE for ; Wed, 11 Dec 2013 16:18:23 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2310) id C12282004B; Wed, 11 Dec 2013 16:18:21 +0000 (UTC) From: "Matt Thode (prometheanfire)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, prometheanfire@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/fixtures: fixtures-0.3.14-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: fixtures-0.3.14-r1.ebuild ChangeLog X-VCS-Directories: dev-python/fixtures X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131211161821.C12282004B@flycatcher.gentoo.org> Date: Wed, 11 Dec 2013 16:18:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3ac89699-0e94-4fff-804a-d2365fd69578 X-Archives-Hash: 21ff059bca598debc5083bbb674b7ed0 prometheanfire 13/12/11 16:18:21 Modified: ChangeLog Added: fixtures-0.3.14-r1.ebuild Log: fixtures-0.3.14-r1 for bug 493926 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3) Revision Changes Path 1.7 dev-python/fixtures/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fixtures/ChangeLog?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fixtures/ChangeLog?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fixtures/ChangeLog?r1=1.6&r2=1.7 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/fixtures/ChangeLog,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ChangeLog 26 Sep 2013 00:43:09 -0000 1.6 +++ ChangeLog 11 Dec 2013 16:18:21 -0000 1.7 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/fixtures # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/fixtures/ChangeLog,v 1.6 2013/09/26 00:43:09 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/fixtures/ChangeLog,v 1.7 2013/12/11 16:18:21 prometheanfire Exp $ + +*fixtures-0.3.14-r1 (11 Dec 2013) + + 11 Dec 2013; Matthew Thode + +fixtures-0.3.14-r1.ebuild: + fixtures-0.3.14-r1 for bug 493926 *fixtures-0.3.14 (26 Sep 2013) 1.1 dev-python/fixtures/fixtures-0.3.14-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fixtures/fixtures-0.3.14-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/fixtures/fixtures-0.3.14-r1.ebuild?rev=1.1&content-type=text/plain Index: fixtures-0.3.14-r1.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/fixtures/fixtures-0.3.14-r1.ebuild,v 1.1 2013/12/11 16:18:21 prometheanfire Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 ) inherit distutils-r1 DESCRIPTION="Fixtures, reusable state for writing clean tests and more." HOMEPAGE="https://launchpad.net/python-fixtures https://pypi.python.org/pypi/fixtures" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="|| ( Apache-2.0 BSD )" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" # nose not listed but provides coverage output of tests # run of test files by python lacks any output except on fail DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] >=dev-python/testtools-0.9.22[${PYTHON_USEDEP}] dev-python/extras[${PYTHON_USEDEP}] )" RDEPEND=">=dev-python/testtools-0.9.22" DISTUTILS_IN_SOURCE_BUILD=1 python_test() { pushd "${BUILD_DIR}"/ > /dev/null ln -sf ../README . nosetests lib/${PN}/tests/test_*.py || die "Tests failed under ${EPYTHON}" }