Ejemplo n.º 1
0
	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
Ejemplo n.º 2
0
	def __init__( self, files = None, destination = None ):
		Action.__init__( self )
		self.setFiles( files )
		self.setDestination( destination )
Ejemplo n.º 3
0
	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'{(@@\(.*\))}*' )
Ejemplo n.º 4
0
	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
Ejemplo n.º 5
0
	def __init__( self, sourceLocation = None, targetLocation = None, name = None ):
		Action.__init__( self, name )

		self.setSourcePath( sourceLocation )
		self.setDestinationPath( targetLocation )
Ejemplo n.º 6
0
	def __init__( self, pyLintChecker ):
		Action.__init__( self )
		self.__pyLintChecker = pyLintChecker
		self.setIgnorePreviousFailure( True )
Ejemplo n.º 7
0
	def __init__( self, path, name = None ):
		Action.__init__( self, name )
		self.setPath( path )
Ejemplo n.º 8
0
	def __init__( self, file ):
		Action.__init__( self )
		self._file = file