diff options
author | Marien Zwart <marienz@gentoo.org> | 2006-09-25 13:34:23 +0000 |
---|---|---|
committer | Marien Zwart <marienz@gentoo.org> | 2006-09-25 13:34:23 +0000 |
commit | 8e5de7461fc23fed511bf739c034cdc367626344 (patch) | |
tree | 1580aec68e9389a9618d2131cf38f3975dff6ac5 /dev-python/soappy/soappy-0.11.6-r1.ebuild | |
parent | arm/ia64/s390/sh love (diff) | |
download | gentoo-2-8e5de7461fc23fed511bf739c034cdc367626344.tar.gz gentoo-2-8e5de7461fc23fed511bf739c034cdc367626344.tar.bz2 gentoo-2-8e5de7461fc23fed511bf739c034cdc367626344.zip |
Revision bump patched to work with python 2.5.
(Portage version: 2.1.2_pre1)
Diffstat (limited to 'dev-python/soappy/soappy-0.11.6-r1.ebuild')
-rw-r--r-- | dev-python/soappy/soappy-0.11.6-r1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/soappy/soappy-0.11.6-r1.ebuild b/dev-python/soappy/soappy-0.11.6-r1.ebuild new file mode 100644 index 000000000000..0fdc78a5cefc --- /dev/null +++ b/dev-python/soappy/soappy-0.11.6-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/soappy/soappy-0.11.6-r1.ebuild,v 1.1 2006/09/25 13:34:23 marienz Exp $ + +inherit distutils eutils + +MY_P="SOAPpy-${PV}" + +DESCRIPTION="SOAP implementation for Python" +HOMEPAGE="http://pywebsvcs.sourceforge.net/" +SRC_URI="mirror://sourceforge/pywebsvcs/${MY_P}.tar.gz" + +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc-macos ~sparc ~x86" +SLOT="0" +LICENSE="GPL-2" +IUSE="" + +DEPEND=">=dev-python/fpconst-0.7.1 + dev-python/pyxml" + +S=${WORKDIR}/${MY_P} + + +src_unpack() { + unpack ${A} + cd "${S}" + + # python 2.5 compatibility + epatch "${FILESDIR}/${P}-future-imports.patch" +} |