diff options
author | Marien Zwart <marienz@gentoo.org> | 2006-02-13 22:50:01 +0000 |
---|---|---|
committer | Marien Zwart <marienz@gentoo.org> | 2006-02-13 22:50:01 +0000 |
commit | dc49d6fab454260f9f0c94f8621f79f172130f09 (patch) | |
tree | e2a19cce980918eacdd8393d6a5ebcfb902bd868 /dev-python/vertex/vertex-0.1.ebuild | |
parent | Version Bump. Closes bug #122702. (diff) | |
download | gentoo-2-dc49d6fab454260f9f0c94f8621f79f172130f09.tar.gz gentoo-2-dc49d6fab454260f9f0c94f8621f79f172130f09.tar.bz2 gentoo-2-dc49d6fab454260f9f0c94f8621f79f172130f09.zip |
Make the tests pass with twisted 2.2. No bump because this only affects the tests.
(Portage version: 2660-svn)
Diffstat (limited to 'dev-python/vertex/vertex-0.1.ebuild')
-rw-r--r-- | dev-python/vertex/vertex-0.1.ebuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/dev-python/vertex/vertex-0.1.ebuild b/dev-python/vertex/vertex-0.1.ebuild index a0106ce9a696..5238c04ce4a2 100644 --- a/dev-python/vertex/vertex-0.1.ebuild +++ b/dev-python/vertex/vertex-0.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/vertex/vertex-0.1.ebuild,v 1.1 2005/12/05 17:06:16 marienz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/vertex/vertex-0.1.ebuild,v 1.2 2006/02/13 22:50:01 marienz Exp $ inherit distutils eutils @@ -23,6 +23,12 @@ S="${WORKDIR}/Vertex-${PV}" DOCS="NAME.txt" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-tests-2.2-compat.patch" +} + src_test() { - trial -R vertex || die "trial failed" + trial vertex || die "trial failed" } |