#6586: [with spkg, needs review] update Sphinx to version 0.6.2 or 0.6.3
-------------------------+--------------------------------------------------
Reporter: jhpalmieri | Owner: mabshoff
Type: enhancement | Status: new
Priority: major | Milestone: sage-4.1.2
Component: packages | Keywords:
Reviewer: | Author:
Merged: |
-------------------------+--------------------------------------------------
Comment(by mpatel):
For Sage 4.1.2.alpha0's HTML reference manual, at least, the new spkg
seems to work just as Georg indicated. I'll try to do more testing soon.
By the way, it might be useful to update spkg-install along the lines of
#6598 and [http://wiki.sagemath.org/DavidKirkby this example]. For
example,
{{{
#!/usr/bin/env bash
if [ -z "$SAGE_LOCAL" ]; then
echo "SAGE_LOCAL undefined ... exiting";
echo "Maybe run 'sage -sh'?"
exit 1
fi
success() {
if [ $? -ne 0 ]; then
echo "Error building Sphinx: '$1'"
exit 1
fi
}
set -e
echo "Removing old version..."
rm -rf "$SAGE_LOCAL"/lib/python/site-packages/Sphinx-*
success 'deleting previous version'
[...]
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/6586#comment:36>
Sage <http://sagemath.org/>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---