Merge libbfd and binutils Makefile.
[packages.git] / lang / python-etk / patches / 000-prevent-using-setuptools.patch
1 diff -ruN python-etk-r37637.orig/setup.py python-etk-r37637/setup.py
2 --- python-etk-r37637.orig/setup.py     2009-01-04 12:54:25.000000000 +0100
3 +++ python-etk-r37637/setup.py  2009-01-04 12:57:48.000000000 +0100
4 @@ -1,10 +1,7 @@
5  import sys
6  import os
7  
8 -from ez_setup import use_setuptools
9 -use_setuptools('0.6c3')
10 -
11 -from setuptools import setup, find_packages, Extension
12 +from distutils.core import setup, Extension
13  from distutils.sysconfig import get_python_inc
14  from glob import glob
15  import commands
16 @@ -74,7 +71,7 @@
17        long_description = long_description,
18        keywords = 'wrapper binding ui etk graphics',
19        classifiers = trove_classifiers,
20 -      packages = find_packages(),
21 +      packages = ['etk'],
22        install_requires = ['python-evas>=0.2.1', 'python-ecore>=0.2.1'],
23        setup_requires = ['python-evas>=0.2.1', 'python-ecore>=0.2.1'],
24        headers = headers,