summaryrefslogtreecommitdiff
path: root/devel/py-rbtree/files/patch-setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-rbtree/files/patch-setup.py')
-rw-r--r--devel/py-rbtree/files/patch-setup.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/devel/py-rbtree/files/patch-setup.py b/devel/py-rbtree/files/patch-setup.py
deleted file mode 100644
index 995857d3205a..000000000000
--- a/devel/py-rbtree/files/patch-setup.py
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# Do not use py-setuptools
-#
---- setup.py.orig Thu Jun 15 02:43:12 2006
-+++ setup.py Mon Jul 10 12:12:43 2006
-@@ -1,8 +1,6 @@
--import ez_setup
--ez_setup.use_setuptools()
--
--from setuptools import setup, find_packages
--from setuptools.extension import Extension
-+from distutils.core import setup
-+from distutils.extension import Extension
-+from Pyrex.Distutils import build_ext
-
- classifiers = [
- "Development Status :: 4 - Beta",
-@@ -31,4 +29,5 @@
- include_dirs=['src',],
- ),
- ],
-+ cmdclass = {'build_ext': build_ext}
- )