summaryrefslogtreecommitdiff
path: root/devel/py-kid/files/patch-setup.py
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2005-12-29 05:25:46 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2005-12-29 05:25:46 +0000
commitb41b5a6563200de63b54f1a6da76a300240b89f5 (patch)
tree27c35ae0f81922aa0b5aab1ca8b15525a35606d7 /devel/py-kid/files/patch-setup.py
parent[Maintainer Update] cad/brlcad 7.6.4 -> 7.6.6 (diff)
NEW PORT: devel/py-kid template language for XML based written in Python
Kid is a simple template language for XML based vocabularies written in Python. It was spawned as a result of a kinky love triangle between XSLT, TAL, and PHP. We believe many of the best features of these languages live on in Kid with much of the limitations and complexity stamped out. PR: ports/90909 Submitted by: "Choe, Cheng-Dae" <whitekid@gmail.com>
Diffstat (limited to 'devel/py-kid/files/patch-setup.py')
-rw-r--r--devel/py-kid/files/patch-setup.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/devel/py-kid/files/patch-setup.py b/devel/py-kid/files/patch-setup.py
new file mode 100644
index 000000000000..186313f30630
--- /dev/null
+++ b/devel/py-kid/files/patch-setup.py
@@ -0,0 +1,33 @@
+
+$FreeBSD$
+
+--- setup.py.orig
++++ setup.py
+@@ -1,6 +1,6 @@
+ # bootstrap setuptools if necessary
+-from ez_setup import use_setuptools
+-use_setuptools()
++#from ez_setup import use_setuptools
++#use_setuptools()
+
+ import kid as package
+
+@@ -8,7 +8,8 @@
+ package_version = package.__version__
+ doc_parts = package.__doc__.strip().splitlines()
+
+-from setuptools import setup
++#from setuptools import setup
++from distutils.core import setup
+ setup(
+ name=package_name,
+ version=package_version,
+@@ -25,7 +26,7 @@
+ py_modules=[],
+ packages=[package_name,
+ package_name + '.test'],
+- install_requires=['elementtree'],
++ #install_requires=['elementtree'],
+ classifiers = [
+ 'Development Status :: 4 - Beta',
+ 'Environment :: Console',