<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -20,7 +20,7 @@ Options
 -------
 
 urls
-    A space-separated list of packages that should be installed into
+    A list of packages (one per line) that should be installed into
     ``${buildout:parts-directory}/&lt;partname&gt;``.
 
 Additionally provided variables</diff>
      <filename>README.rst</filename>
    </modified>
    <modified>
      <diff>@@ -1,10 +1,10 @@
-import os, sys, site, subprocess, shutil, tempfile, urllib2, logging
+import os, sys, site, subprocess, shutil, tempfile, urllib2, logging, string
 import os.path
 import zc.buildout
 import setuptools.archive_util
 import distutils.core
 
-VERSION = (0, 1, 0, 'final', 0)
+VERSION = (0, 1, 1, 'final', 0)
 
 def get_version():
     v = '%d.%d' % VERSION[:2]
@@ -35,8 +35,9 @@ class Recipe(object):
         self.offline = buildout['buildout']['offline'].lower() == 'true'
         if not os.path.exists(self.downloads):
             os.mkdir(self.downloads)
-        self.urls = map(lambda x : x.rstrip().lstrip(), 
-                options['urls'].split(&quot; &quot;))
+        self.urls = options['urls'].splitlines()
+        self.urls = map(string.strip, self.urls)
+        self.urls = filter(len, self.urls)
 
     def install(self):
         if not os.path.exists(self.options['extra-path']):</diff>
      <filename>zerokspot/recipe/distutils/__init__.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>1fa838addd4bcf1c30fee1d6967ce194859f1b94</id>
    </parent>
  </parents>
  <author>
    <name>Horst Gutmann</name>
    <email>zerok@zerokspot.com</email>
  </author>
  <url>http://github.com/zerok/zerokspot.recipe.distutils/commit/1d8d7d6c783daddbbef4ae88bb1eb31bc92154c6</url>
  <id>1d8d7d6c783daddbbef4ae88bb1eb31bc92154c6</id>
  <committed-date>2008-10-21T12:05:07-07:00</committed-date>
  <authored-date>2008-10-21T12:05:07-07:00</authored-date>
  <message>Fixed the url-splitter to finally really offer multi-package-support. Marks 0.1.1</message>
  <tree>f945a3d848ea255d087fe6d8fa5495aa6391da8b</tree>
  <committer>
    <name>Horst Gutmann</name>
    <email>zerok@zerokspot.com</email>
  </committer>
</commit>
