diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-10-22 23:10:52 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-10-22 23:10:52 +0000 |
commit | 8aba416409582b313262940754f61d02cb1800ff (patch) | |
tree | f909767fb18058265f12129e0912cc095b75f809 /databases/py-sqlobject/files | |
parent | - Fix fetching (diff) |
- Update to 0.7.0
- Update MASTER_SITES
PR: ports/87774
Submitted by: Dryice Liu <dryice@hotpop.com>
Approved by: Choe, Cheng-Dae <whitekid@gmail.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=146145
Diffstat (limited to 'databases/py-sqlobject/files')
-rw-r--r-- | databases/py-sqlobject/files/patch-setup.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/databases/py-sqlobject/files/patch-setup.py b/databases/py-sqlobject/files/patch-setup.py new file mode 100644 index 000000000000..e1f6071df13b --- /dev/null +++ b/databases/py-sqlobject/files/patch-setup.py @@ -0,0 +1,20 @@ +--- setup.py.orig Fri Oct 21 15:43:47 2005 ++++ setup.py Fri Oct 21 15:44:13 2005 +@@ -1,11 +1,11 @@ + # ez_setup doesn't work with Python 2.2, so we use distutils + # in that case: +-try: +- from ez_setup import use_setuptools +- use_setuptools() +- from setuptools import setup +-except ImportError: +- from distutils.core import setup ++# try: ++# from ez_setup import use_setuptools ++# use_setuptools() ++# from setuptools import setup ++# except ImportError: ++from distutils.core import setup + + subpackages = ['firebird', 'inheritance', 'mysql', 'postgres', + 'sqlite', 'sybase', 'maxdb', 'util', 'manager'] |