I have a linux box with root access. I've django library installed as uncompressed python egg. Now I want to install this patch.
How can I do it?
Use the 'patch' tool to apply your patch. The description provided to you above is likely useful; first move to the django source directory or where ever you've uncompressed your egg, and then run patch (if you don't have patch installed simply do an apt-get install patch). I'd use -p1 as an arg, not sure why -p2 was specified, but my command might look like this;
patch -p1 --dry-run < name.patch
You can find out more with 'man patch'.
cd path/to/django; patch -p2 --dry-run < path/to/patchwill help you out, right? – gertvdijk Jan 10 '13 at 01:20