Exemplo n.º 1
0
 def __init__(self, *args, **kwargs):
     _build.__init__(self, *args, **kwargs)
     self.script_dir = None
     self.build_dir = None
     self.cmake_path = None
     self.make_path = None
     self.hg_path = None
     self.cxx_path = None
     self.cc_path = None
     self.install_prefix = None
     self.py_executable = None
     self.py_version = None
Exemplo n.º 2
0
	def __init__( self , dist ) :
		build.__init__(self,dist)

		# Search for pyuic4 in python bin dir, then in the $Path.
		try:
			from PyQt4 import pyqtconfig
		except ImportError:
			pyuic_exe = None
		else:
			pyqt_configuration = pyqtconfig.Configuration()
			pyuic_exe = find_executable('pyuic4', pyqt_configuration.default_bin_dir)
		if not pyuic_exe: pyuic_exe = find_executable('pyuic4')
		if not pyuic_exe: pyuic_exe = find_executable('pyuic4.bat')
		if not pyuic_exe: print "Unable to find pyuic4 executable"; return

		self.pyuic_exe = pyuic_exe
Exemplo n.º 3
0
 def __init__(self, *args, **kwargs):
     MyBuildExt.amalgamation = True
     self._amalgamate_sqlightning()
     build.__init__(self, *args, **kwargs)
Exemplo n.º 4
0
 def __init__(self, *args, **kwargs):
     self.build_dir = None
     self.skip_build = False
     _build.__init__(self, *args, **kwargs)
Exemplo n.º 5
0
 def __init__(self, *args, **kwargs):
     build.__init__(self, *args, **kwargs)
     self.no_doc = False
Exemplo n.º 6
0
 def __init__(self, dist):
     _build.__init__(self, dist)
Exemplo n.º 7
0
    def __init__(self, dist):
        build.__init__(self, dist)

        self.rhel6defaults = 0
Exemplo n.º 8
0
 def __init__(self, *args, **kwargs):
     MyBuildExt.amalgamation = True
     build.__init__(self, *args, **kwargs)
Exemplo n.º 9
0
 def __init__(self, *a, **kw):
     old_build.__init__(self, *a, **kw)
Exemplo n.º 10
0
 def __init__(self, *args, **kwargs):
     MyBuildExt.amalgamation = True
     self._amalgamate_sqlightning()
     build.__init__(self, *args, **kwargs)
Exemplo n.º 11
0
 def __init__(self, dist):
     build.__init__(self, dist)
     self.hdfs_core_impl = hdfsimpl.DEFAULT
Exemplo n.º 12
0
    def __init__(self, dist):
        build.__init__(self, dist)

        self.user_options.extend([('pod2man', None, 'use pod2man')])
Exemplo n.º 13
0
    def __init__(self, dist):
        build.__init__(self, dist)

        self.rhel6defaults = 0
Exemplo n.º 14
0
 def __init__(self, *args, **kwargs):
     self.build_dir = None
     self.skip_build = False
     _build.__init__(self, *args, **kwargs)
Exemplo n.º 15
0
 def __init__(self, *a, **kw):
     old_build.__init__(self, *a, **kw)
Exemplo n.º 16
0
 def __init__(self, *args, **kwargs):
     _build.__init__(self, *args, **kwargs)
Exemplo n.º 17
0
 def __init__(self, *args, **kwargs):
     assert sys.version_info[0] == 3
     build.__init__(self, *args, **kwargs)
Exemplo n.º 18
0
 def __init__(self, *a, **kw):
     self.sub_commands = self.sub_commands + [("build_locale", None)]
     _build.__init__(self, *a, **kw)
Exemplo n.º 19
0
 def __init__(self, dist):
   build.__init__(self, dist)
Exemplo n.º 20
0
 def __init__(self, *args, **kwargs):
     _build.__init__(self, *args, **kwargs)
Exemplo n.º 21
0
 def __init__(self, *a, **kw):
     self.sub_commands = self.sub_commands + [
         ('build_locale', None),
         ]
     _build.__init__(self, *a, **kw)
Exemplo n.º 22
0
 def __init__(self, dist):
     build.__init__(self, dist)
     self.user_options.extend([("i18n", None, "use the localisation"),
                               ("icons", None, "use icons"),
                              ])
Exemplo n.º 23
0
    def __init__(self, dist):
        build.__init__(self, dist)

        self.user_options.extend([('pod2man', None, 'use pod2man')])
Exemplo n.º 24
0
 def __init__(self, *args, **kwargs):
     assert sys.version_info.major == 2
     build.__init__(self, *args, **kwargs)
Exemplo n.º 25
0
 def __init__(self,*args,**kwargs):
     assert sys.version_info.major==2
     build.__init__(self,*args,**kwargs)
Exemplo n.º 26
0
 def __init__(self, *args, **kwargs):
     MyBuildExt.amalgamation = True
     MyBuildExt.static = True
     build.__init__(self, *args, **kwargs)
Exemplo n.º 27
0
 def __init__(self, dist):
     build.__init__(self, dist)
     self.hdfs_core_impl = hdfsimpl.DEFAULT
Exemplo n.º 28
0
 def __init__(self, *args, **kwargs):
     build.__init__(self, *args, **kwargs)
     self.no_doc = False
Exemplo n.º 29
0
 def __init__(self,*args,**kwargs):
     assert sys.version_info[0]==3
     build.__init__(self,*args,**kwargs)