Kiln » TortoiseHg » WinBuild Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

write date in extension-versions.txt

Changeset 09445a243e8f

Parent ca2628348951

by Adrian Buehlmann

Changes to 2 files · Browse files at 09445a243e8f Showing diff from parent ca2628348951 Diff from another changeset...

 
1
2
3
4
5
6
7
8
9
10
11
12
13
 
 
 
 
 
 
 
 
 
 
 
 
1
2
 
 
 
 
 
 
 
 
 
 
 
3
4
5
6
7
8
9
10
11
12
13
@@ -1,13 +1,13 @@
 Extensions/modules included in this TortoiseHg package:   - hgfold: 0d5ced144f81 https://bitbucket.org/bradobro/hgfold/ - perfarce: 31fbf702b844 http://www.kingswood-consulting.co.uk/hg/perfarce/ - keyring: 821d4cfc2ac4 https://bitbucket.org/kang/python-keyring-lib/ - hgkeyring: 9bb78d1ad684 https://bitbucket.org/Mekk/mercurial_keyring/ - dulwich: ed3596b25fd1 https://bitbucket.org/abderrahim/dulwich/ - iniparse: bd83edee7300 https://bitbucket.org/sborho/iniparse/ - zipdoc: a2ca45ccfd64 https://bitbucket.org/gobell/hg-zipdoc/ - hgcr-gui: ec0358628cde https://bitbucket.org/glimchb/hgcr-gui/ - python-svn: 1.6.13 http://bitbucket.org/tortoisehg/thg/downloads - pygments: 1.4 http://pygments.org/download/ - pywin32: 216 http://sourceforge.net/projects/pywin32/ + hgfold: 0d5ced144f81 2010-07-21 https://bitbucket.org/bradobro/hgfold/ + perfarce: 31fbf702b844 2011-07-06 http://www.kingswood-consulting.co.uk/hg/perfarce/ + keyring: 821d4cfc2ac4 2011-08-03 https://bitbucket.org/kang/python-keyring-lib/ + hgkeyring: 9bb78d1ad684 2011-08-13 https://bitbucket.org/Mekk/mercurial_keyring/ + dulwich: ed3596b25fd1 2011-07-21 https://bitbucket.org/abderrahim/dulwich/ + iniparse: bd83edee7300 2010-06-12 https://bitbucket.org/sborho/iniparse/ + zipdoc: a2ca45ccfd64 2011-07-05 https://bitbucket.org/gobell/hg-zipdoc/ + hgcr-gui: ec0358628cde 2011-07-28 https://bitbucket.org/glimchb/hgcr-gui/ + python-svn: 1.6.13 http://bitbucket.org/tortoisehg/thg/downloads + pygments: 1.4 http://pygments.org/download/ + pywin32: 216 http://sourceforge.net/projects/pywin32/
Change 1 of 3 Show Entire File setup.py Stacked
 
50
51
52
53
 
54
55
56
 
554
555
556
557
 
 
 
558
559
560
 
566
567
568
569
 
570
571
572
573
574
575
576
 
577
578
579
580
581
582
583
 
584
585
586
 
50
51
52
 
53
54
55
56
 
554
555
556
 
557
558
559
560
561
562
 
568
569
570
 
571
572
573
574
575
576
577
 
578
579
580
581
582
583
584
 
585
586
587
588
@@ -50,7 +50,7 @@
  sys.path.append(p)  set_syspath()   -from mercurial import ui, hg +from mercurial import ui, hg, util    def get_environ():   env = os.environ @@ -554,7 +554,9 @@
   def write_repo_version(f, base, mod):   repo = hg.repository(ui.ui(), path=base + '/' + mod) - f.write('%12s:\t%s\t%s\n' % (mod, str(repo['.']), URL[mod])) + ctx = repo['.'] + date = util.shortdate(ctx.date()) + f.write('%12s:\t%s\t%s\t%s\n' % (mod, str(ctx), date, URL[mod]))    def write_extension_versions():   out = 'extension-versions.txt' @@ -566,21 +568,21 @@
  from svn import core   ver = '%d.%d.%d' % (core.SVN_VER_MAJOR, core.SVN_VER_MINOR, core.SVN_VER_MICRO)   url = 'http://bitbucket.org/tortoisehg/thg/downloads' - f.write('%12s:\t%-12s\t%s\n' % ('python-svn', ver, url)) + f.write('%12s:\t%-12s\t%10s\t%s\n' % ('python-svn', ver, '', url))   except ImportError:   pass   try:   import pygments   ver = pygments.__version__   url = 'http://pygments.org/download/' - f.write('%12s:\t%-12s\t%s\n' % ('pygments', ver, url)) + f.write('%12s:\t%-12s\t%10s\t%s\n' % ('pygments', ver, '', url))   except ImportError:   pass   pywin32file = sys.prefix + r'\lib\site-packages\pywin32.version.txt'   if os.path.exists(pywin32file):   ver = open(pywin32file, 'r').read().strip()   url = 'http://sourceforge.net/projects/pywin32/' - f.write('%12s:\t%-12s\t%s\n' % ('pywin32', ver, url)) + f.write('%12s:\t%-12s\t%10s\t%s\n' % ('pywin32', ver, '', url))   f.close()    def update():