Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 1 | """distutils.dist |
| 2 | |
| 3 | Provides the Distribution class, which represents the module distribution |
Greg Ward | 8ff5a3f | 2000-06-02 00:44:53 +0000 | [diff] [blame] | 4 | being built/installed/distributed. |
| 5 | """ |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 6 | |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 7 | __revision__ = "$Id$" |
| 8 | |
Neal Norwitz | 9d72bb4 | 2007-04-17 08:48:32 +0000 | [diff] [blame] | 9 | import sys, os, re |
Andrew M. Kuchling | ff4ad9a | 2002-10-31 13:22:41 +0000 | [diff] [blame] | 10 | |
| 11 | try: |
| 12 | import warnings |
Andrew M. Kuchling | ccf4e42 | 2002-10-31 13:39:33 +0000 | [diff] [blame] | 13 | except ImportError: |
Andrew M. Kuchling | ff4ad9a | 2002-10-31 13:22:41 +0000 | [diff] [blame] | 14 | warnings = None |
| 15 | |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 16 | from distutils.errors import * |
Greg Ward | 2f2b6c6 | 2000-09-25 01:58:07 +0000 | [diff] [blame] | 17 | from distutils.fancy_getopt import FancyGetopt, translate_longopt |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 18 | from distutils.util import check_environ, strtobool, rfc822_escape |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 19 | from distutils import log |
Jeremy Hylton | fcd7353 | 2002-09-11 16:31:53 +0000 | [diff] [blame] | 20 | from distutils.debug import DEBUG |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 21 | |
| 22 | # Regex to define acceptable Distutils command names. This is not *quite* |
| 23 | # the same as a Python NAME -- I don't allow leading underscores. The fact |
| 24 | # that they're very similar is no coincidence; the default naming scheme is |
| 25 | # to look for a Python module named after the command. |
| 26 | command_re = re.compile (r'^[a-zA-Z]([a-zA-Z0-9_]*)$') |
| 27 | |
| 28 | |
| 29 | class Distribution: |
Greg Ward | 8ff5a3f | 2000-06-02 00:44:53 +0000 | [diff] [blame] | 30 | """The core of the Distutils. Most of the work hiding behind 'setup' |
| 31 | is really done within a Distribution instance, which farms the work out |
| 32 | to the Distutils commands specified on the command line. |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 33 | |
Greg Ward | 8ff5a3f | 2000-06-02 00:44:53 +0000 | [diff] [blame] | 34 | Setup scripts will almost never instantiate Distribution directly, |
| 35 | unless the 'setup()' function is totally inadequate to their needs. |
| 36 | However, it is conceivable that a setup script might wish to subclass |
| 37 | Distribution for some specialized purpose, and then pass the subclass |
| 38 | to 'setup()' as the 'distclass' keyword argument. If so, it is |
| 39 | necessary to respect the expectations that 'setup' has of Distribution. |
| 40 | See the code for 'setup()', in core.py, for details. |
| 41 | """ |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 42 | |
| 43 | |
| 44 | # 'global_options' describes the command-line options that may be |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 45 | # supplied to the setup script prior to any actual commands. |
| 46 | # Eg. "./setup.py -n" or "./setup.py --quiet" both take advantage of |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 47 | # these global options. This list should be kept to a bare minimum, |
| 48 | # since every global option is also valid as a command option -- and we |
| 49 | # don't want to pollute the commands with too many options that they |
| 50 | # have minimal control over. |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 51 | # The fourth entry for verbose means that it can be repeated. |
| 52 | global_options = [('verbose', 'v', "run verbosely (default)", 1), |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 53 | ('quiet', 'q', "run quietly (turns verbosity off)"), |
| 54 | ('dry-run', 'n', "don't actually do anything"), |
| 55 | ('help', 'h', "show detailed help message"), |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 56 | ] |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 57 | |
Martin v. Löwis | 8ed338a | 2005-03-03 08:12:27 +0000 | [diff] [blame] | 58 | # 'common_usage' is a short (2-3 line) string describing the common |
| 59 | # usage of the setup script. |
| 60 | common_usage = """\ |
| 61 | Common commands: (see '--help-commands' for more) |
| 62 | |
| 63 | setup.py build will build the package underneath 'build/' |
| 64 | setup.py install will install the package |
| 65 | """ |
| 66 | |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 67 | # options that are not propagated to the commands |
| 68 | display_options = [ |
| 69 | ('help-commands', None, |
| 70 | "list all available commands"), |
| 71 | ('name', None, |
| 72 | "print package name"), |
| 73 | ('version', 'V', |
| 74 | "print package version"), |
| 75 | ('fullname', None, |
| 76 | "print <package name>-<version>"), |
| 77 | ('author', None, |
| 78 | "print the author's name"), |
| 79 | ('author-email', None, |
| 80 | "print the author's email address"), |
| 81 | ('maintainer', None, |
| 82 | "print the maintainer's name"), |
| 83 | ('maintainer-email', None, |
| 84 | "print the maintainer's email address"), |
| 85 | ('contact', None, |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 86 | "print the maintainer's name if known, else the author's"), |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 87 | ('contact-email', None, |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 88 | "print the maintainer's email address if known, else the author's"), |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 89 | ('url', None, |
| 90 | "print the URL for this package"), |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 91 | ('license', None, |
Andrew M. Kuchling | fa7dc57 | 2001-08-10 18:49:23 +0000 | [diff] [blame] | 92 | "print the license of the package"), |
| 93 | ('licence', None, |
| 94 | "alias for --license"), |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 95 | ('description', None, |
| 96 | "print the package description"), |
Greg Ward | e5a584e | 2000-04-26 02:26:55 +0000 | [diff] [blame] | 97 | ('long-description', None, |
| 98 | "print the long package description"), |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 99 | ('platforms', None, |
| 100 | "print the list of platforms"), |
Andrew M. Kuchling | 282e2c3 | 2003-01-03 15:24:36 +0000 | [diff] [blame] | 101 | ('classifiers', None, |
| 102 | "print the list of classifiers"), |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 103 | ('keywords', None, |
| 104 | "print the list of keywords"), |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 105 | ('provides', None, |
| 106 | "print the list of packages/modules provided"), |
| 107 | ('requires', None, |
| 108 | "print the list of packages/modules required"), |
| 109 | ('obsoletes', None, |
| 110 | "print the list of packages/modules made obsolete") |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 111 | ] |
Guido van Rossum | c1f779c | 2007-07-03 08:25:58 +0000 | [diff] [blame] | 112 | display_option_names = [translate_longopt(x[0]) for x in display_options] |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 113 | |
| 114 | # negative options are options that exclude other options |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 115 | negative_opt = {'quiet': 'verbose'} |
| 116 | |
| 117 | |
| 118 | # -- Creation/initialization methods ------------------------------- |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 119 | |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 120 | def __init__ (self, attrs=None): |
| 121 | """Construct a new Distribution instance: initialize all the |
Greg Ward | 8ff5a3f | 2000-06-02 00:44:53 +0000 | [diff] [blame] | 122 | attributes of a Distribution, and then use 'attrs' (a dictionary |
| 123 | mapping attribute names to values) to assign some of those |
| 124 | attributes their "real" values. (Any attributes not mentioned in |
| 125 | 'attrs' will be assigned to some null value: 0, None, an empty list |
| 126 | or dictionary, etc.) Most importantly, initialize the |
| 127 | 'command_obj' attribute to the empty dictionary; this will be |
| 128 | filled in with real command objects by 'parse_command_line()'. |
| 129 | """ |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 130 | |
| 131 | # Default values for our command-line options |
| 132 | self.verbose = 1 |
| 133 | self.dry_run = 0 |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 134 | self.help = 0 |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 135 | for attr in self.display_option_names: |
| 136 | setattr(self, attr, 0) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 137 | |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 138 | # Store the distribution meta-data (name, version, author, and so |
| 139 | # forth) in a separate object -- we're getting to have enough |
| 140 | # information here (and enough command-line options) that it's |
| 141 | # worth it. Also delegate 'get_XXX()' methods to the 'metadata' |
| 142 | # object in a sneaky and underhanded (but efficient!) way. |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 143 | self.metadata = DistributionMetadata() |
Neil Schemenauer | a8aefe5 | 2001-09-03 15:47:21 +0000 | [diff] [blame] | 144 | for basename in self.metadata._METHOD_BASENAMES: |
Greg Ward | 4982f98 | 2000-04-22 02:52:44 +0000 | [diff] [blame] | 145 | method_name = "get_" + basename |
| 146 | setattr(self, method_name, getattr(self.metadata, method_name)) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 147 | |
| 148 | # 'cmdclass' maps command names to class objects, so we |
| 149 | # can 1) quickly figure out which class to instantiate when |
| 150 | # we need to create a new command object, and 2) have a way |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 151 | # for the setup script to override command classes |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 152 | self.cmdclass = {} |
| 153 | |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 154 | # 'command_packages' is a list of packages in which commands |
| 155 | # are searched for. The factory for command 'foo' is expected |
| 156 | # to be named 'foo' in the module 'foo' in one of the packages |
| 157 | # named here. This list is searched from the left; an error |
| 158 | # is raised if no named package provides the command being |
| 159 | # searched for. (Always access using get_command_packages().) |
| 160 | self.command_packages = None |
| 161 | |
Greg Ward | 9821bf4 | 2000-08-29 01:15:18 +0000 | [diff] [blame] | 162 | # 'script_name' and 'script_args' are usually set to sys.argv[0] |
| 163 | # and sys.argv[1:], but they can be overridden when the caller is |
| 164 | # not necessarily a setup script run from the command-line. |
| 165 | self.script_name = None |
| 166 | self.script_args = None |
| 167 | |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 168 | # 'command_options' is where we store command options between |
| 169 | # parsing them (from config files, the command-line, etc.) and when |
| 170 | # they are actually needed -- ie. when the command in question is |
| 171 | # instantiated. It is a dictionary of dictionaries of 2-tuples: |
| 172 | # command_options = { command_name : { option : (source, value) } } |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 173 | self.command_options = {} |
| 174 | |
Martin v. Löwis | 98da562 | 2005-03-23 18:54:36 +0000 | [diff] [blame] | 175 | # 'dist_files' is the list of (command, pyversion, file) that |
| 176 | # have been created by any dist commands run so far. This is |
| 177 | # filled regardless of whether the run is dry or not. pyversion |
| 178 | # gives sysconfig.get_python_version() if the dist file is |
| 179 | # specific to a Python version, 'any' if it is good for all |
| 180 | # Python versions on the target platform, and '' for a source |
| 181 | # file. pyversion should not be used to specify minimum or |
| 182 | # maximum required Python versions; use the metainfo for that |
| 183 | # instead. |
Martin v. Löwis | 55f1bb8 | 2005-03-21 20:56:35 +0000 | [diff] [blame] | 184 | self.dist_files = [] |
| 185 | |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 186 | # These options are really the business of various commands, rather |
| 187 | # than of the Distribution itself. We provide aliases for them in |
| 188 | # Distribution as a convenience to the developer. |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 189 | self.packages = None |
Fred Drake | 0eb32a6 | 2004-06-11 21:50:33 +0000 | [diff] [blame] | 190 | self.package_data = {} |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 191 | self.package_dir = None |
| 192 | self.py_modules = None |
| 193 | self.libraries = None |
Greg Ward | 51def7d | 2000-05-27 01:36:14 +0000 | [diff] [blame] | 194 | self.headers = None |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 195 | self.ext_modules = None |
| 196 | self.ext_package = None |
| 197 | self.include_dirs = None |
| 198 | self.extra_path = None |
Gregory P. Smith | b2e3bb3 | 2000-05-12 00:52:23 +0000 | [diff] [blame] | 199 | self.scripts = None |
Gregory P. Smith | 6a901dd | 2000-05-13 03:09:50 +0000 | [diff] [blame] | 200 | self.data_files = None |
Tarek Ziadé | 13f7c3b | 2009-01-09 00:15:45 +0000 | [diff] [blame] | 201 | self.password = '' |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 202 | |
| 203 | # And now initialize bookkeeping stuff that can't be supplied by |
| 204 | # the caller at all. 'command_obj' maps command names to |
| 205 | # Command instances -- that's how we enforce that every command |
| 206 | # class is a singleton. |
| 207 | self.command_obj = {} |
| 208 | |
| 209 | # 'have_run' maps command names to boolean values; it keeps track |
| 210 | # of whether we have actually run a particular command, to make it |
| 211 | # cheap to "run" a command whenever we think we might need to -- if |
| 212 | # it's already been done, no need for expensive filesystem |
| 213 | # operations, we just check the 'have_run' dictionary and carry on. |
| 214 | # It's only safe to query 'have_run' for a command class that has |
| 215 | # been instantiated -- a false value will be inserted when the |
| 216 | # command object is created, and replaced with a true value when |
Greg Ward | 612eb9f | 2000-07-27 02:13:20 +0000 | [diff] [blame] | 217 | # the command is successfully run. Thus it's probably best to use |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 218 | # '.get()' rather than a straight lookup. |
| 219 | self.have_run = {} |
| 220 | |
| 221 | # Now we'll use the attrs dictionary (ultimately, keyword args from |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 222 | # the setup script) to possibly override any or all of these |
| 223 | # distribution options. |
| 224 | |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 225 | if attrs: |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 226 | # Pull out the set of command options and work on them |
| 227 | # specifically. Note that this order guarantees that aliased |
| 228 | # command options will override any supplied redundantly |
| 229 | # through the general options dictionary. |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 230 | options = attrs.get('options') |
Tarek Ziadé | 4450dcf | 2008-12-29 22:38:38 +0000 | [diff] [blame] | 231 | if options is not None: |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 232 | del attrs['options'] |
| 233 | for (command, cmd_options) in options.items(): |
Greg Ward | 0e48cfd | 2000-05-26 01:00:15 +0000 | [diff] [blame] | 234 | opt_dict = self.get_option_dict(command) |
| 235 | for (opt, val) in cmd_options.items(): |
| 236 | opt_dict[opt] = ("setup script", val) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 237 | |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 238 | if 'licence' in attrs: |
Andrew M. Kuchling | a52b852 | 2003-03-03 20:07:27 +0000 | [diff] [blame] | 239 | attrs['license'] = attrs['licence'] |
| 240 | del attrs['licence'] |
| 241 | msg = "'licence' distribution option is deprecated; use 'license'" |
| 242 | if warnings is not None: |
| 243 | warnings.warn(msg) |
| 244 | else: |
| 245 | sys.stderr.write(msg + "\n") |
| 246 | |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 247 | # Now work on the rest of the attributes. Any attribute that's |
| 248 | # not already defined is invalid! |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 249 | for (key, val) in attrs.items(): |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 250 | if hasattr(self.metadata, "set_" + key): |
| 251 | getattr(self.metadata, "set_" + key)(val) |
| 252 | elif hasattr(self.metadata, key): |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 253 | setattr(self.metadata, key, val) |
| 254 | elif hasattr(self, key): |
| 255 | setattr(self, key, val) |
Anthony Baxter | 73cc847 | 2004-10-13 13:22:34 +0000 | [diff] [blame] | 256 | else: |
Andrew M. Kuchling | ff4ad9a | 2002-10-31 13:22:41 +0000 | [diff] [blame] | 257 | msg = "Unknown distribution option: %s" % repr(key) |
| 258 | if warnings is not None: |
| 259 | warnings.warn(msg) |
| 260 | else: |
| 261 | sys.stderr.write(msg + "\n") |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 262 | |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 263 | self.finalize_options() |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 264 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 265 | def get_option_dict(self, command): |
Greg Ward | 0e48cfd | 2000-05-26 01:00:15 +0000 | [diff] [blame] | 266 | """Get the option dictionary for a given command. If that |
| 267 | command's option dictionary hasn't been created yet, then create it |
| 268 | and return the new dictionary; otherwise, return the existing |
| 269 | option dictionary. |
| 270 | """ |
Greg Ward | 0e48cfd | 2000-05-26 01:00:15 +0000 | [diff] [blame] | 271 | dict = self.command_options.get(command) |
| 272 | if dict is None: |
| 273 | dict = self.command_options[command] = {} |
| 274 | return dict |
| 275 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 276 | def dump_option_dicts(self, header=None, commands=None, indent=""): |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 277 | from pprint import pformat |
| 278 | |
| 279 | if commands is None: # dump all command option dicts |
Guido van Rossum | d4ee167 | 2007-10-15 01:27:53 +0000 | [diff] [blame] | 280 | commands = sorted(self.command_options.keys()) |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 281 | |
| 282 | if header is not None: |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 283 | self.announce(indent + header) |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 284 | indent = indent + " " |
| 285 | |
| 286 | if not commands: |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 287 | self.announce(indent + "no commands known yet") |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 288 | return |
| 289 | |
| 290 | for cmd_name in commands: |
| 291 | opt_dict = self.command_options.get(cmd_name) |
| 292 | if opt_dict is None: |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 293 | self.announce(indent + |
| 294 | "no option dict for '%s' command" % cmd_name) |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 295 | else: |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 296 | self.announce(indent + |
| 297 | "option dict for '%s' command:" % cmd_name) |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 298 | out = pformat(opt_dict) |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 299 | for line in out.split('\n'): |
| 300 | self.announce(indent + " " + line) |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 301 | |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 302 | # -- Config file finding/parsing methods --------------------------- |
| 303 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 304 | def find_config_files(self): |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 305 | """Find as many configuration files as should be processed for this |
| 306 | platform, and return a list of filenames in the order in which they |
| 307 | should be parsed. The filenames returned are guaranteed to exist |
| 308 | (modulo nasty race conditions). |
| 309 | |
Andrew M. Kuchling | d303b61 | 2001-12-06 16:32:05 +0000 | [diff] [blame] | 310 | There are three possible config files: distutils.cfg in the |
| 311 | Distutils installation directory (ie. where the top-level |
| 312 | Distutils __inst__.py file lives), a file in the user's home |
| 313 | directory named .pydistutils.cfg on Unix and pydistutils.cfg |
| 314 | on Windows/Mac, and setup.cfg in the current directory. |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 315 | """ |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 316 | files = [] |
Greg Ward | acf3f6a | 2000-06-07 02:26:19 +0000 | [diff] [blame] | 317 | check_environ() |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 318 | |
Greg Ward | 1169687 | 2000-06-07 02:29:03 +0000 | [diff] [blame] | 319 | # Where to look for the system-wide Distutils config file |
| 320 | sys_dir = os.path.dirname(sys.modules['distutils'].__file__) |
| 321 | |
| 322 | # Look for the system config file |
| 323 | sys_file = os.path.join(sys_dir, "distutils.cfg") |
Greg Ward | acf3f6a | 2000-06-07 02:26:19 +0000 | [diff] [blame] | 324 | if os.path.isfile(sys_file): |
| 325 | files.append(sys_file) |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 326 | |
Greg Ward | 1169687 | 2000-06-07 02:29:03 +0000 | [diff] [blame] | 327 | # What to call the per-user config file |
| 328 | if os.name == 'posix': |
Jeremy Hylton | 65d6edb | 2000-07-07 20:45:21 +0000 | [diff] [blame] | 329 | user_filename = ".pydistutils.cfg" |
| 330 | else: |
| 331 | user_filename = "pydistutils.cfg" |
Greg Ward | fa9ff76 | 2000-10-14 04:06:40 +0000 | [diff] [blame] | 332 | |
Greg Ward | 1169687 | 2000-06-07 02:29:03 +0000 | [diff] [blame] | 333 | # And look for the user config file |
Alexandre Vassalotti | 5f8ced2 | 2008-05-16 00:03:33 +0000 | [diff] [blame] | 334 | user_file = os.path.join(os.path.expanduser('~'), user_filename) |
| 335 | if os.path.isfile(user_file): |
| 336 | files.append(user_file) |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 337 | |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 338 | # All platforms support local setup.cfg |
| 339 | local_file = "setup.cfg" |
| 340 | if os.path.isfile(local_file): |
| 341 | files.append(local_file) |
| 342 | |
| 343 | return files |
| 344 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 345 | def parse_config_files(self, filenames=None): |
Alexandre Vassalotti | 1d1eaa4 | 2008-05-14 22:59:42 +0000 | [diff] [blame] | 346 | from configparser import ConfigParser |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 347 | |
| 348 | if filenames is None: |
| 349 | filenames = self.find_config_files() |
| 350 | |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 351 | if DEBUG: |
| 352 | self.announce("Distribution.parse_config_files():") |
Greg Ward | 4746077 | 2000-05-23 03:47:35 +0000 | [diff] [blame] | 353 | |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 354 | parser = ConfigParser() |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 355 | for filename in filenames: |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 356 | if DEBUG: |
Tarek Ziadé | 0cdc369 | 2009-09-21 13:59:07 +0000 | [diff] [blame] | 357 | self.announce(" reading %s" % filename) |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 358 | parser.read(filename) |
| 359 | for section in parser.sections(): |
| 360 | options = parser.options(section) |
Greg Ward | 0e48cfd | 2000-05-26 01:00:15 +0000 | [diff] [blame] | 361 | opt_dict = self.get_option_dict(section) |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 362 | |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 363 | for opt in options: |
| 364 | if opt != '__name__': |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 365 | val = parser.get(section,opt) |
Neal Norwitz | 9d72bb4 | 2007-04-17 08:48:32 +0000 | [diff] [blame] | 366 | opt = opt.replace('-', '_') |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 367 | opt_dict[opt] = (filename, val) |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 368 | |
Greg Ward | 4746077 | 2000-05-23 03:47:35 +0000 | [diff] [blame] | 369 | # Make the ConfigParser forget everything (so we retain |
Fred Drake | f06116d | 2004-02-17 22:35:19 +0000 | [diff] [blame] | 370 | # the original filenames that options come from) |
Greg Ward | 4746077 | 2000-05-23 03:47:35 +0000 | [diff] [blame] | 371 | parser.__init__() |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 372 | |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 373 | # If there was a "global" section in the config file, use it |
| 374 | # to set Distribution options. |
| 375 | |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 376 | if 'global' in self.command_options: |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 377 | for (opt, (src, val)) in self.command_options['global'].items(): |
| 378 | alias = self.negative_opt.get(opt) |
| 379 | try: |
| 380 | if alias: |
| 381 | setattr(self, alias, not strtobool(val)) |
| 382 | elif opt in ('verbose', 'dry_run'): # ugh! |
| 383 | setattr(self, opt, strtobool(val)) |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 384 | else: |
| 385 | setattr(self, opt, val) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 386 | except ValueError as msg: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 387 | raise DistutilsOptionError(msg) |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 388 | |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 389 | # -- Command-line parsing methods ---------------------------------- |
| 390 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 391 | def parse_command_line(self): |
Greg Ward | 9821bf4 | 2000-08-29 01:15:18 +0000 | [diff] [blame] | 392 | """Parse the setup script's command line, taken from the |
| 393 | 'script_args' instance attribute (which defaults to 'sys.argv[1:]' |
| 394 | -- see 'setup()' in core.py). This list is first processed for |
| 395 | "global options" -- options that set attributes of the Distribution |
| 396 | instance. Then, it is alternately scanned for Distutils commands |
| 397 | and options for that command. Each new command terminates the |
| 398 | options for the previous command. The allowed options for a |
| 399 | command are determined by the 'user_options' attribute of the |
| 400 | command class -- thus, we have to be able to load command classes |
| 401 | in order to parse the command line. Any error in that 'options' |
| 402 | attribute raises DistutilsGetoptError; any error on the |
| 403 | command-line raises DistutilsArgError. If no Distutils commands |
| 404 | were found on the command line, raises DistutilsArgError. Return |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 405 | true if command-line was successfully parsed and we should carry |
Greg Ward | 9821bf4 | 2000-08-29 01:15:18 +0000 | [diff] [blame] | 406 | on with executing commands; false if no errors but we shouldn't |
| 407 | execute commands (currently, this only happens if user asks for |
| 408 | help). |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 409 | """ |
Andrew M. Kuchling | 3f819ec | 2001-01-15 16:09:35 +0000 | [diff] [blame] | 410 | # |
Fred Drake | 981a178 | 2001-08-10 18:59:30 +0000 | [diff] [blame] | 411 | # We now have enough information to show the Macintosh dialog |
| 412 | # that allows the user to interactively specify the "command line". |
Andrew M. Kuchling | 3f819ec | 2001-01-15 16:09:35 +0000 | [diff] [blame] | 413 | # |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 414 | toplevel_options = self._get_toplevel_options() |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 415 | |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 416 | # We have to parse the command line a bit at a time -- global |
| 417 | # options, then the first command, then its options, and so on -- |
| 418 | # because each command will be handled by a different class, and |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 419 | # the options that are valid for a particular class aren't known |
| 420 | # until we have loaded the command class, which doesn't happen |
| 421 | # until we know what the command is. |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 422 | |
| 423 | self.commands = [] |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 424 | parser = FancyGetopt(toplevel_options + self.display_options) |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 425 | parser.set_negative_aliases(self.negative_opt) |
Andrew M. Kuchling | fa7dc57 | 2001-08-10 18:49:23 +0000 | [diff] [blame] | 426 | parser.set_aliases({'licence': 'license'}) |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 427 | args = parser.getopt(args=self.script_args, object=self) |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 428 | option_order = parser.get_option_order() |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 429 | log.set_verbosity(self.verbose) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 430 | |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 431 | # for display options we return immediately |
| 432 | if self.handle_display_options(option_order): |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 433 | return |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 434 | while args: |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 435 | args = self._parse_command_opts(parser, args) |
| 436 | if args is None: # user asked for help (and got it) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 437 | return |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 438 | |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 439 | # Handle the cases of --help as a "global" option, ie. |
| 440 | # "setup.py --help" and "setup.py --help command ...". For the |
| 441 | # former, we show global options (--verbose, --dry-run, etc.) |
| 442 | # and display-only options (--name, --version, etc.); for the |
| 443 | # latter, we omit the display-only options and show help for |
| 444 | # each command listed on the command line. |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 445 | if self.help: |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 446 | self._show_help(parser, |
| 447 | display_options=len(self.commands) == 0, |
| 448 | commands=self.commands) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 449 | return |
| 450 | |
| 451 | # Oops, no commands found -- an end-user error |
| 452 | if not self.commands: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 453 | raise DistutilsArgError("no commands supplied") |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 454 | |
| 455 | # All is well: return true |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 456 | return True |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 457 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 458 | def _get_toplevel_options(self): |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 459 | """Return the non-display options recognized at the top level. |
| 460 | |
| 461 | This includes options that are recognized *only* at the top |
| 462 | level as well as options recognized for commands. |
| 463 | """ |
| 464 | return self.global_options + [ |
| 465 | ("command-packages=", None, |
| 466 | "list of packages that provide distutils commands"), |
| 467 | ] |
| 468 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 469 | def _parse_command_opts(self, parser, args): |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 470 | """Parse the command-line options for a single command. |
| 471 | 'parser' must be a FancyGetopt instance; 'args' must be the list |
| 472 | of arguments, starting with the current command (whose options |
| 473 | we are about to parse). Returns a new version of 'args' with |
| 474 | the next command at the front of the list; will be the empty |
| 475 | list if there are no more commands on the command line. Returns |
| 476 | None if the user asked for help on this command. |
| 477 | """ |
| 478 | # late import because of mutual dependence between these modules |
| 479 | from distutils.cmd import Command |
| 480 | |
| 481 | # Pull the current command from the head of the command line |
| 482 | command = args[0] |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 483 | if not command_re.match(command): |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 484 | raise SystemExit("invalid command name '%s'" % command) |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 485 | self.commands.append(command) |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 486 | |
| 487 | # Dig up the command class that implements this command, so we |
| 488 | # 1) know that it's a valid command, and 2) know which options |
| 489 | # it takes. |
| 490 | try: |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 491 | cmd_class = self.get_command_class(command) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 492 | except DistutilsModuleError as msg: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 493 | raise DistutilsArgError(msg) |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 494 | |
| 495 | # Require that the command class be derived from Command -- want |
| 496 | # to be sure that the basic "command" interface is implemented. |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 497 | if not issubclass(cmd_class, Command): |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 498 | raise DistutilsClassError( |
| 499 | "command class %s must subclass Command" % cmd_class) |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 500 | |
| 501 | # Also make sure that the command object provides a list of its |
| 502 | # known options. |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 503 | if not (hasattr(cmd_class, 'user_options') and |
Guido van Rossum | 1325790 | 2007-06-07 23:15:56 +0000 | [diff] [blame] | 504 | isinstance(cmd_class.user_options, list)): |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 505 | raise DistutilsClassError(("command class %s must provide " + |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 506 | "'user_options' attribute (a list of tuples)") % \ |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 507 | cmd_class) |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 508 | |
| 509 | # If the command class has a list of negative alias options, |
| 510 | # merge it in with the global negative aliases. |
| 511 | negative_opt = self.negative_opt |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 512 | if hasattr(cmd_class, 'negative_opt'): |
Antoine Pitrou | 56a00de | 2009-05-15 17:34:21 +0000 | [diff] [blame] | 513 | negative_opt = negative_opt.copy() |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 514 | negative_opt.update(cmd_class.negative_opt) |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 515 | |
Greg Ward | fa9ff76 | 2000-10-14 04:06:40 +0000 | [diff] [blame] | 516 | # Check for help_options in command class. They have a different |
| 517 | # format (tuple of four) so we need to preprocess them here. |
Jeremy Hylton | 65d6edb | 2000-07-07 20:45:21 +0000 | [diff] [blame] | 518 | if (hasattr(cmd_class, 'help_options') and |
Guido van Rossum | 1325790 | 2007-06-07 23:15:56 +0000 | [diff] [blame] | 519 | isinstance(cmd_class.help_options, list)): |
Greg Ward | 2ff7887 | 2000-06-24 00:23:20 +0000 | [diff] [blame] | 520 | help_options = fix_help_options(cmd_class.help_options) |
| 521 | else: |
Greg Ward | 55fced3 | 2000-06-24 01:22:41 +0000 | [diff] [blame] | 522 | help_options = [] |
Greg Ward | 2ff7887 | 2000-06-24 00:23:20 +0000 | [diff] [blame] | 523 | |
Greg Ward | 9d17a7a | 2000-06-07 03:00:06 +0000 | [diff] [blame] | 524 | |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 525 | # All commands support the global options too, just by adding |
| 526 | # in 'global_options'. |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 527 | parser.set_option_table(self.global_options + |
| 528 | cmd_class.user_options + |
| 529 | help_options) |
| 530 | parser.set_negative_aliases(negative_opt) |
| 531 | (args, opts) = parser.getopt(args[1:]) |
Greg Ward | 4746077 | 2000-05-23 03:47:35 +0000 | [diff] [blame] | 532 | if hasattr(opts, 'help') and opts.help: |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 533 | self._show_help(parser, display_options=0, commands=[cmd_class]) |
| 534 | return |
| 535 | |
Jeremy Hylton | 65d6edb | 2000-07-07 20:45:21 +0000 | [diff] [blame] | 536 | if (hasattr(cmd_class, 'help_options') and |
Guido van Rossum | 1325790 | 2007-06-07 23:15:56 +0000 | [diff] [blame] | 537 | isinstance(cmd_class.help_options, list)): |
Jeremy Hylton | 65d6edb | 2000-07-07 20:45:21 +0000 | [diff] [blame] | 538 | help_option_found=0 |
| 539 | for (help_option, short, desc, func) in cmd_class.help_options: |
| 540 | if hasattr(opts, parser.get_attr_name(help_option)): |
| 541 | help_option_found=1 |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 542 | if hasattr(func, '__call__'): |
Jeremy Hylton | 65d6edb | 2000-07-07 20:45:21 +0000 | [diff] [blame] | 543 | func() |
Greg Ward | 55fced3 | 2000-06-24 01:22:41 +0000 | [diff] [blame] | 544 | else: |
Fred Drake | 981a178 | 2001-08-10 18:59:30 +0000 | [diff] [blame] | 545 | raise DistutilsClassError( |
Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 546 | "invalid help function %r for help option '%s': " |
Fred Drake | 981a178 | 2001-08-10 18:59:30 +0000 | [diff] [blame] | 547 | "must be a callable object (function, etc.)" |
Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 548 | % (func, help_option)) |
Greg Ward | 55fced3 | 2000-06-24 01:22:41 +0000 | [diff] [blame] | 549 | |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 550 | if help_option_found: |
Jeremy Hylton | 65d6edb | 2000-07-07 20:45:21 +0000 | [diff] [blame] | 551 | return |
Greg Ward | 9d17a7a | 2000-06-07 03:00:06 +0000 | [diff] [blame] | 552 | |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 553 | # Put the options from the command-line into their official |
| 554 | # holding pen, the 'command_options' dictionary. |
Greg Ward | 0e48cfd | 2000-05-26 01:00:15 +0000 | [diff] [blame] | 555 | opt_dict = self.get_option_dict(command) |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 556 | for (name, value) in vars(opts).items(): |
Greg Ward | 0e48cfd | 2000-05-26 01:00:15 +0000 | [diff] [blame] | 557 | opt_dict[name] = ("command line", value) |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 558 | |
| 559 | return args |
| 560 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 561 | def finalize_options(self): |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 562 | """Set final values for all the options on the Distribution |
| 563 | instance, analogous to the .finalize_options() method of Command |
| 564 | objects. |
| 565 | """ |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 566 | for attr in ('keywords', 'platforms'): |
| 567 | value = getattr(self.metadata, attr) |
| 568 | if value is None: |
| 569 | continue |
| 570 | if isinstance(value, str): |
| 571 | value = [elm.strip() for elm in value.split(',')] |
| 572 | setattr(self.metadata, attr, value) |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 573 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 574 | def _show_help(self, parser, global_options=1, display_options=1, |
| 575 | commands=[]): |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 576 | """Show help for the setup script command-line in the form of |
| 577 | several lists of command-line options. 'parser' should be a |
| 578 | FancyGetopt instance; do not expect it to be returned in the |
| 579 | same state, as its option table will be reset to make it |
| 580 | generate the correct help text. |
| 581 | |
| 582 | If 'global_options' is true, lists the global options: |
| 583 | --verbose, --dry-run, etc. If 'display_options' is true, lists |
| 584 | the "display-only" options: --name, --version, etc. Finally, |
| 585 | lists per-command help for every command name or command class |
| 586 | in 'commands'. |
| 587 | """ |
| 588 | # late import because of mutual dependence between these modules |
Greg Ward | 9821bf4 | 2000-08-29 01:15:18 +0000 | [diff] [blame] | 589 | from distutils.core import gen_usage |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 590 | from distutils.cmd import Command |
| 591 | |
| 592 | if global_options: |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 593 | if display_options: |
| 594 | options = self._get_toplevel_options() |
| 595 | else: |
| 596 | options = self.global_options |
| 597 | parser.set_option_table(options) |
Martin v. Löwis | 8ed338a | 2005-03-03 08:12:27 +0000 | [diff] [blame] | 598 | parser.print_help(self.common_usage + "\nGlobal options:") |
Tarek Ziadé | 2b33045 | 2009-07-04 03:01:33 +0000 | [diff] [blame] | 599 | print('') |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 600 | |
| 601 | if display_options: |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 602 | parser.set_option_table(self.display_options) |
| 603 | parser.print_help( |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 604 | "Information display options (just display " + |
| 605 | "information, ignore any commands)") |
Tarek Ziadé | 2b33045 | 2009-07-04 03:01:33 +0000 | [diff] [blame] | 606 | print('') |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 607 | |
| 608 | for command in self.commands: |
Guido van Rossum | 1325790 | 2007-06-07 23:15:56 +0000 | [diff] [blame] | 609 | if isinstance(command, type) and issubclass(command, Command): |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 610 | klass = command |
| 611 | else: |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 612 | klass = self.get_command_class(command) |
Jeremy Hylton | 65d6edb | 2000-07-07 20:45:21 +0000 | [diff] [blame] | 613 | if (hasattr(klass, 'help_options') and |
Guido van Rossum | 1325790 | 2007-06-07 23:15:56 +0000 | [diff] [blame] | 614 | isinstance(klass.help_options, list)): |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 615 | parser.set_option_table(klass.user_options + |
| 616 | fix_help_options(klass.help_options)) |
Jeremy Hylton | 65d6edb | 2000-07-07 20:45:21 +0000 | [diff] [blame] | 617 | else: |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 618 | parser.set_option_table(klass.user_options) |
| 619 | parser.print_help("Options for '%s' command:" % klass.__name__) |
Tarek Ziadé | 2b33045 | 2009-07-04 03:01:33 +0000 | [diff] [blame] | 620 | print('') |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 621 | |
Tarek Ziadé | 2b33045 | 2009-07-04 03:01:33 +0000 | [diff] [blame] | 622 | print(gen_usage(self.script_name)) |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 623 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 624 | def handle_display_options(self, option_order): |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 625 | """If there were any non-global "display-only" options |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 626 | (--help-commands or the metadata display options) on the command |
| 627 | line, display the requested info and return true; else return |
| 628 | false. |
| 629 | """ |
Greg Ward | 9821bf4 | 2000-08-29 01:15:18 +0000 | [diff] [blame] | 630 | from distutils.core import gen_usage |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 631 | |
| 632 | # User just wants a list of commands -- we'll print it out and stop |
| 633 | # processing now (ie. if they ran "setup --help-commands foo bar", |
| 634 | # we ignore "foo bar"). |
| 635 | if self.help_commands: |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 636 | self.print_commands() |
Tarek Ziadé | 2b33045 | 2009-07-04 03:01:33 +0000 | [diff] [blame] | 637 | print('') |
| 638 | print(gen_usage(self.script_name)) |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 639 | return 1 |
| 640 | |
| 641 | # If user supplied any of the "display metadata" options, then |
| 642 | # display that metadata in the order in which the user supplied the |
| 643 | # metadata options. |
| 644 | any_display_options = 0 |
| 645 | is_display_option = {} |
| 646 | for option in self.display_options: |
| 647 | is_display_option[option[0]] = 1 |
| 648 | |
| 649 | for (opt, val) in option_order: |
| 650 | if val and is_display_option.get(opt): |
Greg Ward | 2f2b6c6 | 2000-09-25 01:58:07 +0000 | [diff] [blame] | 651 | opt = translate_longopt(opt) |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 652 | value = getattr(self.metadata, "get_"+opt)() |
| 653 | if opt in ['keywords', 'platforms']: |
Tarek Ziadé | 2b33045 | 2009-07-04 03:01:33 +0000 | [diff] [blame] | 654 | print(','.join(value)) |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 655 | elif opt in ('classifiers', 'provides', 'requires', |
| 656 | 'obsoletes'): |
Tarek Ziadé | 2b33045 | 2009-07-04 03:01:33 +0000 | [diff] [blame] | 657 | print('\n'.join(value)) |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 658 | else: |
Tarek Ziadé | 2b33045 | 2009-07-04 03:01:33 +0000 | [diff] [blame] | 659 | print(value) |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 660 | any_display_options = 1 |
| 661 | |
| 662 | return any_display_options |
| 663 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 664 | def print_command_list(self, commands, header, max_length): |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 665 | """Print a subset of the list of all commands -- used by |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 666 | 'print_commands()'. |
| 667 | """ |
Tarek Ziadé | 2b33045 | 2009-07-04 03:01:33 +0000 | [diff] [blame] | 668 | print(header + ":") |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 669 | |
| 670 | for cmd in commands: |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 671 | klass = self.cmdclass.get(cmd) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 672 | if not klass: |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 673 | klass = self.get_command_class(cmd) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 674 | try: |
| 675 | description = klass.description |
| 676 | except AttributeError: |
| 677 | description = "(no description available)" |
| 678 | |
Tarek Ziadé | 2b33045 | 2009-07-04 03:01:33 +0000 | [diff] [blame] | 679 | print(" %-*s %s" % (max_length, cmd, description)) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 680 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 681 | def print_commands(self): |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 682 | """Print out a help message listing all available commands with a |
| 683 | description of each. The list is divided into "standard commands" |
| 684 | (listed in distutils.command.__all__) and "extra commands" |
| 685 | (mentioned in self.cmdclass, but not a standard command). The |
| 686 | descriptions come from the command class attribute |
| 687 | 'description'. |
| 688 | """ |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 689 | import distutils.command |
| 690 | std_commands = distutils.command.__all__ |
| 691 | is_std = {} |
| 692 | for cmd in std_commands: |
| 693 | is_std[cmd] = 1 |
| 694 | |
| 695 | extra_commands = [] |
| 696 | for cmd in self.cmdclass.keys(): |
| 697 | if not is_std.get(cmd): |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 698 | extra_commands.append(cmd) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 699 | |
| 700 | max_length = 0 |
| 701 | for cmd in (std_commands + extra_commands): |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 702 | if len(cmd) > max_length: |
| 703 | max_length = len(cmd) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 704 | |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 705 | self.print_command_list(std_commands, |
| 706 | "Standard commands", |
| 707 | max_length) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 708 | if extra_commands: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 709 | print() |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 710 | self.print_command_list(extra_commands, |
| 711 | "Extra commands", |
| 712 | max_length) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 713 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 714 | def get_command_list(self): |
Greg Ward | f6fc875 | 2000-11-11 02:47:11 +0000 | [diff] [blame] | 715 | """Get a list of (command, description) tuples. |
| 716 | The list is divided into "standard commands" (listed in |
| 717 | distutils.command.__all__) and "extra commands" (mentioned in |
| 718 | self.cmdclass, but not a standard command). The descriptions come |
| 719 | from the command class attribute 'description'. |
| 720 | """ |
| 721 | # Currently this is only used on Mac OS, for the Mac-only GUI |
| 722 | # Distutils interface (by Jack Jansen) |
Greg Ward | f6fc875 | 2000-11-11 02:47:11 +0000 | [diff] [blame] | 723 | import distutils.command |
| 724 | std_commands = distutils.command.__all__ |
| 725 | is_std = {} |
| 726 | for cmd in std_commands: |
| 727 | is_std[cmd] = 1 |
| 728 | |
| 729 | extra_commands = [] |
| 730 | for cmd in self.cmdclass.keys(): |
| 731 | if not is_std.get(cmd): |
| 732 | extra_commands.append(cmd) |
| 733 | |
| 734 | rv = [] |
| 735 | for cmd in (std_commands + extra_commands): |
| 736 | klass = self.cmdclass.get(cmd) |
| 737 | if not klass: |
| 738 | klass = self.get_command_class(cmd) |
| 739 | try: |
| 740 | description = klass.description |
| 741 | except AttributeError: |
| 742 | description = "(no description available)" |
| 743 | rv.append((cmd, description)) |
| 744 | return rv |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 745 | |
| 746 | # -- Command class/object methods ---------------------------------- |
| 747 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 748 | def get_command_packages(self): |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 749 | """Return a list of packages from which commands are loaded.""" |
| 750 | pkgs = self.command_packages |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 751 | if not isinstance(pkgs, list): |
| 752 | if pkgs is None: |
| 753 | pkgs = '' |
| 754 | pkgs = [pkg.strip() for pkg in pkgs.split(',') if pkg != ''] |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 755 | if "distutils.command" not in pkgs: |
| 756 | pkgs.insert(0, "distutils.command") |
| 757 | self.command_packages = pkgs |
| 758 | return pkgs |
| 759 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 760 | def get_command_class(self, command): |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 761 | """Return the class that implements the Distutils command named by |
| 762 | 'command'. First we check the 'cmdclass' dictionary; if the |
| 763 | command is mentioned there, we fetch the class object from the |
| 764 | dictionary and return it. Otherwise we load the command module |
| 765 | ("distutils.command." + command) and fetch the command class from |
| 766 | the module. The loaded class is also stored in 'cmdclass' |
| 767 | to speed future calls to 'get_command_class()'. |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 768 | |
Gregory P. Smith | 1426354 | 2000-05-12 00:41:33 +0000 | [diff] [blame] | 769 | Raises DistutilsModuleError if the expected module could not be |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 770 | found, or if that module does not define the expected class. |
| 771 | """ |
| 772 | klass = self.cmdclass.get(command) |
| 773 | if klass: |
| 774 | return klass |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 775 | |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 776 | for pkgname in self.get_command_packages(): |
| 777 | module_name = "%s.%s" % (pkgname, command) |
| 778 | klass_name = command |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 779 | |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 780 | try: |
| 781 | __import__ (module_name) |
| 782 | module = sys.modules[module_name] |
| 783 | except ImportError: |
| 784 | continue |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 785 | |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 786 | try: |
| 787 | klass = getattr(module, klass_name) |
| 788 | except AttributeError: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 789 | raise DistutilsModuleError( |
| 790 | "invalid command '%s' (no class '%s' in module '%s')" |
| 791 | % (command, klass_name, module_name)) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 792 | |
Fred Drake | d04573f | 2004-08-03 16:37:40 +0000 | [diff] [blame] | 793 | self.cmdclass[command] = klass |
| 794 | return klass |
| 795 | |
| 796 | raise DistutilsModuleError("invalid command '%s'" % command) |
| 797 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 798 | def get_command_obj(self, command, create=1): |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 799 | """Return the command object for 'command'. Normally this object |
Greg Ward | 612eb9f | 2000-07-27 02:13:20 +0000 | [diff] [blame] | 800 | is cached on a previous call to 'get_command_obj()'; if no command |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 801 | object for 'command' is in the cache, then we either create and |
| 802 | return it (if 'create' is true) or return None. |
| 803 | """ |
| 804 | cmd_obj = self.command_obj.get(command) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 805 | if not cmd_obj and create: |
Greg Ward | 2bd3f42 | 2000-06-02 01:59:33 +0000 | [diff] [blame] | 806 | if DEBUG: |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 807 | self.announce("Distribution.get_command_obj(): " \ |
| 808 | "creating '%s' command object" % command) |
Greg Ward | 4746077 | 2000-05-23 03:47:35 +0000 | [diff] [blame] | 809 | |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 810 | klass = self.get_command_class(command) |
Greg Ward | 4746077 | 2000-05-23 03:47:35 +0000 | [diff] [blame] | 811 | cmd_obj = self.command_obj[command] = klass(self) |
| 812 | self.have_run[command] = 0 |
| 813 | |
| 814 | # Set any options that were supplied in config files |
| 815 | # or on the command line. (NB. support for error |
| 816 | # reporting is lame here: any errors aren't reported |
| 817 | # until 'finalize_options()' is called, which means |
| 818 | # we won't report the source of the error.) |
| 819 | options = self.command_options.get(command) |
| 820 | if options: |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 821 | self._set_command_options(cmd_obj, options) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 822 | |
| 823 | return cmd_obj |
| 824 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 825 | def _set_command_options(self, command_obj, option_dict=None): |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 826 | """Set the options for 'command_obj' from 'option_dict'. Basically |
| 827 | this means copying elements of a dictionary ('option_dict') to |
| 828 | attributes of an instance ('command'). |
| 829 | |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 830 | 'command_obj' must be a Command instance. If 'option_dict' is not |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 831 | supplied, uses the standard option dictionary for this command |
| 832 | (from 'self.command_options'). |
| 833 | """ |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 834 | command_name = command_obj.get_command_name() |
| 835 | if option_dict is None: |
| 836 | option_dict = self.get_option_dict(command_name) |
| 837 | |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 838 | if DEBUG: |
| 839 | self.announce(" setting options for '%s' command:" % command_name) |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 840 | for (option, (source, value)) in option_dict.items(): |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 841 | if DEBUG: |
| 842 | self.announce(" %s = %s (from %s)" % (option, value, |
| 843 | source)) |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 844 | try: |
Amaury Forgeot d'Arc | 61cb087 | 2008-07-26 20:09:45 +0000 | [diff] [blame] | 845 | bool_opts = [translate_longopt(o) |
| 846 | for o in command_obj.boolean_options] |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 847 | except AttributeError: |
| 848 | bool_opts = [] |
| 849 | try: |
| 850 | neg_opt = command_obj.negative_opt |
| 851 | except AttributeError: |
| 852 | neg_opt = {} |
| 853 | |
| 854 | try: |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 855 | is_string = isinstance(value, str) |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 856 | if option in neg_opt and is_string: |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 857 | setattr(command_obj, neg_opt[option], not strtobool(value)) |
Greg Ward | 2c08cf0 | 2000-09-27 00:15:37 +0000 | [diff] [blame] | 858 | elif option in bool_opts and is_string: |
Greg Ward | ceb9e22 | 2000-09-25 01:23:52 +0000 | [diff] [blame] | 859 | setattr(command_obj, option, strtobool(value)) |
| 860 | elif hasattr(command_obj, option): |
| 861 | setattr(command_obj, option, value) |
| 862 | else: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 863 | raise DistutilsOptionError( |
| 864 | "error in %s: command '%s' has no such option '%s'" |
| 865 | % (source, command_name, option)) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 866 | except ValueError as msg: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 867 | raise DistutilsOptionError(msg) |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 868 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 869 | def reinitialize_command(self, command, reinit_subcommands=0): |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 870 | """Reinitializes a command to the state it was in when first |
| 871 | returned by 'get_command_obj()': ie., initialized but not yet |
Greg Ward | 7d9c705 | 2000-06-28 01:25:27 +0000 | [diff] [blame] | 872 | finalized. This provides the opportunity to sneak option |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 873 | values in programmatically, overriding or supplementing |
| 874 | user-supplied values from the config files and command line. |
| 875 | You'll have to re-finalize the command object (by calling |
| 876 | 'finalize_options()' or 'ensure_finalized()') before using it for |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 877 | real. |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 878 | |
Greg Ward | f449ea5 | 2000-09-16 15:23:28 +0000 | [diff] [blame] | 879 | 'command' should be a command name (string) or command object. If |
| 880 | 'reinit_subcommands' is true, also reinitializes the command's |
| 881 | sub-commands, as declared by the 'sub_commands' class attribute (if |
| 882 | it has one). See the "install" command for an example. Only |
| 883 | reinitializes the sub-commands that actually matter, ie. those |
| 884 | whose test predicates return true. |
| 885 | |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 886 | Returns the reinitialized command object. |
| 887 | """ |
| 888 | from distutils.cmd import Command |
| 889 | if not isinstance(command, Command): |
| 890 | command_name = command |
| 891 | command = self.get_command_obj(command_name) |
| 892 | else: |
| 893 | command_name = command.get_command_name() |
| 894 | |
| 895 | if not command.finalized: |
Greg Ward | 282c7a0 | 2000-06-01 01:09:47 +0000 | [diff] [blame] | 896 | return command |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 897 | command.initialize_options() |
| 898 | command.finalized = 0 |
Greg Ward | 43955c9 | 2000-06-06 02:52:36 +0000 | [diff] [blame] | 899 | self.have_run[command_name] = 0 |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 900 | self._set_command_options(command) |
Greg Ward | f449ea5 | 2000-09-16 15:23:28 +0000 | [diff] [blame] | 901 | |
Greg Ward | f449ea5 | 2000-09-16 15:23:28 +0000 | [diff] [blame] | 902 | if reinit_subcommands: |
Greg Ward | f449ea5 | 2000-09-16 15:23:28 +0000 | [diff] [blame] | 903 | for sub in command.get_sub_commands(): |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 904 | self.reinitialize_command(sub, reinit_subcommands) |
Greg Ward | f449ea5 | 2000-09-16 15:23:28 +0000 | [diff] [blame] | 905 | |
Greg Ward | c32d9a6 | 2000-05-28 23:53:06 +0000 | [diff] [blame] | 906 | return command |
| 907 | |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 908 | # -- Methods that operate on the Distribution ---------------------- |
| 909 | |
Tarek Ziadé | 35c88a8 | 2009-07-04 02:05:51 +0000 | [diff] [blame] | 910 | def announce(self, msg, level=log.INFO): |
| 911 | log.log(level, msg) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 912 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 913 | def run_commands(self): |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 914 | """Run each command that was seen on the setup script command line. |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 915 | Uses the list of commands found and cache of command objects |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 916 | created by 'get_command_obj()'. |
| 917 | """ |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 918 | for cmd in self.commands: |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 919 | self.run_command(cmd) |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 920 | |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 921 | # -- Methods that operate on its Commands -------------------------- |
| 922 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 923 | def run_command(self, command): |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 924 | """Do whatever it takes to run a command (including nothing at all, |
Greg Ward | d5d8a99 | 2000-05-23 01:42:17 +0000 | [diff] [blame] | 925 | if the command has already been run). Specifically: if we have |
| 926 | already created and run the command named by 'command', return |
| 927 | silently without doing anything. If the command named by 'command' |
| 928 | doesn't even have a command object yet, create one. Then invoke |
| 929 | 'run()' on that command object (or an existing one). |
| 930 | """ |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 931 | # Already been here, done that? then return silently. |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 932 | if self.have_run.get(command): |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 933 | return |
| 934 | |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 935 | log.info("running %s", command) |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 936 | cmd_obj = self.get_command_obj(command) |
| 937 | cmd_obj.ensure_finalized() |
| 938 | cmd_obj.run() |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 939 | self.have_run[command] = 1 |
| 940 | |
| 941 | |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 942 | # -- Distribution query methods ------------------------------------ |
| 943 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 944 | def has_pure_modules(self): |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 945 | return len(self.packages or self.py_modules or []) > 0 |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 946 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 947 | def has_ext_modules(self): |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 948 | return self.ext_modules and len(self.ext_modules) > 0 |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 949 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 950 | def has_c_libraries(self): |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 951 | return self.libraries and len(self.libraries) > 0 |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 952 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 953 | def has_modules(self): |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 954 | return self.has_pure_modules() or self.has_ext_modules() |
| 955 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 956 | def has_headers(self): |
Greg Ward | 51def7d | 2000-05-27 01:36:14 +0000 | [diff] [blame] | 957 | return self.headers and len(self.headers) > 0 |
| 958 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 959 | def has_scripts(self): |
Greg Ward | 44a61bb | 2000-05-20 15:06:48 +0000 | [diff] [blame] | 960 | return self.scripts and len(self.scripts) > 0 |
| 961 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 962 | def has_data_files(self): |
Greg Ward | 44a61bb | 2000-05-20 15:06:48 +0000 | [diff] [blame] | 963 | return self.data_files and len(self.data_files) > 0 |
| 964 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 965 | def is_pure(self): |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 966 | return (self.has_pure_modules() and |
| 967 | not self.has_ext_modules() and |
| 968 | not self.has_c_libraries()) |
| 969 | |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 970 | # -- Metadata query methods ---------------------------------------- |
| 971 | |
| 972 | # If you're looking for 'get_name()', 'get_version()', and so forth, |
| 973 | # they are defined in a sneaky way: the constructor binds self.get_XXX |
| 974 | # to self.metadata.get_XXX. The actual code is in the |
| 975 | # DistributionMetadata class, below. |
| 976 | |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 977 | class DistributionMetadata: |
| 978 | """Dummy class to hold the distribution meta-data: name, version, |
Greg Ward | fd7b91e | 2000-09-26 01:52:25 +0000 | [diff] [blame] | 979 | author, and so forth. |
| 980 | """ |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 981 | |
Neil Schemenauer | a8aefe5 | 2001-09-03 15:47:21 +0000 | [diff] [blame] | 982 | _METHOD_BASENAMES = ("name", "version", "author", "author_email", |
| 983 | "maintainer", "maintainer_email", "url", |
| 984 | "license", "description", "long_description", |
| 985 | "keywords", "platforms", "fullname", "contact", |
Andrew M. Kuchling | a52b852 | 2003-03-03 20:07:27 +0000 | [diff] [blame] | 986 | "contact_email", "license", "classifiers", |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 987 | "download_url", |
| 988 | # PEP 314 |
| 989 | "provides", "requires", "obsoletes", |
| 990 | ) |
Neil Schemenauer | a8aefe5 | 2001-09-03 15:47:21 +0000 | [diff] [blame] | 991 | |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 992 | def __init__ (self): |
| 993 | self.name = None |
| 994 | self.version = None |
| 995 | self.author = None |
| 996 | self.author_email = None |
| 997 | self.maintainer = None |
| 998 | self.maintainer_email = None |
| 999 | self.url = None |
Andrew M. Kuchling | fa7dc57 | 2001-08-10 18:49:23 +0000 | [diff] [blame] | 1000 | self.license = None |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 1001 | self.description = None |
Greg Ward | e5a584e | 2000-04-26 02:26:55 +0000 | [diff] [blame] | 1002 | self.long_description = None |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 1003 | self.keywords = None |
| 1004 | self.platforms = None |
Andrew M. Kuchling | 282e2c3 | 2003-01-03 15:24:36 +0000 | [diff] [blame] | 1005 | self.classifiers = None |
Andrew M. Kuchling | 188d85f | 2003-02-19 14:16:01 +0000 | [diff] [blame] | 1006 | self.download_url = None |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 1007 | # PEP 314 |
| 1008 | self.provides = None |
| 1009 | self.requires = None |
| 1010 | self.obsoletes = None |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 1011 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 1012 | def write_pkg_info(self, base_dir): |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 1013 | """Write the PKG-INFO file into the release tree. |
| 1014 | """ |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 1015 | pkg_info = open( os.path.join(base_dir, 'PKG-INFO'), 'w') |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 1016 | self.write_pkg_file(pkg_info) |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 1017 | pkg_info.close() |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 1018 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 1019 | def write_pkg_file(self, file): |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 1020 | """Write the PKG-INFO format data to a file object. |
| 1021 | """ |
| 1022 | version = '1.0' |
| 1023 | if self.provides or self.requires or self.obsoletes: |
| 1024 | version = '1.1' |
| 1025 | |
| 1026 | file.write('Metadata-Version: %s\n' % version) |
| 1027 | file.write('Name: %s\n' % self.get_name() ) |
| 1028 | file.write('Version: %s\n' % self.get_version() ) |
| 1029 | file.write('Summary: %s\n' % self.get_description() ) |
| 1030 | file.write('Home-page: %s\n' % self.get_url() ) |
| 1031 | file.write('Author: %s\n' % self.get_contact() ) |
| 1032 | file.write('Author-email: %s\n' % self.get_contact_email() ) |
| 1033 | file.write('License: %s\n' % self.get_license() ) |
| 1034 | if self.download_url: |
| 1035 | file.write('Download-URL: %s\n' % self.download_url) |
| 1036 | |
Tarek Ziadé | f11be75 | 2009-06-01 22:36:26 +0000 | [diff] [blame] | 1037 | long_desc = rfc822_escape(self.get_long_description()) |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 1038 | file.write('Description: %s\n' % long_desc) |
| 1039 | |
Neal Norwitz | 9d72bb4 | 2007-04-17 08:48:32 +0000 | [diff] [blame] | 1040 | keywords = ','.join(self.get_keywords()) |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 1041 | if keywords: |
| 1042 | file.write('Keywords: %s\n' % keywords ) |
| 1043 | |
| 1044 | self._write_list(file, 'Platform', self.get_platforms()) |
| 1045 | self._write_list(file, 'Classifier', self.get_classifiers()) |
| 1046 | |
| 1047 | # PEP 314 |
| 1048 | self._write_list(file, 'Requires', self.get_requires()) |
| 1049 | self._write_list(file, 'Provides', self.get_provides()) |
| 1050 | self._write_list(file, 'Obsoletes', self.get_obsoletes()) |
| 1051 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 1052 | def _write_list(self, file, name, values): |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 1053 | for value in values: |
| 1054 | file.write('%s: %s\n' % (name, value)) |
| 1055 | |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 1056 | # -- Metadata query methods ---------------------------------------- |
| 1057 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 1058 | def get_name(self): |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 1059 | return self.name or "UNKNOWN" |
| 1060 | |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 1061 | def get_version(self): |
Thomas Heller | bcd8975 | 2001-12-06 20:44:19 +0000 | [diff] [blame] | 1062 | return self.version or "0.0.0" |
Greg Ward | fe6462c | 2000-04-04 01:40:52 +0000 | [diff] [blame] | 1063 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 1064 | def get_fullname(self): |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 1065 | return "%s-%s" % (self.get_name(), self.get_version()) |
| 1066 | |
| 1067 | def get_author(self): |
| 1068 | return self.author or "UNKNOWN" |
| 1069 | |
| 1070 | def get_author_email(self): |
| 1071 | return self.author_email or "UNKNOWN" |
| 1072 | |
| 1073 | def get_maintainer(self): |
| 1074 | return self.maintainer or "UNKNOWN" |
| 1075 | |
| 1076 | def get_maintainer_email(self): |
| 1077 | return self.maintainer_email or "UNKNOWN" |
| 1078 | |
| 1079 | def get_contact(self): |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 1080 | return self.maintainer or self.author or "UNKNOWN" |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 1081 | |
| 1082 | def get_contact_email(self): |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 1083 | return self.maintainer_email or self.author_email or "UNKNOWN" |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 1084 | |
| 1085 | def get_url(self): |
| 1086 | return self.url or "UNKNOWN" |
| 1087 | |
Andrew M. Kuchling | fa7dc57 | 2001-08-10 18:49:23 +0000 | [diff] [blame] | 1088 | def get_license(self): |
| 1089 | return self.license or "UNKNOWN" |
| 1090 | get_licence = get_license |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 1091 | |
Greg Ward | 82715e1 | 2000-04-21 02:28:14 +0000 | [diff] [blame] | 1092 | def get_description(self): |
| 1093 | return self.description or "UNKNOWN" |
Greg Ward | e5a584e | 2000-04-26 02:26:55 +0000 | [diff] [blame] | 1094 | |
| 1095 | def get_long_description(self): |
| 1096 | return self.long_description or "UNKNOWN" |
| 1097 | |
Andrew M. Kuchling | a7210ed | 2001-03-22 03:06:52 +0000 | [diff] [blame] | 1098 | def get_keywords(self): |
| 1099 | return self.keywords or [] |
| 1100 | |
| 1101 | def get_platforms(self): |
| 1102 | return self.platforms or ["UNKNOWN"] |
| 1103 | |
Andrew M. Kuchling | 282e2c3 | 2003-01-03 15:24:36 +0000 | [diff] [blame] | 1104 | def get_classifiers(self): |
| 1105 | return self.classifiers or [] |
| 1106 | |
Andrew M. Kuchling | 188d85f | 2003-02-19 14:16:01 +0000 | [diff] [blame] | 1107 | def get_download_url(self): |
| 1108 | return self.download_url or "UNKNOWN" |
| 1109 | |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 1110 | # PEP 314 |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 1111 | def get_requires(self): |
| 1112 | return self.requires or [] |
| 1113 | |
| 1114 | def set_requires(self, value): |
| 1115 | import distutils.versionpredicate |
| 1116 | for v in value: |
| 1117 | distutils.versionpredicate.VersionPredicate(v) |
| 1118 | self.requires = value |
| 1119 | |
| 1120 | def get_provides(self): |
| 1121 | return self.provides or [] |
| 1122 | |
| 1123 | def set_provides(self, value): |
| 1124 | value = [v.strip() for v in value] |
| 1125 | for v in value: |
| 1126 | import distutils.versionpredicate |
Fred Drake | 227e8ff | 2005-03-21 06:36:32 +0000 | [diff] [blame] | 1127 | distutils.versionpredicate.split_provision(v) |
Fred Drake | db7b002 | 2005-03-20 22:19:47 +0000 | [diff] [blame] | 1128 | self.provides = value |
| 1129 | |
| 1130 | def get_obsoletes(self): |
| 1131 | return self.obsoletes or [] |
| 1132 | |
| 1133 | def set_obsoletes(self, value): |
| 1134 | import distutils.versionpredicate |
| 1135 | for v in value: |
| 1136 | distutils.versionpredicate.VersionPredicate(v) |
| 1137 | self.obsoletes = value |
| 1138 | |
Tarek Ziadé | 188789d | 2009-05-16 18:37:32 +0000 | [diff] [blame] | 1139 | def fix_help_options(options): |
Greg Ward | 2ff7887 | 2000-06-24 00:23:20 +0000 | [diff] [blame] | 1140 | """Convert a 4-tuple 'help_options' list as found in various command |
| 1141 | classes to the 3-tuple form required by FancyGetopt. |
| 1142 | """ |
| 1143 | new_options = [] |
| 1144 | for help_tuple in options: |
| 1145 | new_options.append(help_tuple[0:3]) |
| 1146 | return new_options |