#14480: switch sage to the new directory layout
-------------------------------------+-------------------------------------
       Reporter:  ohanar             |        Owner:  tbd
           Type:  task               |       Status:  needs_review
       Priority:  major              |    Milestone:  sage-6.0
      Component:  distribution       |   Resolution:
       Keywords:                     |    Merged in:
        Authors:  R. Andrew Ohana    |    Reviewers:
Report Upstream:  N/A                |  Work issues:
         Branch:                     |       Commit:
  u/ohanar/build_system              |  c7903c067f0fa949bcd09e6e60c6c306dee26ab4
   Dependencies:  #13015, #14781     |     Stopgaps:
-------------------------------------+-------------------------------------

Comment (by jdemeyer):

 Concerning checksums: why not add Python support? For the buildbots, I
 have this script to verify checksums of Sage tarballs:
 {{{
 #!/usr/bin/env python

 import hashlib
 import sys

 H = hashlib.sha256()

 while True:
     d = sys.stdin.read(4096)
     H.update(d)
     if not len(d):
         break

 print H.hexdigest()
 }}}

 You could have a variant of this be called `shasum.py` and then run
 `python shasum.py` if Python exists (`command -v python`).

--
Ticket URL: <http://trac.sagemath.org/ticket/14480#comment:24>
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