Show More
@@ -1,37 +1,31 b'' | |||
|
1 | 1 | #!/bin/sh |
|
2 | 2 | |
|
3 | 3 | # release test |
|
4 | 4 | |
|
5 | 5 | ipdir=$PWD/.. |
|
6 | ipbackupdir=~/ipython/backup | |
|
7 | 6 | |
|
8 | 7 | cd $ipdir |
|
9 | 8 | |
|
10 | 9 | # Clean up build/dist directories |
|
11 | 10 | rm -rf $ipdir/build/* |
|
12 | 11 | rm -rf $ipdir/dist/* |
|
13 | 12 | |
|
14 | # Perform local backup | |
|
15 | cd $ipdir/tools | |
|
16 | ./make_tarball.py | |
|
17 | mv ipython-*.tgz $ipbackupdir | |
|
18 | ||
|
19 | 13 | # build source distros |
|
20 | 14 | cd $ipdir |
|
21 | 15 | ./setup.py sdist --formats=gztar |
|
22 | 16 | |
|
23 | 17 | # Build rpms |
|
24 | 18 | #python2.4 ./setup.py bdist_rpm --binary-only --release=py24 --python=/usr/bin/python2.4 |
|
25 | 19 | #python2.5 ./setup.py bdist_rpm --binary-only --release=py25 --python=/usr/bin/python2.5 |
|
26 | 20 | |
|
27 | 21 | # Build eggs |
|
28 | 22 | python2.4 ./setup_bdist_egg.py |
|
29 | 23 | python2.5 ./setup_bdist_egg.py |
|
30 | 24 | |
|
31 | 25 | # Call the windows build separately, so that the extra Windows scripts don't |
|
32 | 26 | # get pulled into Unix builds (setup.py has code which checks for |
|
33 | 27 | # bdist_wininst) |
|
34 | 28 | ./setup.py bdist_wininst --install-script=ipython_win_post_install.py |
|
35 | 29 | |
|
36 | 30 | # Change name so retarded Vista runs the installer correctly |
|
37 | 31 | rename 's/win32/win32-setup/' $ipdir/dist/*.exe |
General Comments 0
You need to be logged in to leave comments.
Login now