##// END OF EJS Templates
Small updates to build tools (rpm building temporarily off)
Fernando Perez -
Show More
@@ -25,7 +25,7 b" name = 'ipython'"
25 development = False # change this to False to do a release
25 development = False # change this to False to do a release
26 version_base = '0.9.beta'
26 version_base = '0.9.beta'
27 branch = 'ipython'
27 branch = 'ipython'
28 revision = '1098'
28 revision = '1099'
29
29
30 if development:
30 if development:
31 if branch == 'ipython':
31 if branch == 'ipython':
@@ -4,7 +4,7 b''
4
4
5 import os,sys,shutil
5 import os,sys,shutil
6
6
7 basever = '0.8.3'
7 basever = '0.9.0'
8
8
9 def oscmd(c):
9 def oscmd(c):
10 print ">",c
10 print ">",c
@@ -30,7 +30,7 b' ver = verinfo()'
30 if ver['branch-nick'] == 'ipython':
30 if ver['branch-nick'] == 'ipython':
31 tarname = 'ipython-%s.bzr.r%s.tgz' % (basever, ver['revno'])
31 tarname = 'ipython-%s.bzr.r%s.tgz' % (basever, ver['revno'])
32 else:
32 else:
33 tarname = 'ipython-%s.bzr.r%s.%s.tgz' % (basever, ver['revno'], ver['branch-nick'])
33 tarname = 'ipython-%s.bzr.r%s.%s.tgz' % (basever, ver['revno'],
34 ver['branch-nick'])
34
35
35 oscmd('bzr export ' + tarname)
36 oscmd('bzr export ' + tarname)
36
@@ -21,8 +21,8 b' cd $ipdir'
21 ./setup.py sdist --formats=gztar
21 ./setup.py sdist --formats=gztar
22
22
23 # Build rpms
23 # Build rpms
24 python2.4 ./setup.py bdist_rpm --binary-only --release=py24 --python=/usr/bin/python2.4
24 #python2.4 ./setup.py bdist_rpm --binary-only --release=py24 --python=/usr/bin/python2.4
25 python2.5 ./setup.py bdist_rpm --binary-only --release=py25 --python=/usr/bin/python2.5
25 #python2.5 ./setup.py bdist_rpm --binary-only --release=py25 --python=/usr/bin/python2.5
26
26
27 # Build eggs
27 # Build eggs
28 python2.4 ./setup_bdist_egg.py
28 python2.4 ./setup_bdist_egg.py
General Comments 0
You need to be logged in to leave comments. Login now