/usr/share/sagemath/bin/sage-cython is in sagemath-common 7.4-9.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #!/usr/bin/env python
import os, sys
args = sys.argv[1:]
from sage.env import SAGE_SRC
# args can have length 0, in case we're printing a usage message (see trac 12207)
pyx_file = os.path.abspath(args[-1]) if len(args) else None
include_sage_flags = False
if pyx_file and pyx_file.endswith('.spyx'):
spyx_file = pyx_file
pyx_file = pyx_file[:-5] + '.pyx'
args[-1] = pyx_file
f = open(pyx_file, 'w')
f.write("include 'sage/ext/stdsage.pxi'\ninclude 'sage/ext/cdefs.pxi'\ninclude 'cysignals/signals.pxi'\n\n")
f.write(open(spyx_file).read())
f.close()
include_sage_flags = True
if pyx_file and pyx_file.startswith(SAGE_SRC):
include_sage_flags = True
if '-sage' in args:
include_sage_flags = True
args.remove('-sage')
elif '-no-sage' in args:
include_sage_flags = False
args.remove('-no-sage')
if include_sage_flags:
args = ['--embed-positions', '-I%s' % SAGE_SRC] + args
args.insert(0, 'sage-cython')
os.execlp('cython', *args)
|