components/python/filechunkio/patches/01-python3.patch
changeset 6410 3ae42b2b5dad
parent 6409 a57c61602ca6
child 6411 76a1152cb6f7
equal deleted inserted replaced
6409:a57c61602ca6 6410:3ae42b2b5dad
     1 This patch is for Python 3 compatibility.  It has not been submitted upstream,
       
     2 as the community appears to have gone dormant.
       
     3 
       
     4 --- filechunkio-1.5/setup.py~	2011-04-27 06:12:34.000000000 -0700
       
     5 +++ filechunkio-1.5/setup.py	2014-04-16 11:32:41.158068141 -0700
       
     6 @@ -1,12 +1,11 @@
       
     7  #!/usr/bin/env python
       
     8  from distutils.core import setup
       
     9  
       
    10 -from filechunkio import __version__
       
    11  
       
    12  
       
    13  setup(
       
    14      name="filechunkio",
       
    15 -    version=unicode(__version__),
       
    16 +    version="1.5",
       
    17      description="FileChunkIO represents a chunk of an OS-level file "\
       
    18          "containing bytes data",
       
    19      long_description=open("README", 'r').read(),