Exemplo n.º 1
0
 def run(self):
     tag = '_Qt%s%s%s' % tuple(
         get_config('qt').get('qt_version_str').split('.'))
     name = self.distribution.metadata.name
     if -1 == name.find(tag):
         self.distribution.metadata.name = name + tag
     old_bdist.run(self)
Exemplo n.º 2
0
 def run(self):
     tag = '_Qt%s%s%s' % tuple(
         get_config('qt').get('qt_version_str').split('.'))
     name = self.distribution.metadata.name
     if -1 == name.find(tag):
         self.distribution.metadata.name = name + tag
     old_bdist.run(self)
Exemplo n.º 3
0
 def run(self):
     libzmq = 'libzmq'+lib_ext
     # copy libzmq into zmq for bdist
     try:
         shutil.copy(pjoin(ZMQ, 'lib', libzmq), localpath('zmq',libzmq))
     except Exception:
         if not os.path.exists(localpath('zmq',libzmq)):
             raise IOError("Could not copy libzmq into zmq/, which is necessary for bdist."
             "Please specify zmq prefix via configure --zmq=/path/to/zmq or copy "
             "libzmq into zmq/ manually.")
     
     bdist.run(self)
Exemplo n.º 4
0
    def run(self):
        libzmq = 'libzmq' + lib_ext
        # copy libzmq into zmq for bdist
        try:
            shutil.copy(pjoin(ZMQ, 'lib', libzmq), localpath('zmq', libzmq))
        except Exception:
            if not os.path.exists(localpath('zmq', libzmq)):
                raise IOError(
                    "Could not copy libzmq into zmq/, which is necessary for bdist."
                    "Please specify zmq prefix via configure --zmq=/path/to/zmq or copy "
                    "libzmq into zmq/ manually.")

        bdist.run(self)
Exemplo n.º 5
0
 def run(self):
     Helper.propagate_options(self, "bdist", "build_ext")
     _bdist.run(self)
Exemplo n.º 6
0
 def run(self):
     bdist.run(self)
     check_versions()
Exemplo n.º 7
0
    def run(self):
        for cmd_name in self.get_sub_commands():
            self.run_command(cmd_name)

        _bdist.run(self)
Exemplo n.º 8
0
 def run(self):
    global using_bdist
    using_bdist = 1
    bdist.run(self)
Exemplo n.º 9
0
 def run(self):
     _bdist.run(self)
Exemplo n.º 10
0
 def run(self):
     _bdist.run(self)
Exemplo n.º 11
0
    def run(self):
        for cmd_name in self.get_sub_commands():
            self.run_command(cmd_name)

        _bdist.run(self)
Exemplo n.º 12
0
 def run(self):
     self.distribution.metadata.version = set_version()
     du_bdist.run(self)
Exemplo n.º 13
0
Arquivo: setup.py Projeto: pinno/seal
 def run(self):
     self.distribution.metadata.version = set_version()
     du_bdist.run(self)
Exemplo n.º 14
0
 def run(self):
     from Cython.Build import cythonize
     cythonize(['_cgettext.pyx'])
     _bdist.run(self)