move <packages/phone> into own feed <feeds/phone> and add entry to <feeds.conf.default>
[openwrt/svn-archive/archive.git] / lang / python-ecore / patches / 000-prevent-using-setuptools.patch
1 diff -ruN python-ecore-r38564.orig/setup.py python-ecore-r38564/setup.py
2 --- python-ecore-r38564.orig/setup.py 2009-01-13 10:27:34.000000000 +0100
3 +++ python-ecore-r38564/setup.py 2009-01-13 11:08:26.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 import subprocess
14 import shlex
15
16 @@ -143,7 +140,7 @@
17 long_description=long_description,
18 keywords='wrapper binding enlightenment abstraction event ecore',
19 classifiers=trove_classifiers,
20 - packages=find_packages(),
21 + packages=['ecore', 'ecore.x', 'ecore.evas', 'ecore.imf'],
22 install_requires=['python-evas>=0.3.1'],
23 setup_requires=['python-evas>=0.3.1'],
24 ext_modules=[ecoremodule, ecoreevasmodule, ecorexmodule,