##// END OF EJS Templates
Merge in all development done in bzr since February 16 2008....
Merge in all development done in bzr since February 16 2008. At that time, a clean bzr branch was started from the SVN tree, but without SVN history. That SVN history has now been used as the basis of this branch, and the development done on the history-less BZR branch has been added and is the content of this merge. This branch will be the new official main line of development in Launchpad (equivalent to the old SVN trunk).

File last commit:

r1207:c446b0e1
r1218:6b454030 merge
Show More
testrel
37 lines | 931 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
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
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