testrel
28 lines
| 769 B
| text/plain
|
TextLexer
/ tools / testrel
Ville M. Vainio
|
r1032 | #!/bin/sh | ||
# release test | ||||
cd ~/ipython/ipython | ||||
# clean up build/dist directories | ||||
rm -rf build/* | ||||
rm -rf dist/* | ||||
# build source distros | ||||
./setup.py sdist --formats=gztar | ||||
# Build rpms | ||||
python2.4 ./setup.py bdist_rpm --binary-only --release=py24 --python=/usr/bin/python2.4 | ||||
python2.5 ./setup.py bdist_rpm --binary-only --release=py25 --python=/usr/bin/python2.5 | ||||
# Build eggs | ||||
Fernando Perez
|
r1206 | python2.4 ./setup_bdist_egg.py | ||
python2.5 ./setup_bdist_egg.py | ||||
Ville M. Vainio
|
r1032 | |||
# 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) | ||||
./setup.py bdist_wininst --install-script=ipython_win_post_install.py | ||||
# Change name so retarded Vista runs the installer correctly | ||||
rename 's/win32/win32-setup/' dist/*.exe | ||||