Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 367751
Collapse All | Expand All

(-)soappy.orig/soappy-0.12.5.ebuild (-1 / +2 lines)
Lines 7-13 Link Here
7
SUPPORT_PYTHON_ABIS="1"
7
SUPPORT_PYTHON_ABIS="1"
8
RESTRICT_PYTHON_ABIS="3.*"
8
RESTRICT_PYTHON_ABIS="3.*"
9
9
10
inherit eutils distutils
10
inherit eutils distutils eutils
11
11
12
MY_PN="SOAPpy"
12
MY_PN="SOAPpy"
13
MY_P="${MY_PN}-${PV}"
13
MY_P="${MY_PN}-${PV}"
Lines 45-50 Link Here
45
src_prepare() {
46
src_prepare() {
46
	distutils_src_prepare
47
	distutils_src_prepare
47
	find -name .cvsignore -print0 | xargs -0 rm -f
48
	find -name .cvsignore -print0 | xargs -0 rm -f
49
	epatch "${FILESDIR}"/${PF}-xml.patch || die
48
}
50
}
49
51
50
src_install() {
52
src_install() {
(-)src/SOAPpy/Parser.py (+3 lines)
Lines 6-11 Link Here
6
6
7
import string
7
import string
8
import fpconst
8
import fpconst
9
import xml
10
if hasattr(xml, "use_pyxml"):
11
    xml.use_pyxml()
9
import xml.sax
12
import xml.sax
10
from wstools.XMLname import fromXMLname
13
from wstools.XMLname import fromXMLname
11
14
(-)src/SOAPpy/WSDL.py (+3 lines)
Lines 7-12 Link Here
7
7
8
import wstools
8
import wstools
9
import xml
9
import xml
10
if hasattr(xml, "use_pyxml"):
11
    xml.use_pyxml()
12
    
10
from Errors import Error
13
from Errors import Error
11
from Client import SOAPProxy, SOAPAddress
14
from Client import SOAPProxy, SOAPAddress
12
from Config import Config
15
from Config import Config

Return to bug 367751