components/python/filechunkio/patches/01-python3.patch
author John Beck <John.Beck@Oracle.COM>
Fri, 06 Feb 2015 16:51:20 -0800
branchs11-update
changeset 3778 35735ffdda43
permissions -rw-r--r--
PSARC 2014/151 Python 3.4 15819724 SUNBT7202228 python 3.4 18756157 upgrade setuptools to 0.9.6

This patch is for Python 3 compatibility.  It has not been submitted upstream,
as the community appears to have gone dormant.

--- filechunkio-1.5/setup.py~	2011-04-27 06:12:34.000000000 -0700
+++ filechunkio-1.5/setup.py	2014-04-16 11:32:41.158068141 -0700
@@ -1,12 +1,11 @@
 #!/usr/bin/env python
 from distutils.core import setup
 
-from filechunkio import __version__
 
 
 setup(
     name="filechunkio",
-    version=unicode(__version__),
+    version="1.5",
     description="FileChunkIO represents a chunk of an OS-level file "\
         "containing bytes data",
     long_description=open("README", 'r').read(),