~ipython-dev/ipython/0.10.1

« back to all changes in this revision

Viewing changes to tools/testrel

  • Committer: Fernando Perez
  • Date: 2008-06-02 01:26:30 UTC
  • mfrom: (0.1.130 ipython-local)
  • Revision ID: fernando.perez@berkeley.edu-20080602012630-m14vezrhydzvahf8
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).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
# release test
4
 
 
5
 
cd ~/ipython/ipython
6
 
 
7
 
# clean up build/dist directories
8
 
rm -rf build/*
9
 
rm -rf dist/*
10
 
 
11
 
# build source distros
12
 
./setup.py sdist --formats=gztar
13
 
 
14
 
# Build rpms
15
 
python2.4 ./setup.py bdist_rpm --binary-only --release=py24 --python=/usr/bin/python2.4
16
 
python2.5 ./setup.py bdist_rpm --binary-only --release=py25 --python=/usr/bin/python2.5
17
 
 
18
 
# Build eggs
19
 
python2.4 ./eggsetup.py bdist_egg
20
 
python2.5 ./eggsetup.py bdist_egg
21
 
 
22
 
# Call the windows build separately, so that the extra Windows scripts don't
23
 
# get pulled into Unix builds (setup.py has code which checks for
24
 
# bdist_wininst)
25
 
./setup.py bdist_wininst --install-script=ipython_win_post_install.py
26
 
 
27
 
# Change name so retarded Vista runs the installer correctly
28
 
rename 's/win32/win32-setup/' dist/*.exe