diff options
Diffstat (limited to 'dev-python/pyyaml/files/pyyaml-3.05-libyaml.diff')
-rw-r--r-- | dev-python/pyyaml/files/pyyaml-3.05-libyaml.diff | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-python/pyyaml/files/pyyaml-3.05-libyaml.diff b/dev-python/pyyaml/files/pyyaml-3.05-libyaml.diff deleted file mode 100644 index 1c1a3a690e12..000000000000 --- a/dev-python/pyyaml/files/pyyaml-3.05-libyaml.diff +++ /dev/null @@ -1,23 +0,0 @@ -diff -Naur PyYAML-3.05.orig/setup.py PyYAML-3.05/setup.py ---- PyYAML-3.05.orig/setup.py 2007-05-12 23:28:55.000000000 +0200 -+++ PyYAML-3.05/setup.py 2007-10-16 02:29:57.000000000 +0200 -@@ -31,6 +31,8 @@ - ] - - from distutils.core import setup -+from distutils.extension import Extension -+from Pyrex.Distutils import build_ext - - if __name__ == '__main__': - -@@ -49,5 +51,10 @@ - - package_dir={'': 'lib'}, - packages=['yaml'], -+ ext_modules=[ -+ Extension("_yaml", ["ext/_yaml.pyx"], libraries=['yaml']), -+ ], -+ -+ cmdclass = {'build_ext': build_ext} - ) - |