Uh oh!
There was an error while loading. Please reload this page.
forked from open-source-parsers/jsoncpp
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakerelease.py
More file actions
Latest commit
390 lines (347 loc) · 15.4 KB
/
Copy pathmakerelease.py
File metadata and controls
390 lines (347 loc) · 15.4 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
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
# Copyright 2010 Baptiste Lepilleur
# Distributed under MIT license, or public domain if desired and
# recognized in your jurisdiction.
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
"""Tag the sandbox for release, make source and doc tarballs.
Requires Python 2.6
Example of invocation (use to test the script):
python makerelease.py --platform=msvc6,msvc71,msvc80,msvc90,mingw -ublep 0.6.0 0.7.0-dev
When testing this script:
python makerelease.py --force --retag --platform=msvc6,msvc71,msvc80,mingw -ublep test-0.6.0 test-0.6.1-dev
Example of invocation when doing a release:
python makerelease.py 0.5.0 0.6.0-dev
Note: This was for Subversion. Now that we are in GitHub, we do not
need to build versioned tarballs anymore, so makerelease.py is defunct.
"""
from __future__ importprint_function
importos.path
importsubprocess
importsys
importdoxybuild
importsubprocess
importxml.etree.ElementTreeasElementTree
importshutil
importurllib2
importtempfile
importos
importtime
fromdevtoolsimportantglob, fixeol, tarball
importamalgamate
SVN_ROOT='https://jsoncpp.svn.sourceforge.net/svnroot/jsoncpp/'
SVN_TAG_ROOT=SVN_ROOT+'tags/jsoncpp'
SCONS_LOCAL_URL='http://sourceforge.net/projects/scons/files/scons-local/1.2.0/scons-local-1.2.0.tar.gz/download'
SOURCEFORGE_PROJECT='jsoncpp'
defset_version(version):
withopen('version','wb') asf:
f.write(version.strip())
defrmdir_if_exist(dir_path):
ifos.path.isdir(dir_path):
shutil.rmtree(dir_path)
classSVNError(Exception):
pass
defsvn_command(command, *args):
cmd= ['svn', '--non-interactive', command] +list(args)
print('Running:', ' '.join(cmd))
process=subprocess.Popen(cmd,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
stdout=process.communicate()[0]
ifprocess.returncode:
error=SVNError('SVN command failed:\n'+stdout)
error.returncode=process.returncode
raiseerror
returnstdout
defcheck_no_pending_commit():
"""Checks that there is no pending commit in the sandbox."""
stdout=svn_command('status', '--xml')
etree=ElementTree.fromstring(stdout)
msg= []
forentryinetree.getiterator('entry'):
path=entry.get('path')
status=entry.find('wc-status').get('item')
ifstatus!='unversioned'andpath!='version':
msg.append('File "%s" has pending change (status="%s")'% (path, status))
ifmsg:
msg.insert(0, 'Pending change to commit found in sandbox. Commit them first!')
return'\n'.join(msg)
defsvn_join_url(base_url, suffix):
ifnotbase_url.endswith('/'):
base_url+='/'
ifsuffix.startswith('/'):
suffix=suffix[1:]
returnbase_url+suffix
defsvn_check_if_tag_exist(tag_url):
"""Checks if a tag exist.
Returns: True if the tag exist, False otherwise.
"""
try:
list_stdout=svn_command('list', tag_url)
exceptSVNErrorase:
ife.returncode!=1ornotstr(e).find('tag_url'):
raisee
# otherwise ignore error, meaning tag does not exist
returnFalse
returnTrue
defsvn_commit(message):
"""Commit the sandbox, providing the specified comment.
"""
svn_command('ci', '-m', message)
defsvn_tag_sandbox(tag_url, message):
"""Makes a tag based on the sandbox revisions.
"""
svn_command('copy', '-m', message, '.', tag_url)
defsvn_remove_tag(tag_url, message):
"""Removes an existing tag.
"""
svn_command('delete', '-m', message, tag_url)
defsvn_export(tag_url, export_dir):
"""Exports the tag_url revision to export_dir.
Target directory, including its parent is created if it does not exist.
If the directory export_dir exist, it is deleted before export proceed.
"""
rmdir_if_exist(export_dir)
svn_command('export', tag_url, export_dir)
deffix_sources_eol(dist_dir):
"""Set file EOL for tarball distribution.
"""
print('Preparing exported source file EOL for distribution...')
prune_dirs=antglob.prune_dirs+'scons-local* ./build* ./libs ./dist'
win_sources=antglob.glob(dist_dir,
includes='**/*.sln **/*.vcproj',
prune_dirs=prune_dirs)
unix_sources=antglob.glob(dist_dir,
includes='''**/*.h **/*.cpp **/*.inl **/*.txt **/*.dox **/*.py **/*.html **/*.in
sconscript *.json *.expected AUTHORS LICENSE''',
excludes=antglob.default_excludes+'scons.py sconsign.py scons-*',
prune_dirs=prune_dirs)
forpathinwin_sources:
fixeol.fix_source_eol(path, is_dry_run=False, verbose=True, eol='\r\n')
forpathinunix_sources:
fixeol.fix_source_eol(path, is_dry_run=False, verbose=True, eol='\n')
defdownload(url, target_path):
"""Download file represented by url to target_path.
"""
f=urllib2.urlopen(url)
try:
data=f.read()
finally:
f.close()
fout=open(target_path, 'wb')
try:
fout.write(data)
finally:
fout.close()
defcheck_compile(distcheck_top_dir, platform):
cmd= [sys.executable, 'scons.py', 'platform=%s'%platform, 'check']
print('Running:', ' '.join(cmd))
log_path=os.path.join(distcheck_top_dir, 'build-%s.log'%platform)
flog=open(log_path, 'wb')
try:
process=subprocess.Popen(cmd,
stdout=flog,
stderr=subprocess.STDOUT,
cwd=distcheck_top_dir)
stdout=process.communicate()[0]
status= (process.returncode==0)
finally:
flog.close()
return (status, log_path)
defwrite_tempfile(content, **kwargs):
fd, path=tempfile.mkstemp(**kwargs)
f=os.fdopen(fd, 'wt')
try:
f.write(content)
finally:
f.close()
returnpath
classSFTPError(Exception):
pass
defrun_sftp_batch(userhost, sftp, batch, retry=0):
path=write_tempfile(batch, suffix='.sftp', text=True)
# psftp -agent -C blep,jsoncpp@web.sourceforge.net -batch -b batch.sftp -bc
cmd= [sftp, '-agent', '-C', '-batch', '-b', path, '-bc', userhost]
error=None
forretry_indexinrange(0, max(1,retry)):
heading=retry_index==0and'Running:'or'Retrying:'
print(heading, ' '.join(cmd))
process=subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
stdout=process.communicate()[0]
ifprocess.returncode!=0:
error=SFTPError('SFTP batch failed:\n'+stdout)
else:
break
iferror:
raiseerror
returnstdout
defsourceforge_web_synchro(sourceforge_project, doc_dir,
user=None, sftp='sftp'):
"""Notes: does not synchronize sub-directory of doc-dir.
"""
userhost='%s,%s@web.sourceforge.net'% (user, sourceforge_project)
stdout=run_sftp_batch(userhost, sftp, """
cd htdocs
dir
exit
""")
existing_paths=set()
collect=0
forlineinstdout.split('\n'):
line=line.strip()
ifnotcollectandline.endswith('> dir'):
collect=True
elifcollectandline.endswith('> exit'):
break
elifcollect==1:
collect=2
elifcollect==2:
path=line.strip().split()[-1:]
ifpathandpath[0] notin ('.', '..'):
existing_paths.add(path[0])
upload_paths=set([os.path.basename(p) forpinantglob.glob(doc_dir)])
paths_to_remove=existing_paths-upload_paths
ifpaths_to_remove:
print('Removing the following file from web:')
print('\n'.join(paths_to_remove))
stdout=run_sftp_batch(userhost, sftp, """cd htdocs
rm %s
exit"""%' '.join(paths_to_remove))
print('Uploading %d files:'%len(upload_paths))
batch_size=10
upload_paths=list(upload_paths)
start_time=time.time()
forindexinrange(0,len(upload_paths),batch_size):
paths=upload_paths[index:index+batch_size]
file_per_sec= (time.time() -start_time) / (index+1)
remaining_files=len(upload_paths) -index
remaining_sec=file_per_sec*remaining_files
print('%d/%d, ETA=%.1fs'% (index+1, len(upload_paths), remaining_sec))
run_sftp_batch(userhost, sftp, """cd htdocs
lcd %s
mput %s
exit"""% (doc_dir, ' '.join(paths)), retry=3)
defsourceforge_release_tarball(sourceforge_project, paths, user=None, sftp='sftp'):
userhost='%s,%s@frs.sourceforge.net'% (user, sourceforge_project)
run_sftp_batch(userhost, sftp, """
mput %s
exit
"""% (' '.join(paths),))
defmain():
usage="""%prog release_version next_dev_version
Update 'version' file to release_version and commit.
Generates the document tarball.
Tags the sandbox revision with release_version.
Update 'version' file to next_dev_version and commit.
Performs an svn export of tag release version, and build a source tarball.
Must be started in the project top directory.
Warning: --force should only be used when developping/testing the release script.
"""
fromoptparseimportOptionParser
parser=OptionParser(usage=usage)
parser.allow_interspersed_args=False
parser.add_option('--dot', dest="dot_path", action='store', default=doxybuild.find_program('dot'),
help="""Path to GraphViz dot tool. Must be full qualified path. [Default: %default]""")
parser.add_option('--doxygen', dest="doxygen_path", action='store', default=doxybuild.find_program('doxygen'),
help="""Path to Doxygen tool. [Default: %default]""")
parser.add_option('--force', dest="ignore_pending_commit", action='store_true', default=False,
help="""Ignore pending commit. [Default: %default]""")
parser.add_option('--retag', dest="retag_release", action='store_true', default=False,
help="""Overwrite release existing tag if it exist. [Default: %default]""")
parser.add_option('-p', '--platforms', dest="platforms", action='store', default='',
help="""Comma separated list of platform passed to scons for build check.""")
parser.add_option('--no-test', dest="no_test", action='store_true', default=False,
help="""Skips build check.""")
parser.add_option('--no-web', dest="no_web", action='store_true', default=False,
help="""Do not update web site.""")
parser.add_option('-u', '--upload-user', dest="user", action='store',
help="""Sourceforge user for SFTP documentation upload.""")
parser.add_option('--sftp', dest='sftp', action='store', default=doxybuild.find_program('psftp', 'sftp'),
help="""Path of the SFTP compatible binary used to upload the documentation.""")
parser.enable_interspersed_args()
options, args=parser.parse_args()
iflen(args) !=2:
parser.error('release_version missing on command-line.')
release_version=args[0]
next_version=args[1]
ifnotoptions.platformsandnotoptions.no_test:
parser.error('You must specify either --platform or --no-test option.')
ifoptions.ignore_pending_commit:
msg=''
else:
msg=check_no_pending_commit()
ifnotmsg:
print('Setting version to', release_version)
set_version(release_version)
svn_commit('Release '+release_version)
tag_url=svn_join_url(SVN_TAG_ROOT, release_version)
ifsvn_check_if_tag_exist(tag_url):
ifoptions.retag_release:
svn_remove_tag(tag_url, 'Overwriting previous tag')
else:
print('Aborting, tag %s already exist. Use --retag to overwrite it!'%tag_url)
sys.exit(1)
svn_tag_sandbox(tag_url, 'Release '+release_version)
print('Generated doxygen document...')
## doc_dirname = r'jsoncpp-api-html-0.5.0'
## doc_tarball_path = r'e:\prg\vc\Lib\jsoncpp-trunk\dist\jsoncpp-api-html-0.5.0.tar.gz'
doc_tarball_path, doc_dirname=doxybuild.build_doc(options, make_release=True)
doc_distcheck_dir='dist/doccheck'
tarball.decompress(doc_tarball_path, doc_distcheck_dir)
doc_distcheck_top_dir=os.path.join(doc_distcheck_dir, doc_dirname)
export_dir='dist/export'
svn_export(tag_url, export_dir)
fix_sources_eol(export_dir)
source_dir='jsoncpp-src-'+release_version
source_tarball_path='dist/%s.tar.gz'%source_dir
print('Generating source tarball to', source_tarball_path)
tarball.make_tarball(source_tarball_path, [export_dir], export_dir, prefix_dir=source_dir)
amalgamation_tarball_path='dist/%s-amalgamation.tar.gz'%source_dir
print('Generating amalgamation source tarball to', amalgamation_tarball_path)
amalgamation_dir='dist/amalgamation'
amalgamate.amalgamate_source(export_dir, '%s/jsoncpp.cpp'%amalgamation_dir, 'json/json.h')
amalgamation_source_dir='jsoncpp-src-amalgamation'+release_version
tarball.make_tarball(amalgamation_tarball_path, [amalgamation_dir],
amalgamation_dir, prefix_dir=amalgamation_source_dir)
# Decompress source tarball, download and install scons-local
distcheck_dir='dist/distcheck'
distcheck_top_dir=distcheck_dir+'/'+source_dir
print('Decompressing source tarball to', distcheck_dir)
rmdir_if_exist(distcheck_dir)
tarball.decompress(source_tarball_path, distcheck_dir)
scons_local_path='dist/scons-local.tar.gz'
print('Downloading scons-local to', scons_local_path)
download(SCONS_LOCAL_URL, scons_local_path)
print('Decompressing scons-local to', distcheck_top_dir)
tarball.decompress(scons_local_path, distcheck_top_dir)
# Run compilation
print('Compiling decompressed tarball')
all_build_status=True
forplatforminoptions.platforms.split(','):
print('Testing platform:', platform)
build_status, log_path=check_compile(distcheck_top_dir, platform)
print('see build log:', log_path)
print(build_statusand'=> ok'or'=> FAILED')
all_build_status=all_build_statusandbuild_status
ifnotbuild_status:
print('Testing failed on at least one platform, aborting...')
svn_remove_tag(tag_url, 'Removing tag due to failed testing')
sys.exit(1)
ifoptions.user:
ifnotoptions.no_web:
print('Uploading documentation using user', options.user)
sourceforge_web_synchro(SOURCEFORGE_PROJECT, doc_distcheck_top_dir, user=options.user, sftp=options.sftp)
print('Completed documentation upload')
print('Uploading source and documentation tarballs for release using user', options.user)
sourceforge_release_tarball(SOURCEFORGE_PROJECT,
[source_tarball_path, doc_tarball_path],
user=options.user, sftp=options.sftp)
print('Source and doc release tarballs uploaded')
else:
print('No upload user specified. Web site and download tarbal were not uploaded.')
print('Tarball can be found at:', doc_tarball_path)
# Set next version number and commit
set_version(next_version)
svn_commit('Released '+release_version)
else:
sys.stderr.write(msg+'\n')
if__name__=='__main__':
main()