Roundup Tracker - Issues

Message4439

Author hemmecke
Recipients ber, hemmecke
Date 2011-09-28.09:34:20
Message-id <4E82EA18.1020100@gmail.com>
In-reply-to <1317201631.0.0.889254610472.issue2550729@psf.upfronthosting.co.za>
No idea where this problem comes from.

In fact, originally I installed roundup from a git repository and instead of

wget http://pypi.python.org/packages/source/r/roundup/roundup-$V.tar.gz
tar xzvf roundup-$V.tar.gz
mv roundup-$V roundup
cd roundup
python setup.py install --prefix=$ROUNDUP

did something like this:

cd $ROUNDUPSRC
git clone git://github.com/pypa/virtualenv.git
cd virtualenv
git checkout master
/usr/bin/python virtualenv.py $ROUNDUP
export PATH=$ROUNDUP/bin:$PATH
easy_install -U Sphinx # needed for "setup.py build_doc"
git clone git://github.com/hemmecke/roundup-svn.git roundup
cd roundup
git remote add upstream git://github.com/hemmecke/roundup-svn.git
git config --add remote.upstream.fetch 
'+refs/remotes/svn/*:refs/remotes/svn/*'
git fetch upstream
W=$(echo $V|sed 's,\.,-,g')
git checkout -b release-$W svn/tags/release-$W
python setup.py build_doc
cd $ROUNDUPSRC/roundup
python setup.py install  # no --prefix necessary here

and thought that installing directly from the repository might trigger 
this problem. And it was originally on Debian 6 (i.e. with Python 
2.6.6). Since I've read somewhere that one should not build the roundup 
tarball with python 2.6, I tried on Natty with Python 2.7.
History
Date User Action Args
2011-09-28 09:34:20hemmeckesetrecipients: + hemmecke, ber
2011-09-28 09:34:20hemmeckelinkissue2550729 messages
2011-09-28 09:34:20hemmeckecreate