Skip to content

Commit

Permalink
Small updates to build tools (rpm building temporarily off)
Browse files Browse the repository at this point in the history
  • Loading branch information
fperez committed Aug 15, 2008
1 parent e601e9b commit 8271f19
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion IPython/Release.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
development = False # change this to False to do a release
version_base = '0.9.beta'
branch = 'ipython'
revision = '1098'
revision = '1099'

if development:
if branch == 'ipython':
Expand Down
6 changes: 3 additions & 3 deletions tools/make_tarball.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import os,sys,shutil

basever = '0.8.3'
basever = '0.9.0'

def oscmd(c):
print ">",c
Expand All @@ -30,7 +30,7 @@ def verinfo():
if ver['branch-nick'] == 'ipython':
tarname = 'ipython-%s.bzr.r%s.tgz' % (basever, ver['revno'])
else:
tarname = 'ipython-%s.bzr.r%s.%s.tgz' % (basever, ver['revno'], ver['branch-nick'])
tarname = 'ipython-%s.bzr.r%s.%s.tgz' % (basever, ver['revno'],
ver['branch-nick'])

oscmd('bzr export ' + tarname)

4 changes: 2 additions & 2 deletions tools/testrel
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ cd $ipdir
./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
#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
python2.4 ./setup_bdist_egg.py
Expand Down

0 comments on commit 8271f19

Please sign in to comment.