#15556: Convert Stein-Watkins database to git spkg format
-------------------------------------+-------------------------------------
       Reporter:  cremona            |        Owner:
           Type:  defect             |       Status:  needs_review
       Priority:  minor              |    Milestone:  sage-6.1
      Component:  packages:          |   Resolution:
  optional                           |    Merged in:
       Keywords:  elliptic curves,   |    Reviewers:
  databases                          |  Work issues:
        Authors:  John Cremona       |       Commit:
Report Upstream:  N/A                |  747a385d4ae1a844df7efffc6555f1767e8594ac
         Branch:                     |     Stopgaps:
  u/cremona/ticket/15556             |
   Dependencies:                     |
-------------------------------------+-------------------------------------

Comment (by jdemeyer):

 Various details:
  1. use {{{cp -R}}} instead of {{{cp -rf}}}
  2. omit the version check (you're adding a check for version 6.x to a
 file which only exists in version 6.x)
  3. replace {{{$SAGE_LOCAL/share}}} by {{{$SAGE_SHARE}}}
  4. replace
 {{{
 if [ "x${SAGE_LOCAL}" = x ]; then
    echo "SAGE_LOCAL undefined ... exiting"
    echo "Maybe run 'sage -sh'?"
    exit 1
 fi
 }}}
 by
 {{{
 if [ -z "$SAGE_SHARE" ]; then
     echo >&2 "SAGE_SHARE undefined ... exiting"
     echo >&2 "Maybe run 'sage --sh'?"
     exit 1
 fi
 }}}

--
Ticket URL: <http://trac.sagemath.org/ticket/15556#comment:7>
Sage <http://www.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 unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to