Downloaded the zipped file and tried to build the egg.
python setup.py bdist_egg
Traceback (most recent call last):
File "setup.py", line 4, in <module>
from tracadvparseargs.parseargs import __revision__ as pluginrev
File "/home/svn/Trac-plugins/advparseargsplugin/0.11/tracadvparseargs/__init__.py", line 1, in <module>
from parseargs import *
File "/home/svn/Trac-plugins/advparseargsplugin/0.11/tracadvparseargs/parseargs.py", line 8, in <module>
__revision__ = int(r"$Rev$"[6:-2])
ValueError: invalid literal for int() with base 10: ''
These lines should have the svn keywords expanded for it to work or remove the lines.
__url__ = ur"$URL$"[6:-2]
__author__ = ur"$Author: svn $"[9:-2]
__revision__ = int(r"$Rev$"[6:-2])
__date__ = r"$Date$"[7:-2]
Keywords are in setup.py, macro.py and parseargs.py
I could hack the files, but would prefer not to.