diff options
author | miwi <miwi@FreeBSD.org> | 2006-08-23 20:43:56 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2006-08-23 20:43:56 +0800 |
commit | 2b1ca2bc5118569e1e4b3563e1f176c0f7967775 (patch) | |
tree | bc97b26beb36f1a28875d6376c7c2da2a5507934 /security | |
parent | b409787d00869972b3335d1ffad9da753729440b (diff) | |
download | freebsd-ports-graphics-2b1ca2bc5118569e1e4b3563e1f176c0f7967775.tar.gz freebsd-ports-graphics-2b1ca2bc5118569e1e4b3563e1f176c0f7967775.tar.zst freebsd-ports-graphics-2b1ca2bc5118569e1e4b3563e1f176c0f7967775.zip |
- Fix to install along with setuptools
PR: ports/102368
Submitted by: Martin Jackson <mhjacks(at)swbell.net>
Approved by: krion (mentor), maintainer (via privat mail)
Diffstat (limited to 'security')
-rw-r--r-- | security/py-paramiko/files/patch-nosetuptools-setup.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/security/py-paramiko/files/patch-nosetuptools-setup.py b/security/py-paramiko/files/patch-nosetuptools-setup.py new file mode 100644 index 00000000000..383d729bf25 --- /dev/null +++ b/security/py-paramiko/files/patch-nosetuptools-setup.py @@ -0,0 +1,19 @@ +--- setup.py.orig Mon Aug 21 19:21:34 2006 ++++ setup.py Mon Aug 21 19:22:15 2006 +@@ -32,14 +32,8 @@ + #import ez_setup + #ez_setup.use_setuptools() + +-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 = {} + + setup(name = "paramiko", + version = "1.6.2", |