Lines Matching refs:manifest

48          "name of manifest template file [default: MANIFEST.in]"),
49 ('manifest=', 'm',
50 "name of manifest file [default: MANIFEST]"),
52 "include the default file set in the manifest "
62 ('manifest-only', 'o',
63 "just regenerate the manifest and then stop "
64 "(implies --force-manifest)"),
65 ('force-manifest', 'f',
66 "forcibly regenerate the manifest and carry on as usual. "
67 "Deprecated: now the manifest is always regenerated."),
86 'manifest-only', 'force-manifest',
102 # 'template' and 'manifest' are, respectively, the names of
103 # the manifest template and manifest file.
105 self.manifest = None
108 # in the manifest
125 if self.manifest is None:
126 self.manifest = "MANIFEST"
142 # manifest
150 # (process the manifest template, read an existing manifest,
154 # If user just wanted us to regenerate the manifest, stop now.
173 reading the manifest template (and writing the manifest), or just
174 reading the manifest, or just using the default file set -- it all
192 self.warn(("manifest template '%s' does not exist " +
325 """Read and parse manifest template file named by self.template.
330 log.info("reading manifest template '%s'", self.template)
379 by 'add_defaults()' and 'read_template()') to the manifest file
380 named by 'self.manifest'.
384 "manifest file '%s'" % self.manifest)
389 self.execute(file_util.write_file, (self.manifest, content),
390 "writing manifest file '%s'" % self.manifest)
394 if not os.path.isfile(self.manifest):
397 fp = open(self.manifest)
405 """Read the manifest file (named by 'self.manifest') and use it to
409 log.info("reading manifest file '%s'", self.manifest)
410 with open(self.manifest) as manifest:
411 for line in manifest:
429 # if the manifest happens to be empty.
448 log.warn("no files to distribute -- empty manifest?")