[Checkins] SVN: zc.recipe.cmmi/trunk/ [1] Added to the README.txt file a link to the SVN repository, so that

Jeff Rush jrush at taupro.com
Thu Oct 30 07:53:39 EDT 2008


Log message for revision 92694:
  [1] Added to the README.txt file a link to the SVN repository, so that
  Setuptools can automatically find the development version when asked to
  install the "-dev" version of zc.recipe.cmmi.
  
  [2] Applied fix for bug #261367 i.e. changed open() of file being downloaded
  to binary, so that errors like the following no longer occur under MS Windows.
  
    uncompress = self.decompress.decompress(buf)
    error: Error -3 while decompressing: invalid distance too far back
  
  

Changed:
  U   zc.recipe.cmmi/trunk/CHANGES.txt
  U   zc.recipe.cmmi/trunk/README.txt
  U   zc.recipe.cmmi/trunk/zc/recipe/cmmi/__init__.py

-=-
Modified: zc.recipe.cmmi/trunk/CHANGES.txt
===================================================================
--- zc.recipe.cmmi/trunk/CHANGES.txt	2008-10-30 11:44:32 UTC (rev 92693)
+++ zc.recipe.cmmi/trunk/CHANGES.txt	2008-10-30 11:53:39 UTC (rev 92694)
@@ -1,7 +1,22 @@
 Release History
 ***************
 
+Yet-to-Release (2008-??-??)
+===========================
 
+Added to the README.txt file a link to the SVN repository, so that Setuptools
+can automatically find the development version when asked to install the
+"-dev" version of zc.recipe.cmmi.
+
+Bugs Fixed
+----------
+
+Applied fix for bug #261367 i.e. changed open() of file being downloaded to
+binary, so that errors like the following no longer occur under Windows.
+
+  uncompress = self.decompress.decompress(buf)
+  error: Error -3 while decompressing: invalid distance too far back
+
 1.1.4 (2008-06-25)
 ==================
 

Modified: zc.recipe.cmmi/trunk/README.txt
===================================================================
--- zc.recipe.cmmi/trunk/README.txt	2008-10-30 11:44:32 UTC (rev 92693)
+++ zc.recipe.cmmi/trunk/README.txt	2008-10-30 11:53:39 UTC (rev 92694)
@@ -6,3 +6,8 @@
 configure-based source distribution into buildouts.
 
 .. contents::
+
+
+SVN version:
+
+  <http://svn.zope.org/repos/main/zc.recipe.cmmi/trunk#egg=zc.recipe.cmmi-dev>

Modified: zc.recipe.cmmi/trunk/zc/recipe/cmmi/__init__.py
===================================================================
--- zc.recipe.cmmi/trunk/zc/recipe/cmmi/__init__.py	2008-10-30 11:44:32 UTC (rev 92693)
+++ zc.recipe.cmmi/trunk/zc/recipe/cmmi/__init__.py	2008-10-30 11:53:39 UTC (rev 92694)
@@ -178,7 +178,7 @@
                 tmp2 = tempfile.mkdtemp('buildout-' + name)
                 fname = os.path.join(tmp2, filename)
                 logging.getLogger(name).info('Downloading %s' % url)
-            open(fname, 'w').write(urllib2.urlopen(url).read())
+            open(fname, 'wb').write(urllib2.urlopen(url).read())
         except:
             if tmp2 is not None:
                shutil.rmtree(tmp2)



More information about the Checkins mailing list