Exemple #1
0
 def __init__(self, *args, **kwargs):
     fin = os.popen('git log --summary --stat --no-merges --date=short',
                    'r')
     fout = open('ChangeLog', 'w')
     fout.write(fin.read())
     fout.close()
     sdist.__init__(self, *args)
Exemple #2
0
 def __init__(self, cmake, dist):
     _sdist_orig.__init__(self, dist)
Exemple #3
0
 def __init__ (self, *a, **kw) :
     sdist_orig.__init__(self, *a, **kw)
Exemple #4
0
 def __init__(self, *args, **kwargs):
     dSDist.__init__(self, *args, **kwargs)
Exemple #5
0
 def __init__(self, *args, **kwargs) -> None:
     sdist.__init__(self, *args, **kwargs)
     UIMakeMixin.__init__(self)
Exemple #6
0
 def __init__(self, *args, **kwargs):
     dSDist.__init__(self, *args, **kwargs)
Exemple #7
0
 def __init__(self, *args, **kwargs):
         fin = os.popen('git log --summary --stat --no-merges --date=short', 'r')
         fout = open('ChangeLog', 'w')
         fout.write(fin.read())
         fout.close()
         sdist.__init__(self, *args)