[Checkins] SVN: gocept.xmlrpcskin/trunk/bootstrap.py Use a bootstrap with distribute

Wolfgang Schnerring wosc at wosc.de
Tue Jul 26 05:19:42 EDT 2011


Log message for revision 122353:
  Use a bootstrap with distribute
  

Changed:
  U   gocept.xmlrpcskin/trunk/bootstrap.py

-=-
Modified: gocept.xmlrpcskin/trunk/bootstrap.py
===================================================================
--- gocept.xmlrpcskin/trunk/bootstrap.py	2011-07-26 09:19:27 UTC (rev 122352)
+++ gocept.xmlrpcskin/trunk/bootstrap.py	2011-07-26 09:19:42 UTC (rev 122353)
@@ -17,7 +17,7 @@
 The script accepts buildout command-line options, so you can
 use the -c option to specify an alternate configuration file.
 
-$Id$
+$Id: bootstrap.py 102545 2009-08-06 14:49:47Z chrisw $
 """
 
 import os, shutil, sys, tempfile, urllib2
@@ -32,19 +32,11 @@
 parser.add_option("-v", "--version", dest="version",
                           help="use a specific zc.buildout version")
 parser.add_option("-d", "--distribute",
-                   action="store_true", dest="distribute", default=False,
+                   action="store_true", dest="distribute", default=True,
                    help="Use Disribute rather than Setuptools.")
 
-parser.add_option("-c", None, action="store", dest="config_file",
-                   help=("Specify the path to the buildout configuration "
-                         "file to be used."))
-
 options, args = parser.parse_args()
 
-# if -c was provided, we push it back into args for buildout' main function
-if options.config_file is not None:
-    args += ['-c', options.config_file]
-
 if options.version is not None:
     VERSION = '==%s' % options.version
 else:



More information about the checkins mailing list