update efl stuff to git revision 38564
[openwrt/svn-archive/archive.git] / lang / python-etk / patches / 000-prevent-using-setuptools.patch
1 diff -ruN python-etk-r38564.orig/setup.py python-etk-r38564/setup.py
2 --- python-etk-r38564.orig/setup.py 2009-01-13 11:20:07.000000000 +0100
3 +++ python-etk-r38564/setup.py 2009-01-13 11:22:59.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.6c9')
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,