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