build_release
35 lines
| 1023 B
| text/plain
|
TextLexer
/ tools / build_release
Fernando Perez
|
r1206 | #!/usr/bin/env python | ||
Fernando Perez
|
r2118 | """IPython release build script. | ||
ville
|
r988 | """ | ||
Fernando Perez
|
r2118 | from toollib import * | ||
ville
|
r988 | |||
Fernando Perez
|
r2118 | # Get main ipython dir, this will raise if it doesn't pass some checks | ||
ipdir = get_ipdir() | ||||
cd(ipdir) | ||||
ville
|
r988 | |||
Fernando Perez
|
r2118 | # Load release info | ||
Brian Granger
|
r2146 | execfile(pjoin('IPython','core','release.py')) | ||
ville
|
r988 | |||
Fernando Perez
|
r2118 | # Check that everything compiles | ||
compile_tree() | ||||
ville
|
r988 | |||
Fernando Perez
|
r2118 | # Cleanup | ||
Fernando Perez
|
r3135 | for d in ['build','dist',pjoin('docs','build'),pjoin('docs','dist'), | ||
pjoin('docs','source','api','generated')]: | ||||
Fernando Perez
|
r2118 | if os.path.isdir(d): | ||
remove_tree(d) | ||||
Ville M. Vainio
|
r1197 | |||
# Build source and binary distros | ||||
Fernando Perez
|
r3197 | sh('./setup.py sdist --formats=gztar,zip') | ||
Ville M. Vainio
|
r1197 | |||
# Build eggs | ||||
Fernando Perez
|
r3197 | sh('python2.6 ./setupegg.py bdist_egg') | ||
ville
|
r988 | |||
Fernando Perez
|
r2118 | # Call the windows build separately, so that the extra Windows scripts don't | ||
# get pulled into Unix builds (setup.py has code which checks for | ||||
# bdist_wininst) | ||||
Fernando Perez
|
r3197 | sh("python setup.py bdist_wininst --install-script=ipython_win_post_install.py") | ||
ville
|
r988 | |||
Fernando Perez
|
r2118 | # Change name so retarded Vista runs the installer correctly | ||
Fernando Perez
|
r3197 | sh("rename 's/linux-i686/win32-setup/' dist/*.exe") | ||
sh("rename 's/linux-x86_64/win32-setup/' dist/*.exe") | ||||