##// END OF EJS Templates
changed main script to be compliant back to ipython script directory call
changed main script to be compliant back to ipython script directory call

File last commit:

r1527:8271f193
r1822:0430a05d
Show More
testrel
37 lines | 933 B | text/plain | TextLexer
Ville M. Vainio
crlf -> lf
r1032 #!/bin/sh
# release test
Fernando Perez
Finish doc/build tools cleanup....
r1207 ipdir=~/ipython/ipython
ipbackupdir=~/ipython/backup
Ville M. Vainio
crlf -> lf
r1032
Fernando Perez
Finish doc/build tools cleanup....
r1207 cd $ipdir
# Clean up build/dist directories
rm -rf $ipdir/build/*
rm -rf $ipdir/dist/*
# Perform local backup
cd $ipdir/tools
./make_tarball.py
mv ipython-*.tgz $ipbackupdir
Ville M. Vainio
crlf -> lf
r1032
# build source distros
Fernando Perez
Finish doc/build tools cleanup....
r1207 cd $ipdir
Ville M. Vainio
crlf -> lf
r1032 ./setup.py sdist --formats=gztar
# Build rpms
Fernando Perez
Small updates to build tools (rpm building temporarily off)
r1527 #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
Ville M. Vainio
crlf -> lf
r1032
# Build eggs
Fernando Perez
Fixes to build/doc scripts.
r1206 python2.4 ./setup_bdist_egg.py
python2.5 ./setup_bdist_egg.py
Ville M. Vainio
crlf -> lf
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
Fernando Perez
Finish doc/build tools cleanup....
r1207 rename 's/win32/win32-setup/' $ipdir/dist/*.exe