diff options
Diffstat (limited to 'dev-python/lxml/files')
-rw-r--r-- | dev-python/lxml/files/digest-lxml-1.1.2 | 3 | ||||
-rw-r--r-- | dev-python/lxml/files/lxml-1.1.2-distutils.patch | 19 |
2 files changed, 22 insertions, 0 deletions
diff --git a/dev-python/lxml/files/digest-lxml-1.1.2 b/dev-python/lxml/files/digest-lxml-1.1.2 new file mode 100644 index 000000000000..89adc1dadfd3 --- /dev/null +++ b/dev-python/lxml/files/digest-lxml-1.1.2 @@ -0,0 +1,3 @@ +MD5 d18ecaacdecf7c9f02a6e9aecb16c720 lxml-1.1.2.tgz 640469 +RMD160 3864b7fe781bedbdc7334e6ebac9dcd4e38d1880 lxml-1.1.2.tgz 640469 +SHA256 b0139b3e1443ab5ce7dd2b63e67ac987f1e4caddf5f9bc72c90c63199265c278 lxml-1.1.2.tgz 640469 diff --git a/dev-python/lxml/files/lxml-1.1.2-distutils.patch b/dev-python/lxml/files/lxml-1.1.2-distutils.patch new file mode 100644 index 000000000000..9fc6a3382694 --- /dev/null +++ b/dev-python/lxml/files/lxml-1.1.2-distutils.patch @@ -0,0 +1,19 @@ +--- setup.py.orig 2007-01-09 23:10:58.000000000 +0100 ++++ setup.py 2007-01-09 23:11:36.000000000 +0100 +@@ -9,14 +9,8 @@ + ext_args = {} + DEFINES = [] + +-try: +- from setuptools import setup +- from setuptools.extension import Extension +- # prevent setuptools from making local etree.so copies: +- setup_args['zip_safe'] = False +-except ImportError: +- from distutils.core import setup +- from distutils.extension import Extension ++from distutils.core import setup ++from distutils.extension import Extension + + # This is called if the '--static' option is passed + def setupStaticBuild(): |