##// END OF EJS Templates
crlf -> lf
crlf -> lf

File last commit:

r1032:4aabf05c
r1032:4aabf05c
Show More
testrel
28 lines | 775 B | text/plain | TextLexer
#!/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
python2.4 ./eggsetup.py bdist_egg
python2.5 ./eggsetup.py bdist_egg
# 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