Roundup Tracker - Issues

Issue 2550623

classification
SyntaxError installing r4202 (= version 1.4.7)
Type: Severity: critical
Components: Installation, Install Problem (example) Versions: 1.4
process
Status: closed invalid
:
: : radioking, richard
Priority: :

Created on 2010-01-06 11:12 by radioking, last changed 2010-01-09 23:51 by richard.

Messages
msg3967 Author: [hidden] (radioking) Date: 2010-01-06 11:12
Previously I installed all versions from 1.3.3 to 1.4.5 in /tmp
directory which has now been emptied automatically after a reboot.

After that I tried to "jump" directly to 1.4.7 by doing this:


root@server:/opt/roundup/src$ sudo svn co -r4202
http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk .

root@server:/opt/roundup/src$ sudo python setup.py install


leads to

#################################################
  File "setup.py", line 101
    'description': "A simple-to-use and -install issue-tracking system"
                 ^
SyntaxError: invalid syntax
#################################################
msg3969 Author: [hidden] (radioking) Date: 2010-01-06 22:27
Installing version 1.4.7 from python.org instead of SVN worked for me:

http://pypi.python.org/packages/source/r/roundup/
msg3974 Author: [hidden] (radioking) Date: 2010-01-07 00:02
File setup.py from SVN (r4202) contains a typo (python.org corrected
this as installation shows other error, see issue2550624).


############################################
        'description': "A simple-to-use and -install issue-tracking system"
############################################


must be

############################################
        description= "A simple-to-use and -install issue-tracking system"
############################################





and


############################################
        'long_description':
############################################


must be


############################################
        long_description=
############################################
msg3991 Author: [hidden] (richard) Date: 2010-01-09 23:51
Please only report bugs in the latest version, thanks.
History
Date User Action Args
2010-01-09 23:51:44richardsetstatus: new -> closed
resolution: invalid
messages: + msg3991
nosy: + richard
2010-01-07 00:02:51radiokingsetmessages: + msg3974
2010-01-06 22:27:20radiokingsetmessages: + msg3969
2010-01-06 11:12:07radiokingcreate