-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcontributors.py
More file actions
159 lines (137 loc) · 4.2 KB
/
contributors.py
File metadata and controls
159 lines (137 loc) · 4.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
"""
Get Mercurial history data and output list of contributors with years.
Public domain work by:
anatoly techtonik <techtonik@gmail.com>
"""
from subprocess import check_output
# --- output settings
contributors_by_year = True
years_for_contributors = True
verbose = True
# /--
# --- project specific configuration
ALIASES = {
'Richard Jones <richard@mechanicalcat.net>':
['richard',
'Richard Jones <richard@users.sourceforge.net>'],
'Bernhard Reiter <bernhard@intevation.de>':
['Bernhard Reiter <ber@users.sourceforge.net>',
'Bernhard Reiter <Bernhard.Reiter@intevation.de>'],
'Ralf Schlatterbeck <rsc@runtux.com>':
['Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net>'],
'Stefan Seefeld <stefan@seefeld.name>':
['Stefan Seefeld <stefan@users.sourceforge.net>'],
'John P. Rouillard <rouilj@cs.umb.edu>':
['rouilj'],
}
ROBOTS = ['No Author <no-author@users.sourceforge.net>']
# /--
def compress(years):
"""
Given a list of years like [2003, 2004, 2007],
compress it into string like '2003-2004, 2007'
>>> compress([2002])
'2002'
>>> compress([2003, 2002])
'2002-2003'
>>> compress([2009, 2004, 2005, 2006, 2007])
'2004-2007, 2009'
>>> compress([2001, 2003, 2004, 2005])
'2001, 2003-2005'
>>> compress([2009, 2011])
'2009, 2011'
>>> compress([2009, 2010, 2011, 2006, 2007])
'2006-2007, 2009-2011'
>>> compress([2002, 2003, 2004, 2005, 2006, 2009, 2012])
'2002-2006, 2009, 2012'
"""
years = sorted(years)
# compress years into string
comma = ', '
yearstr = ''
for i in range(0,len(years)-1):
if years[i+1]-years[i] == 1:
if not yearstr or yearstr.endswith(comma):
yearstr += '%s' % years[i]
if yearstr.endswith('-'):
pass
else:
yearstr += '-'
else:
yearstr += '%s, ' % years[i]
if len(years) == 1:
yearstr += str(years[0])
else:
yearstr += '%s' % years[-1]
return yearstr
if __name__ == '__main__':
if verbose:
print("Getting HG log...")
authorship = check_output('hg log --template "{date(date,\\"%Y\\")},{author}\n"')
# authorship are strings like
# 2003,Richard Jones <richard@users.sourceforge.net>
# ...
if verbose:
print("Splitting...")
# transform to a list of tuples
authorship = [line.split(',', 1) for line in authorship.splitlines()]
if verbose:
print("Sorting...")
years = {} # year -> set(author1, author2, ...)
names = {} # author -> set(years)
for year, author in authorship:
if author in ROBOTS:
continue
# process aliases
for name, aliases in ALIASES.items():
if author in aliases:
author = name
break
author = author.replace('<', '(')
author = author.replace('>', ')')
# years
if not year in years:
years[year] = set()
years[year].add(author)
# names
if not author in names:
names[author] = set()
names[author].add(int(year))
if contributors_by_year:
if verbose:
print("Contributors by year...")
print('')
for year in sorted(years, reverse=True):
print(year)
for author in sorted(years[year]):
print(" " + author)
print('')
if years_for_contributors:
if verbose:
print("Years for each contributor...")
print('')
def last_year(name):
"""Return year of the latest contribution for a given name"""
return sorted(list(names[name]))[-1]
def first_year(name):
"""Return year of the first contribution"""
return sorted(list(names[name]))[0]
def year_cmp(name1, name2):
"""
Year comparison function. First sort by latest contribution year (desc).
If it matches, compare first contribution year (asc). This ensures that
the most recent and long-term contributors are at the top.
"""
if last_year(name1) != last_year(name2):
return last_year(name1) - last_year(name2)
else:
return first_year(name2) - first_year(name1)
print("Copyright (c)")
for author in sorted(list(names), cmp=year_cmp, reverse=True):
years = list(names[author])
yearstr = compress(years)
if 0: #DEBUG
print(years, yearstr, author)
else:
print(" %s %s" % (yearstr, author))
print('')