##// END OF EJS Templates
Stop building rpms (they were broken)....
Stop building rpms (they were broken). Closes https://bugs.launchpad.net/ipython/+bug/482487

File last commit:

r2170:32ee120c
r2566:c9fea3b0
Show More
make_tarball.py
21 lines | 517 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Simple script to create a tarball with proper bzr version info.
"""
import os
import sys
import shutil
from toollib import *
execfile('../IPython/Release.py') # defines version_base
ver = version_info()
if ver['branch-nick'] == 'ipython':
tarname = 'ipython-%s.bzr.r%s.tgz' % (version_base, ver['revno'])
else:
tarname = 'ipython-%s.bzr.r%s.%s.tgz' % (version_base, ver['revno'],
ver['branch-nick'])
c('bzr export ' + tarname)