On Wed, Aug 26, 2009 at 1:19 PM, J. Cooley<[email protected]> wrote: > I would like to apply the patches from ticket #6384 to the clone I'm > using. I have not done this before and I want to make sure that I > apply it to the clone and not the main. I'm not entirely sure how to > do this. > > Also, this patch seems to rely upon another from ticket #6672, so do I > need to add the three files from that ticket first in order and then > the two from ticket #6384?
First make a clone: sage -clone mybranch Switch to the clone: sage -b mybranch Download the patches from trac, say blah1.patch, blah2.patch, and apply them: cd $SAGE_ROOT/sage/devel/sage hg qinit If the qinit command fails then you may need to edit your .hgrc file; see http://wiki.sagemath.org/MercurialQueues Now apply the two patches: hg qimport /somewhere/blah1.patch hg qpush hg qimport /somewhere/blah2.patch hg qpush Rebuild sage: sage -b -- Carlo Hamalainen http://carlo-hamalainen.net --~--~---------~--~----~------------~-------~--~----~ To post to this group, send an email to [email protected] To unsubscribe from this group, send an email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-devel URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
