forked from fabioz/Pydev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_release.py
588 lines (453 loc) · 21.6 KB
/
make_release.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
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
'''
Things it doesn't do:
- Uploading with ftp:
- Homepage (sourceforge and fabioz.com)
- Zips (fabioz.com and to sourceforge release system)
- Update site (sourceforge and fabioz.com)
- Sending e-mail with news
- Adding news to sourceforge news
- Creating release in sourceforge
- Creating tag in svn
- Updating EPIC
- Add blog post
The options available are:
--no-revert: The svn is not reverted to its initial state
--make-pro: To build the pro version
--make-open To build the open source version
E.g.:
To build both without reverting the svn:
d:\bin\python261\python.exe make_release.py --make-open --make-pro --no-revert
To build the docs:
d:\bin\python261\python.exe --up-docs
To update the site:
d:\bin\python261\python.exe --up-site
'''
#We have to update the versions on each release!
VERSION = "1.4.8"
VERSION_WITH_SVN = "1.4.8.2881"
ALL_VERSIONS_TO_CHECK = [
VERSION_WITH_SVN,
"1.4.7.2843",
"1.4.6.2788",
"1.4.5.2727"
]
from zipfile import ZipFile
import shutil
import urllib
import subprocess
import remove_unversioned_files
import sys
import os
BASE_DIR = r'W:\temp_buildDir'
BASE_DEPLOY_DIR = 'w:/temp_deployDir'
BASE_LOCAL_UPDATE_SITE_DIR = 'w:/temp_deployDir/updateSite'
PYDEV_PRO_DIR = BASE_DIR + r'\pydev_pro'
PYDEV_OPEN_DIR = BASE_DIR + r'\pydev'
PYDEV_OPEN_DEPLOY_DIR = BASE_DEPLOY_DIR + '/pydev'
PYDEV_PRO_DEPLOY_DIR = BASE_DEPLOY_DIR + '/pydev_pro'
PYDEV_LOCAL_UPDATE_SITE = BASE_LOCAL_UPDATE_SITE_DIR + '/pydev'
PYDEV_PRO_LOCAL_UPDATE_SITE = BASE_LOCAL_UPDATE_SITE_DIR + '/pydevPro'
PYDEV_ZIPS = BASE_LOCAL_UPDATE_SITE_DIR + '/zipsPydev'
PYDEV_PRO_ZIPS = BASE_LOCAL_UPDATE_SITE_DIR + '/zipsPydevPro'
PYDEV_REMOTE_UPDATE_SITE = 'http://pydev.sourceforge.net/updates/'
PYDEV_PRO_REMOTE_UPDATE_SITE = 'http://www.fabioz.com/pydev/updates/'
#=======================================================================================================================
# Execute
#=======================================================================================================================
def Execute(cmds, **kwargs):
'''
Helper to execute commands.
'''
print 'Executing', ' '.join(cmds), ':', subprocess.call(cmds, **kwargs)
#=======================================================================================================================
# ExecutePython
#=======================================================================================================================
def ExecutePython(cmds, **kwargs):
'''
Helper to execute a python script
'''
Execute([sys.executable] + cmds, **kwargs)
#=======================================================================================================================
# UpdateDocs
#=======================================================================================================================
def UpdateDocs():
'''
Will just build the docs (in place)
'''
ExecutePython([PYDEV_PRO_DIR + '/plugins/com.python.pydev.docs/build_both.py', '--version=' + VERSION])
import sys, zipfile, os, os.path
#=======================================================================================================================
# Unzip
#=======================================================================================================================
def Unzip(file, dir=None, only_to_memory=False):
if only_to_memory:
assert dir is None
if dir is not None:
assert not only_to_memory
written = {}
zip = zipfile.ZipFile(file)
for name in zip.namelist():
contents = zip.read(name)
if not only_to_memory:
outfile = open(os.path.join(dir, name), 'wb')
outfile.write(contents)
outfile.close()
written[name] = contents
return written
#=======================================================================================================================
# GetProSiteContents
#=======================================================================================================================
def GetProSiteContents():
TEMPLATE_FOR_PRO = '''<feature url="features/org.python.pydev.feature_%(version_with_svn)s.jar" id="org.python.pydev.feature" version="%(version_with_svn)s">
<category name="PyDev"/>
</feature>
<feature url="features/com.python.pydev.extensions_%(version_with_svn)s.jar" id="com.python.pydev.extensions" version="%(version_with_svn)s">
<category name="PyDev Extensions"/>
</feature>
'''
return TEMPLATE_FOR_PRO % {'version_with_svn':VERSION_WITH_SVN}
#=======================================================================================================================
# GetOpenSiteContents
#=======================================================================================================================
def GetOpenSiteContents():
TEMPLATE_FOR_PRO = '''<feature url="features/org.python.pydev.feature_%(version_with_svn)s.jar" id="org.python.pydev.feature" version="%(version_with_svn)s">
<category name="PyDev"/>
</feature>
'''
return TEMPLATE_FOR_PRO % {'version_with_svn':VERSION_WITH_SVN}
#=======================================================================================================================
# ReadFromURL
#=======================================================================================================================
def ReadFromURL(path):
site_stream = urllib.urlopen(path)
try:
site_contents = site_stream.read()
finally:
site_stream.close()
return site_contents
#=======================================================================================================================
# WriteToFile
#=======================================================================================================================
def WriteToFile(filename, contents):
stream = open(filename, 'wb')
try:
stream.write(contents)
finally:
stream.close()
#=======================================================================================================================
# BuildP2
#=======================================================================================================================
def BuildP2(deploy_dir, update_site):
'''
Command line to create the .jar files from an update site:
D:\bin\eclipse350\eclipse.exe -application org.eclipse.equinox.p2.metadata.generator.EclipseGenerator -updateSite W:\temp_deployDir\backupOfProUpdateSite\updates\ -site file:W:\temp_deployDir\backupOfProUpdateSite\updates\site.xml -metadataRepository file:W:\temp_deployDir\backupOfProUpdateSite\updates -metadataRepositoryName "Pydev Update Site" -artifactRepository file:W:\temp_deployDir\backupOfProUpdateSite\updates -artifactRepositoryName "Pydev Artifacts" -publishArtifacts -publishArtifactRepository -compress -reusePack200Files -noDefaultIUs -vmargs -Xmx256m
'''
#Now, lets put the new site in the content.jar and artifacts.jar
Execute(
[
'%s/pydev/eclipse/eclipse.exe' % BASE_DIR,
'-application',
'org.eclipse.equinox.p2.metadata.generator.EclipseGenerator',
'-updateSite',
deploy_dir,
'-site',
'file:' + update_site + '/site.xml',
'-metadataRepository file:' + deploy_dir,
'-metadataRepositoryName',
'"Pydev Update Site"',
'-artifactRepository',
'file:' + update_site,
'-artifactRepositoryName "Pydev Artifacts"',
'-compress',
'-append',
'-reusePack200Files',
'-noDefaultIUs',
'-vmargs',
'-Xmx256m',
])
#=======================================================================================================================
# DownloadTo
#=======================================================================================================================
def DownloadTo(url, filename):
print 'Getting...', url
contents = ReadFromURL(url)
print 'Writing'
if '.jar' not in filename:
WriteToFile(filename, contents)
return contents
#=======================================================================================================================
# UpdateSiteCreateP2
#=======================================================================================================================
def UpdateSiteCreateP2():
'''
Ok, this will update the update site. For that, it'll download the contents from both update sites,
add them to
deployDir/updateSite/pydev
deployDir/updateSite/pydev_pro
and will update the correspondent site.xml, artifacts.jar and content.jar
'''
open_parameters = (PYDEV_LOCAL_UPDATE_SITE, PYDEV_REMOTE_UPDATE_SITE, GetOpenSiteContents(), PYDEV_OPEN_DEPLOY_DIR)
pro_parameters = (PYDEV_PRO_LOCAL_UPDATE_SITE, PYDEV_PRO_REMOTE_UPDATE_SITE, GetProSiteContents(), PYDEV_PRO_DEPLOY_DIR)
for update_site, remote, site_contents, deploy_dir in (
open_parameters,
pro_parameters,
):
try:
print 'Making', update_site
os.makedirs(update_site)
except:
pass
file_to_contents = {}
for f in ('site.xml', 'artifacts.jar', 'content.jar'):
filename = update_site + '/' + f
file_to_contents[f] = DownloadTo(remote + f, filename)
IS_PRO = update_site == pro_parameters[0]
#At this point we should have:
#site.xml
#artifacts.jar
#content.jar
#
#in the update site.
#We need to: update the site.xml to add the new release
filename = update_site + '/site.xml'
contents = open(filename).read()
new_contents = "%s<feature url" % (site_contents,)
if new_contents not in contents:
contents = contents.replace("<feature url", new_contents, 1)
stream = open(filename, 'w')
stream.write(contents)
stream.close()
BuildP2(update_site, update_site)
files_to_check = (
('content.jar', "<unit id='org.python.pydev'", "<unit id='com.python.pydev'"),
('artifacts.jar', "id='org.python.pydev'", "id='com.python.pydev'"),
('site.xml', "<feature url=\"features/org.python.pydev.feature", "<feature url=\"features/com.python.pydev.extensions_"),
)
for file_to_check, open_occurrences, pro_occurrences in files_to_check:
sys.stdout.write('Checking contents of resulting ' + file_to_check + ' ... ')
if file_to_check.endswith('.jar'):
filename = update_site + '/' + file_to_check
file_to_contents = Unzip(filename, only_to_memory=True)
else:
filename = update_site + '/' + file_to_check
file_to_contents = {'site.xml': open(filename, 'r').read()}
for contents in file_to_contents.itervalues():
#Check if it has all the versions we deployed!
#for v in ALL_VERSIONS_TO_CHECK:
# assert v in contents, 'Expected %s in \n\n%s\n\n%s' % (v, filename, contents)
found = contents.count(open_occurrences)
expected = 2
#assert found == expected, "Expected %s occurrences of %s. Found: %s" % (expected, open_occurrences, found)
found = contents.count(pro_occurrences)
if IS_PRO:
expected = 2
else:
expected = 0
#assert found == expected, "Expected %s occurrences of %s. Found: %s" % (expected, pro_occurrences, found)
sys.stdout.write(' OK\n')
#=======================================================================================================================
# UpdateDescriptIon
#=======================================================================================================================
def UpdateDescriptIon():
target = PYDEV_PRO_ZIPS + '/descript.ion'
contents = DownloadTo("http://fabioz.com/pydev/zips/descript.ion", target).strip()
#Try to keep delimiter...
if '\r\n' in contents:
delim = '\r\n'
elif '\r' in contents:
delim = '\r'
elif '\n' in contents:
delim = '\n'
else:
delim = '\r\n' #default
NEW_CONTENTS = delim + "com.python.pydev.extensions-%(version_with_svn)s.zip Pydev Extensions %(version_with_svn)s" + delim + \
"org.python.pydev.feature-%(version_with_svn)s.zip Pydev 'Open Source' %(version_with_svn)s" + delim
NEW_CONTENTS = NEW_CONTENTS % {'version_with_svn':VERSION_WITH_SVN}
contents += NEW_CONTENTS
print 'Updating descript.ion'
open(target, 'wb').write(contents)
#=======================================================================================================================
# UpdateSiteCopyZips
#=======================================================================================================================
def UpdateSiteCopyZips():
create_dirs = [PYDEV_ZIPS, PYDEV_PRO_ZIPS]
for dir in create_dirs:
try:
print 'Making', dir
os.makedirs(dir)
except:
pass
#Copy the sources zip to the pydev zips
for f in os.listdir(PYDEV_OPEN_DEPLOY_DIR):
if f.endswith('-sources.zip'):
print 'Copying', f
shutil.copyfile(PYDEV_OPEN_DEPLOY_DIR + '/' + f, PYDEV_ZIPS + '/' + f)
#Copy things to the update site
def CopyDirContents(src, dst):
try:
os.makedirs(dst)
except:
pass
for f in os.listdir(src):
shutil.copy(src + '/' + f, dst + '/' + f)
print 'Copying features and plugins to open source update site'
CopyDirContents(PYDEV_OPEN_DEPLOY_DIR + '/features', PYDEV_LOCAL_UPDATE_SITE + '/features')
CopyDirContents(PYDEV_OPEN_DEPLOY_DIR + '/plugins', PYDEV_LOCAL_UPDATE_SITE + '/plugins')
print 'Copying features and plugins to pydev extensions update site'
CopyDirContents(PYDEV_OPEN_DEPLOY_DIR + '/features', PYDEV_PRO_LOCAL_UPDATE_SITE + '/features')
CopyDirContents(PYDEV_OPEN_DEPLOY_DIR + '/plugins', PYDEV_PRO_LOCAL_UPDATE_SITE + '/plugins')
CopyDirContents(PYDEV_PRO_DEPLOY_DIR + '/features', PYDEV_PRO_LOCAL_UPDATE_SITE + '/features')
CopyDirContents(PYDEV_PRO_DEPLOY_DIR + '/plugins', PYDEV_PRO_LOCAL_UPDATE_SITE + '/plugins')
#Pass all the .jars in the features and plugins, uncompress all but the templates jar and recompress them
#(that's needed because that's what's expected to just extract in the dropins)
dirs = (
PYDEV_OPEN_DEPLOY_DIR + '/features',
PYDEV_OPEN_DEPLOY_DIR + '/plugins',
PYDEV_PRO_DEPLOY_DIR + '/features',
PYDEV_PRO_DEPLOY_DIR + '/plugins',
)
file_to_zip_contents = {}
for d in dirs:
is_feature = d.endswith('features')
for f in os.listdir(d):
if f.endswith('.jar'):
filename = d + '/' + f
if f.startswith('org.python.pydev.templates'):
file_to_zip_contents[f] = open(filename, 'rb').read(), is_feature
else:
features = Unzip(filename, only_to_memory=True)
file_to_zip_contents[f] = features, is_feature
zip_file_open = ZipFile(PYDEV_ZIPS + '/org.python.pydev.feature-%s.zip' % VERSION_WITH_SVN, mode='w', compression=zipfile.ZIP_DEFLATED)
zip_file_open_in_pro = ZipFile(PYDEV_PRO_ZIPS + '/org.python.pydev.feature-%s.zip' % VERSION_WITH_SVN, mode='w', compression=zipfile.ZIP_DEFLATED)
zip_file_pro = ZipFile(PYDEV_PRO_ZIPS + '/com.python.pydev.extensions-%s.zip' % VERSION_WITH_SVN, mode='w', compression=zipfile.ZIP_DEFLATED)
for filename, path_to_contents in file_to_zip_contents.iteritems():
path_to_contents, is_feature = path_to_contents
print 'Writing to zip:', filename
def Write(arcname, contents):
if arcname.startswith('com.'):
if is_feature:
arcname = 'features/' + arcname
else:
arcname = 'plugins/' + arcname
zip_file_pro.writestr(arcname, contents)
else:
if is_feature:
arcname = 'features/' + arcname
else:
arcname = 'plugins/' + arcname
zip_file_open.writestr(arcname, contents)
zip_file_open_in_pro.writestr(arcname, contents)
if isinstance(path_to_contents, str):
#Handle the ones we should not zip. i.e. templates
Write(filename, path_to_contents)
else:
for path, contents in path_to_contents.iteritems():
Write(filename[:-4] + '/' + path, contents)
zip_file_open.close()
zip_file_pro.close()
#=======================================================================================================================
# UploadToFtp
#=======================================================================================================================
def UploadToFtp():
'''
Depends on paramiko: http://pypi.python.org/pypi/paramiko/1.7.2
and PyCrypto: http://www.voidspace.org.uk/python/modules.shtml#pycrypto
Examples from http://commandline.org.uk/python/sftp-python/
'''
import paramiko
paramiko.util.log_to_file('/tmp/paramiko.log')
host = "example.com"
port = 22
transport = paramiko.Transport((host, port))
password = "example101"
username = "warrior"
transport.connect(username=username, password=password)
sftp = paramiko.SFTPClient.from_transport(transport)
try:
filepath = '/home/zeth/lenna.jpg'
localpath = '/home/zeth/lenna.jpg'
sftp.get(filepath, localpath)
filepath = '/home/zeth/lenna.jpg'
localpath = '/home/zeth/lenna.jpg'
sftp.put(filepath, localpath)
finally:
sftp.close()
transport.close()
#=======================================================================================================================
# UpdateSite
#=======================================================================================================================
def UpdateSite():
UpdateSiteCopyZips()
UpdateSiteCreateP2()
UpdateDescriptIon() #the directory structure must already be created for this function.
MAKE_OPEN = 1
MAKE_PRO = 2
REVERT_SVN = 1
REVERT_SVN_NO = 2
REVERT_SVN_ONLY = 3
#=======================================================================================================================
# Make
#=======================================================================================================================
def Make(make, revert_and_update_svn=REVERT_SVN):
'''
Actually builds the open source or the pro plugin.
@param make: which one to build (according to constants)
@param revert_and_update_svn: should we revert the svn before the build?
'''
initial_dir = os.getcwd()
try:
os.chdir(PYDEV_PRO_DIR)
if make == MAKE_OPEN:
d = PYDEV_OPEN_DIR
os.chdir(d + r'\builders\org.python.pydev.build')
build_dir = 'w:/temp_buildDir/pydev'
deploy_dir = PYDEV_OPEN_DEPLOY_DIR
elif make == MAKE_PRO:
d = PYDEV_PRO_DIR
os.chdir(d + r'\builders\com.python.pydev.build')
build_dir = 'w:/temp_buildDir/pydev_pro'
deploy_dir = PYDEV_PRO_DEPLOY_DIR
else:
raise AssertionError('Wrong target!')
if revert_and_update_svn in (REVERT_SVN, REVERT_SVN_ONLY):
Execute(['svn', 'revert', '-R', d])
remove_unversioned_files.RemoveFilesFrom(d)
Execute(['svn', 'up', '--non-interactive', '--force', d])
remove_unversioned_files.RemoveFilesFrom(d)
if revert_and_update_svn == REVERT_SVN_ONLY:
return
env = {}
env.update(os.environ)
env['JAVA_HOME'] = r'D:\bin\jdk_1_5_09'
cmds = [
r'W:\eclipse_350_clean\plugins\org.apache.ant_1.7.1.v20090120-1145\bin\ant.bat',
'-DbuildDirectory=%s' % (build_dir,),
'-Dbaseos=win32',
'-Dbasews=win32',
'-Dbasearch=x86',
'-Ddeploy.dir=%s' % (deploy_dir,),
'-DcleanAfter=false',
'-Dvanilla.eclipse=W:/eclipse_350_clean',
'-Dpydev.p2.repo=file:%s/pydev' % (BASE_DEPLOY_DIR,), #Only really used when building the pro version
]
Execute(cmds, env=env, shell=True)
finally:
os.chdir(initial_dir)
#=======================================================================================================================
# main
#=======================================================================================================================
if __name__ == '__main__':
args = sys.argv[1:]
revert_and_update_svn = REVERT_SVN
if '--no-revert' in args:
revert_and_update_svn = REVERT_SVN_NO
elif '--only-revert' in args:
revert_and_update_svn = REVERT_SVN_ONLY
if '--make-open' in args:
Make(MAKE_OPEN, revert_and_update_svn)
if '--make-pro' in args:
Make(MAKE_PRO, revert_and_update_svn)
if '--up-docs' in args:
UpdateDocs()
if '--up-site' in args:
UpdateSite()