Changeset 52742
- Timestamp:
- 04/16/08 16:31:30 (6 months ago)
- Files:
-
- tools/bundleman/trunk/CHANGES.txt (modified) (1 diff)
- tools/bundleman/trunk/bundleman/bundleman.py (modified) (1 diff)
- tools/bundleman/trunk/bundleman/utils.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/bundleman/trunk/CHANGES.txt
r51584 r52742 27 27 28 28 * bm-bundle new ``--archive-name`` option to set the archive name. 29 30 * bm-bundle packages and tags the contents that are not externals. 29 31 30 32 tools/bundleman/trunk/bundleman/bundleman.py
r51575 r52742 263 263 # create bundle 264 264 logger.info('Creating bundle %s' % tag_url) 265 createBundle(tag_url, products, release_tag )265 createBundle(tag_url, products, release_tag, bundle_url) 266 266 return 0 267 267 tools/bundleman/trunk/bundleman/utils.py
r49721 r52742 284 284 285 285 286 def createBundle(url, products, tag ):286 def createBundle(url, products, tag, from_bundle=None): 287 287 """Create a bundle at url with products. 288 288 … … 290 290 """ 291 291 # create bundle 292 command('svn -m"bundleman create bundle %s" mkdir %s' % 293 (tag, url)) 292 if from_bundle is not None: 293 command('svn -m"bundleman create bundle %s from %s" cp %s %s' % 294 (tag, from_bundle, from_bundle, url)) 295 else: 296 command('svn -m"bundleman create bundle %s" mkdir %s' % 297 (tag, url)) 294 298 lines = [] 295 299 for product in products:
