diff options
author | Nicola Vitale <nivit@FreeBSD.org> | 2010-09-15 16:36:09 +0000 |
---|---|---|
committer | Nicola Vitale <nivit@FreeBSD.org> | 2010-09-15 16:36:09 +0000 |
commit | c8de2c098a2b753b9dc30ab55db9f2051de2b00f (patch) | |
tree | 97480aa6203e8f82eca0f510a5189fcfe3fcc929 /devel/py-distribute/files/patch-setuptools-command-easy_install.py | |
parent | Fix formatting while I'm here. (diff) |
Distribute is intended to replace Setuptools as the standard method
for working with Python module distributions.
The project has two goals:
- Providing a backward compatible version to replace Setuptools
and make all distributions that depend on Setuptools work as
before, but with less bugs and behavioral issues.
- Re-factoring the code, and releasing it in several distributions.
This work is being done in the 0.7.x series but not yet released.
Notes
Notes:
svn path=/head/; revision=261224
Diffstat (limited to 'devel/py-distribute/files/patch-setuptools-command-easy_install.py')
-rw-r--r-- | devel/py-distribute/files/patch-setuptools-command-easy_install.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/py-distribute/files/patch-setuptools-command-easy_install.py b/devel/py-distribute/files/patch-setuptools-command-easy_install.py new file mode 100644 index 000000000000..a16daa2e02b8 --- /dev/null +++ b/devel/py-distribute/files/patch-setuptools-command-easy_install.py @@ -0,0 +1,11 @@ +--- setuptools/command/easy_install.py 2010-07-15 01:59:21.000000000 +0200 ++++ setuptools/command/easy_install.py.port 2010-09-15 17:49:35.000000000 +0200 +@@ -688,7 +688,7 @@ + return True + if not dist.has_metadata('zip-safe'): + return True +- return True ++ return False + + def maybe_move(self, spec, dist_filename, setup_base): + dst = os.path.join(self.build_directory, spec.key) |