def __init__( self, sourcePackage, licenseFile, config, directory, sourceGenerators, binaryGenerators, extraCPackLogic ): Action.__init__( self ) self._sourcePackage = sourcePackage self._licenseFile = licenseFile self._directory = directory self._config = config self._sourceGenerators = sourceGenerators self._binaryGenerators = binaryGenerators self._extraCPackLogic = extraCPackLogic
def __init__( self, files = None, destination = None ): Action.__init__( self ) self.setFiles( files ) self.setDestination( destination )
def __init__( self, preprocessor, name = None ): Action.__init__( self, name ) self.setPreprocessor( preprocessor ) # set up a regular expression that searches for the place holders: self.__regex = re.compile( r'{(@@\(.*\))}*' )
def __init__( self, command = None, timeout = None, combineOutput = True, searchPaths = None ): Action.__init__( self ) self.setCommand( command, timeout, searchPaths ) self.__combineOutput = combineOutput self.__runner = None
def __init__( self, sourceLocation = None, targetLocation = None, name = None ): Action.__init__( self, name ) self.setSourcePath( sourceLocation ) self.setDestinationPath( targetLocation )
def __init__( self, pyLintChecker ): Action.__init__( self ) self.__pyLintChecker = pyLintChecker self.setIgnorePreviousFailure( True )
def __init__( self, path, name = None ): Action.__init__( self, name ) self.setPath( path )
def __init__( self, file ): Action.__init__( self ) self._file = file