Commit 4e54d02d authored by voblia's avatar voblia

Expand shell patterns when processing the list of paths in `develop`, e.g:

  [buildout]
  develop = ./local-checkouts/*



git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@92841 62d5b8a3-27da-0310-9561-8e5933582275
parent 03d5ced3
...@@ -7,6 +7,11 @@ Change History ...@@ -7,6 +7,11 @@ Change History
1.1.2 (Unreleased) 1.1.2 (Unreleased)
================== ==================
- Expand shell patterns when processing the list of paths in `develop`, e.g::
[buildout]
develop = ./local-checkouts/*
- Conditionally import and use hashlib.md5 when it's available instead - Conditionally import and use hashlib.md5 when it's available instead
of md5 module, which is deprecated in Python 2.6. of md5 module, which is deprecated in Python 2.6.
......
...@@ -28,6 +28,7 @@ import tempfile ...@@ -28,6 +28,7 @@ import tempfile
import urllib2 import urllib2
import ConfigParser import ConfigParser
import UserDict import UserDict
import glob
import pkg_resources import pkg_resources
import zc.buildout import zc.buildout
...@@ -561,9 +562,13 @@ class Buildout(UserDict.DictMixin): ...@@ -561,9 +562,13 @@ class Buildout(UserDict.DictMixin):
try: try:
for setup in develop.split(): for setup in develop.split():
setup = self._buildout_path(setup) setup = self._buildout_path(setup)
self._logger.info("Develop: %r", setup) files = glob.glob(setup)
__doing__ = 'Processing develop directory %r.', setup if not files:
zc.buildout.easy_install.develop(setup, dest) self._logger.warn("Couldn't develop %r (not found)", setup)
for setup in files:
self._logger.info("Develop: %r", setup)
__doing__ = 'Processing develop directory %r.', setup
zc.buildout.easy_install.develop(setup, dest)
except: except:
# if we had an error, we need to roll back changes, by # if we had an error, we need to roll back changes, by
# removing any files we created. # removing any files we created.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment