diff options
author | gahr <gahr@FreeBSD.org> | 2010-02-25 04:35:13 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2010-02-25 04:35:13 +0800 |
commit | fb38cd298a3170361e70109df735bbde21f04abc (patch) | |
tree | 2557bef05df23d9e6e5fd519d894c4d9212a6b12 /security/py-paramiko | |
parent | 9d4e47279bf5dea8e9cc77d57996862cad7495be (diff) | |
download | freebsd-ports-gnome-fb38cd298a3170361e70109df735bbde21f04abc.tar.gz freebsd-ports-gnome-fb38cd298a3170361e70109df735bbde21f04abc.tar.zst freebsd-ports-gnome-fb38cd298a3170361e70109df735bbde21f04abc.zip |
- Fix build
PR: 144236
Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru>
Fixed bx: Sofian Brabez <sbrabez@gmail.com> (committer)
Feature safe: yes
Diffstat (limited to 'security/py-paramiko')
-rw-r--r-- | security/py-paramiko/files/patch-setup.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/security/py-paramiko/files/patch-setup.py b/security/py-paramiko/files/patch-setup.py new file mode 100644 index 000000000000..c01a8db3cafb --- /dev/null +++ b/security/py-paramiko/files/patch-setup.py @@ -0,0 +1,20 @@ +--- ./setup.py.orig 2010-02-24 21:06:37.000000000 +0100 ++++ ./setup.py 2010-02-24 21:09:55.000000000 +0100 +@@ -33,14 +33,9 @@ + #ez_setup.use_setuptools() + + import sys +-try: +- from setuptools import setup +- kw = { +- 'install_requires': 'pycrypto >= 1.9', +- } +-except ImportError: +- from distutils.core import setup +- kw = {} ++ ++from distutils.core import setup ++kw = {} + + if sys.platform == 'darwin': + import setup_helper |