Files
pkgsrc-ng/net/py-zsi/patches/patch-aa
2013-09-26 17:14:40 +02:00

21 lines
611 B
Plaintext

$NetBSD: patch-aa,v 1.2 2008/03/18 23:22:14 drochner Exp $
--- setup.py.orig 2006-09-28 00:55:49.000000000 +0200
+++ setup.py
@@ -3,8 +3,4 @@
import sys
-try:
- from setuptools import setup
- hasSetuptools = True
-except ImportError:
- from distutils.core import setup
- hasSetuptools = False
+from distutils.core import setup
+hasSetuptools = False
@@ -52,3 +48,3 @@ if hasSetuptools:
else:
- additional_params['scripts'] = ["scripts/wsdl2py", "scripts/wsdl2dispatch"]
+ additional_params['scripts'] = ["scripts/wsdl2py" + sys.version[0:3], "scripts/wsdl2dispatch" + sys.version[0:3]]