##// END OF EJS Templates
Update utility scripts for bzr workflow
Update utility scripts for bzr workflow

File last commit:

r1542:1ca64ecf
r1542:1ca64ecf
Show More
testrel
37 lines | 923 B | text/plain | TextLexer
Ville M. Vainio
crlf -> lf
r1032 #!/bin/sh
# release test
Fernando Perez
Update utility scripts for bzr workflow
r1542 ipdir=$PWD/..
Fernando Perez
Finish doc/build tools cleanup....
r1207 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