This repository has been archived by the owner on Dec 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathversion.py
executable file
·209 lines (165 loc) · 5.5 KB
/
version.py
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Author: Douglas Creager <[email protected]>
# This file is placed into the public domain.
# Calculates the current version number. If possible, this is the
# output of “git describe”, modified to conform to the versioning
# scheme that setuptools uses. If “git describe” returns an error
# (most likely because we're in an unpacked copy of a release tarball,
# rather than in a git working copy), then we fall back on reading the
# contents of the RELEASE-VERSION file.
#
# To use this script, simply import it your setup.py file, and use the
# results of get_git_version() as your package version:
#
# from version import *
#
# setup(
# version=get_git_version(),
# .
# .
# .
# )
#
# This will automatically update the RELEASE-VERSION file, if
# necessary. Note that the RELEASE-VERSION file should *not* be
# checked into git; please add it to your top-level .gitignore file.
#
# You'll probably want to distribute the RELEASE-VERSION file in your
# sdist tarballs; to do this, just create a MANIFEST.in file that
# contains the following line:
#
# include RELEASE-VERSION
__all__ = ("get_git_version")
from subprocess import Popen, PIPE
def call_git_describe(abbrev=4, commit_hash=None):
try:
cmd = ['git', 'describe', '--abbrev=%d' % abbrev]
if commit_hash:
cmd.append(commit_hash)
p = Popen(cmd, stdout=PIPE, stderr=PIPE)
p.stderr.close()
line = p.stdout.readlines()[0]
p.wait()
return line.strip()
except:
return None
def get_git_changelog(version, abbrev=4):
prev_tag = None
prev_tag_commit_hash = None
# Collect commits
commits = []
# Determine the previous version
try:
skip = 0
while True:
cmd = ['git', 'rev-list', '--tags', '--skip=%d' % skip,
'--max-count=1']
p = Popen(cmd, stdout=PIPE, stderr=PIPE)
p.stderr.close()
commit_hash = p.stdout.readlines()[0].strip()
p.wait()
if not commit_hash:
break
tag = call_git_describe(abbrev, commit_hash)
if not tag:
break
# Only look at tags without a dash, others are commits between tags
if '-' not in tag and tag != version:
prev_tag_commit_hash = commit_hash
prev_tag = tag
break
# Get the commit entry
cmd = ['git', 'log', '--first-parent', '--pretty=%s', '-1', tag]
p = Popen(cmd, stdout=PIPE, stderr=PIPE)
p.stderr.close()
lines = p.stdout.readlines()
p.wait()
lines = [l.strip() for l in lines]
commits.append(lines)
skip += 1
# Did we find it?
if not prev_tag:
return None
# Get the commit timestamp
cmd = ['git', 'show', '-s', '--pretty=%ci', prev_tag_commit_hash]
p = Popen(cmd, stdout=PIPE, stderr=PIPE)
p.stderr.close()
when = p.stdout.readlines()[0].strip()
p.wait()
# Build the changelog
header = 'Version %s' % version
changelog = [header,
'=' * len(header),
'Released: %s' % when,
'']
for commit in commits:
changelog += [' * %s' % commit[0]]
for line in commit[1:]:
changelog += [' %s' % line]
return '\n'.join(changelog)
except:
return None
def read_release_version():
try:
f = open("RELEASE-VERSION", "r")
try:
version = f.readlines()[0]
return version.strip()
finally:
f.close()
except:
return None
def write_release_version(version):
f = open("RELEASE-VERSION", "w")
f.write("%s\n" % version)
f.close()
# Add the changelog
cmd = ['git', 'add', 'RELEASE-VERSION']
p = Popen(cmd)
p.wait()
cmd = ['git', 'commit', '-m', 'Adding/updating RELEASE-VERSION']
p = Popen(cmd)
p.wait()
def write_changelog(version, changelog):
filename = "changes/ChangeLog-%s.md" % version
f = open(filename, "w")
f.write('%s\n' % changelog)
f.close()
# Add the changelog
cmd = ['git', 'add', filename]
p = Popen(cmd)
p.wait()
cmd = ['git', 'commit', '-m', 'Adding/updating changelog']
p = Popen(cmd)
p.wait()
def get_git_version(version=None, abbrev=4):
# Read in the version that's currently in RELEASE-VERSION.
release_version = read_release_version()
# If that doesn't work, fall back on the value that's in
# RELEASE-VERSION.
if version is None:
version = release_version
# If we still don't have anything, that's an error.
if version is None:
raise ValueError("Cannot find the version number!")
# If the current version is different from what's in the
# RELEASE-VERSION file, update the file to be current.
if version != release_version:
write_release_version(version)
# Get the changelog
changelog = get_git_changelog(version)
if changelog:
write_changelog(version, changelog)
# Finally, return the current version.
return version
if __name__ == "__main__":
import sys
version = get_git_version(sys.argv[1])
print version
cmd = ['git', 'tag', '-a', '-f', '-m', 'Tagging version %s' % version, version]
p = Popen(cmd)
p.wait()
cmd = ['git', 'push', '--tags']
p = Popen(cmd)
p.wait()