Ejemplo n.º 1
0
 def __init__(self, compilerVersion="vc6"):
     Datum.__init__(
         self,
         "msvcInstallDir",
         desc="the installation directory of Microsoft Visual %s" %
         (compilerVersion),
         serializeAs=[])
     self._compilerVersion = compilerVersion.lower()
Ejemplo n.º 2
0
 def __init__(self, name=None, desc=None,
              # The id of the configuration item describing the perl
              # installation in which to check for these modules.
              perlBinDirItemName="perlBinDir"):
     self.perlBinDirItemName = perlBinDirItemName
     if name is None:
         name = "activePerlBuild"
     if desc is None:
         desc="the ActivePerl build number"
     Datum.__init__(self, name, desc)
Ejemplo n.º 3
0
 def __init__(
     self,
     name=None,
     desc=None,
     # The id of the configuration item describing the perl
     # installation in which to check for these modules.
     perlBinDirItemName="perlBinDir"):
     self.perlBinDirItemName = perlBinDirItemName
     if name is None:
         name = "activePerlBuild"
     if desc is None:
         desc = "the ActivePerl build number"
     Datum.__init__(self, name, desc)
Ejemplo n.º 4
0
 def __init__(self, name=None, desc=None,
              # The id of the configuration item describing the perl
              # installation in which to check for these modules.
              perlBinDirItemName="perlBinDir",
              modules=[],    # the list of Perl module name to check for
              fatal=1):      # true iff the modules *must* be installed
     self.perlBinDirItemName = perlBinDirItemName
     self.modules = modules
     self.fatal = fatal
     if name is None:
         name = "perlModulesInstalled"
     if desc is None:
         desc="the following Perl modules are installed: %s" % self.modules
     Datum.__init__(self, name, desc)
Ejemplo n.º 5
0
 def __init__(
     self,
     name=None,
     desc=None,
     # The id of the configuration item describing the perl
     # installation in which to check for these modules.
     perlBinDirItemName="perlBinDir",
     modules=[],  # the list of Perl module name to check for
     fatal=1):  # true iff the modules *must* be installed
     self.perlBinDirItemName = perlBinDirItemName
     self.modules = modules
     self.fatal = fatal
     if name is None:
         name = "perlModulesInstalled"
     if desc is None:
         desc = "the following Perl modules are installed: %s" % self.modules
     Datum.__init__(self, name, desc)
Ejemplo n.º 6
0
 def __init__(self):
     Datum.__init__(self, "msvcrtDebugDllsInstalled",
         desc="the Microsoft Runtime debugging DLLs installed")
Ejemplo n.º 7
0
 def __init__(self):
     Datum.__init__(self, "pythonExeName",
         desc="the name of the Python executable")
Ejemplo n.º 8
0
 def __init__(self):
     Datum.__init__(self,
                    "pythonExeName",
                    desc="the name of the Python executable")
Ejemplo n.º 9
0
 def __init__(self, compilerVersion="vc6"):
     Datum.__init__(self, "msvcInstallDir",
         desc="the installation directory of Microsoft Visual %s" % (compilerVersion),
         serializeAs=[])
     self._compilerVersion = compilerVersion.lower()
Ejemplo n.º 10
0
 def __init__(self):
     Datum.__init__(self, "pythonInstallDir",
         desc="the Python installation directory")
Ejemplo n.º 11
0
 def __init__(self):
     Datum.__init__(self, "createMozconfig",\
         desc="create the Mozilla Unix build configuration file "\
              "(~/.mozconfig)",
         serializeAs=[]
     )
Ejemplo n.º 12
0
 def __init__(self):
     Datum.__init__(self,
                    "perlInstallDir",
                    desc="Perl installation directory")
Ejemplo n.º 13
0
 def __init__(self):
     Datum.__init__(self, "phpBinDir", desc="the PHP bin directory")
Ejemplo n.º 14
0
 def __init__(self):
     Datum.__init__(self, "pythonBinDir", "the Python bin directory")
Ejemplo n.º 15
0
 def __init__(self):
     Datum.__init__(self,
                    "pythonInstallDir",
                    desc="the Python installation directory")
Ejemplo n.º 16
0
 def __init__(self):
     Datum.__init__(self, "phpBinDir", desc="the PHP bin directory")
Ejemplo n.º 17
0
 def __init__(self):
     Datum.__init__(self, "perlBinDir", desc="the Perl bin directory")
Ejemplo n.º 18
0
 def __init__(self):
     Datum.__init__(self, "pythonVersion", desc="the python version")
Ejemplo n.º 19
0
 def __init__(self):
     Datum.__init__(self, "pythonVersion", desc="the python version")
Ejemplo n.º 20
0
 def __init__(self):
     Datum.__init__(self, "mozBin", "the Mozilla bin directory")
Ejemplo n.º 21
0
 def __init__(self):
     Datum.__init__(self, "perlBinDir", desc="the Perl bin directory")
Ejemplo n.º 22
0
 def __init__(self):
     Datum.__init__(self, "systemDirs", desc="the system directories")
Ejemplo n.º 23
0
 def __init__(self):
     Datum.__init__(self, "pythonBinDir", "the Python bin directory")
Ejemplo n.º 24
0
 def __init__(self):
     Datum.__init__(self, "mozBin", "the Mozilla bin directory")
Ejemplo n.º 25
0
 def __init__(self):
     Datum.__init__(self, "perlInstallDir",
         desc="Perl installation directory")
Ejemplo n.º 26
0
 def __init__(self):
     Datum.__init__(self, "path", desc="the configured PATH setting")
Ejemplo n.º 27
0
 def __init__(self):
     Datum.__init__(self, "systemDirs", desc="the system directories")
Ejemplo n.º 28
0
 def __init__(self):
     Datum.__init__(self,
                    "msvcrtDebugDllsInstalled",
                    desc="the Microsoft Runtime debugging DLLs installed")
Ejemplo n.º 29
0
 def __init__(self):
     Datum.__init__(self, "path", desc="the configured PATH setting")
Ejemplo n.º 30
0
 def __init__(self):
     Datum.__init__(self, "createMozconfig",\
         desc="create the Mozilla Unix build configuration file "\
              "(~/.mozconfig)",
         serializeAs=[]
     )