diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2012-06-02 00:48:54 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2012-06-02 00:48:54 +0000 |
commit | 393ba0eaa0a25d3e7c807aacc59ebaed12305c87 (patch) | |
tree | c415ffd3dcab0283b6e224e0797e1129f35798d2 /databases/py-redis/files | |
parent | The KDE on FreeBSD team is happy to update Qt to its 4.8.2 release. (diff) |
- Update to 2.4.13
- Include patch to setup.py from PR: ports/158036
- Add LICENSE_FILE
- Update pkg-plist
PR: ports/168362
Submitted by: koobs <koobs dot freebsd_AT_gmail dot com>
Notes
Notes:
svn path=/head/; revision=297983
Diffstat (limited to 'databases/py-redis/files')
-rw-r--r-- | databases/py-redis/files/patch-setup.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/databases/py-redis/files/patch-setup.py b/databases/py-redis/files/patch-setup.py new file mode 100644 index 000000000000..c989030f3f4a --- /dev/null +++ b/databases/py-redis/files/patch-setup.py @@ -0,0 +1,14 @@ +--- ./setup.py.orig 2012-05-27 06:05:41.000000000 +1000 ++++ ./setup.py 2012-05-27 06:05:49.000000000 +1000 +@@ -30,10 +30,7 @@ + 'Programming Language :: Python'], + } + +-try: +- from setuptools import setup +-except ImportError: +- from distutils.core import setup ++from distutils.core import setup + + setup(**sdict) + |