/dev-python/pycrypto/files/pycrypto-2.0.1-bindist.patch

https://github.com/tensor/portage · Patch · 45 lines · 41 code · 4 blank · 0 comment · 0 complexity · 1cef0f805deeb0a9632606f1f97cce29 MD5 · raw file

  1. --- pycrypto/setup.py
  2. +++ pycrypto/setup.py
  3. @@ -94,13 +94,6 @@
  4. Extension("Crypto.Cipher.DES3",
  5. include_dirs=['src/'],
  6. sources=["src/DES3.c"]),
  7. - Extension("Crypto.Cipher.IDEA",
  8. - include_dirs=['src/'],
  9. - sources=["src/IDEA.c"],
  10. - libraries=HTONS_LIBS),
  11. - Extension("Crypto.Cipher.RC5",
  12. - include_dirs=['src/'],
  13. - sources=["src/RC5.c"]),
  14. # Stream ciphers
  15. Extension("Crypto.Cipher.ARC4",
  16. @@ -111,6 +104,17 @@
  17. sources=["src/XOR.c"]),
  18. ]
  19. + if 0: #not os.environ.has_key("BINDIST") or os.environ["BINDIST"]!="1":
  20. + self.extensions += [
  21. + Extension("Crypto.Cipher.IDEA",
  22. + include_dirs=['src/'],
  23. + sources=["src/IDEA.c"],
  24. + libraries=HTONS_LIBS),
  25. + Extension("Crypto.Cipher.RC5",
  26. + include_dirs=['src/'],
  27. + sources=["src/RC5.c"]),
  28. + ]
  29. +
  30. # Detect which modules should be compiled
  31. self.detect_modules()
  32. build_ext.build_extensions(self)
  33. --- pycrypto/Cipher/__init__.py
  34. +++ pycrypto/Cipher/__init__.py
  35. @@ -24,7 +24,7 @@
  36. """
  37. __all__ = ['AES', 'ARC2', 'ARC4',
  38. - 'Blowfish', 'CAST', 'DES', 'DES3', 'IDEA', 'RC5',
  39. + 'Blowfish', 'CAST', 'DES', 'DES3',
  40. 'XOR'
  41. ]