Пример #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_rpm.run(self)
Пример #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_rpm.run(self)
Пример #3
0
 def run(self):        
     try:            
         from distutils.sysconfig import get_python_version
         import __builtin__
         __builtin__.get_python_version = get_python_version
     except:
         # Supposedly corrected in Python3 where __builtin__ -> builtin
         pass
     bdist_rpm.run(self)
Пример #4
0
 def run(self):
     if self.spec_only:
         return distutils_bdist_rpm.run(self)
     return orig_bdist_rpm.run(self)
Пример #5
0
 def run(self):
     self.run_command('egg_info')    # ensure distro name is up-to-date
     _bdist_rpm.run(self)
Пример #6
0
    def run(self):
        # ensure distro name is up-to-date
        self.run_command('egg_info')

        _bdist_rpm.run(self)
Пример #7
0
 def run(self):
     log.error("vsc_bdist_rpm = %s" % (self.__dict__))
     SHARED_TARGET['cmdclass']['egg_info'] = vsc_bdist_rpm_egg_info  # changed to allow removal of files
     self.run_command('egg_info')  # ensure distro name is up-to-date
     orig_bdist_rpm.run(self)
Пример #8
0
 def run(self):
     log.error("vsc_bdist_rpm = %s" % (self.__dict__))
     SHARED_TARGET['cmdclass'][
         'egg_info'] = vsc_bdist_rpm_egg_info  # changed to allow removal of files
     self.run_command('egg_info')  # ensure distro name is up-to-date
     orig_bdist_rpm.run(self)
Пример #9
0
 def run(self):
     self.run_command("egg_info")  # ensure distro name is up-to-date
     _bdist_rpm.run(self)
Пример #10
0
 def run(self):
    global using_bdist
    using_bdist = 1
    bdist_rpm.run(self)
Пример #11
0
 def run(self):
     if self.spec_only:
         return distutils_bdist_rpm.run(self)
     return orig_bdist_rpm.run(self)
Пример #12
0
 def run(self):
     # unless we update this, the bdist command will keep using the old
     # version
     self.distribution.metadata.version = version
     return _bdist_rpm.run(self)
Пример #13
0
 def run(self):
     _bdist_rpm.run(self)
Пример #14
0
 def run(self):
     _bdist_rpm.run(self)