build_release
49 lines
| 1.4 KiB
| text/plain
|
TextLexer
/ tools / build_release
Fernando Perez
|
r1206 | #!/usr/bin/env python | ||
Fernando Perez
|
r2118 | """IPython release build script. | ||
ville
|
r988 | """ | ||
Fernando Perez
|
r6601 | |||
import os | ||||
Fernando Perez
|
r2118 | from toollib import * | ||
ville
|
r988 | |||
Fernando Perez
|
r7751 | # The windows builds are fairly painful to set up on a posix system via wine, | ||
# so by default we've disabled them and we just build the windows installers | ||||
# separately in a true Windows VM. | ||||
do_windows = False | ||||
# Egg building is also disabled by default. They serve no real purpose in | ||||
# python2, and getting a setupegg.py file that has valid python2/3 syntax is a | ||||
# pain in the ass. Since the python devs were too stubborn to leave execfile() | ||||
# in place in python3, then we just don't build eggs. | ||||
do_eggs = False | ||||
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 | ||
Fernando Perez
|
r4451 | 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
|
r4451 | 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
|
r6605 | sh(sdists) | ||
Ville M. Vainio
|
r1197 | |||
# Build eggs | ||||
Fernando Perez
|
r7751 | if do_eggs: | ||
sh(eggs) | ||||
if do_windows: | ||||
map(sh, win_builds) | ||||
# Change name so retarded Vista runs the installer correctly | ||||
sh("rename 's/linux-i686/win32/' dist/*.exe") | ||||
sh("rename 's/linux-x86_64/win32/' dist/*.exe") | ||||
# exe files aren't really executable under *nix. | ||||
sh("chmod -x dist/*.exe") | ||||