]> gitweb.michael.orlitzky.com - bash.d.git/blob - sage.sh
sage.sh: use palp from the system
[bash.d.git] / sage.sh
1 #
2 # sage settings
3 #
4
5 # This is the default, but let's make sure.
6 export SAGE_INSTALL_GCC=no
7
8 # This is trinary, ha ha!
9 export SAGE_DEBUG=no
10
11 # Run ./configure within the SageMath git repository. This tweaks all
12 # of the flags that I don't want to tweak manually:
13 #
14 # * --enable-download-from-upstream-url: needed when adding new SPKGs
15 # * --disable-r: I don't really use R
16 # * --disable-cvxopt: I don't really use cvxopt
17 # * --disable-notebook: self-explanatory
18 # * --disable-doc: when I'm building sage just to use it, I don't want
19 # to double the build time to get the HTML docs.
20 # Override with "sage-configure --enable-doc".
21 # * --with-system-foo=force: ensure that the system packages I have
22 # installed are actually used.
23 #
24 sage-configure() {
25 ./configure \
26 --enable-download-from-upstream-url \
27 --enable-system-site-packages \
28 --disable-editable \
29 --disable-cvxopt \
30 --disable-doc \
31 --disable-notebook \
32 --disable-r \
33 --with-system-asttokens=force \
34 --with-system-attrs=force \
35 --with-system-beniget=force \
36 --with-system-boost_cropped=force \
37 --with-system-brial=force \
38 --with-system-bzip2=force \
39 --with-system-calver=force \
40 --with-system-cddlib=force \
41 --with-system-certifi=force \
42 --with-system-cffi=force \
43 --with-system-charset_normalizer=force \
44 --with-system-cliquer=force \
45 --with-system-cmake=force \
46 --with-system-contourpy=force \
47 --with-system-conway_polynomials=force \
48 --with-system-cppy=force \
49 --with-system-curl=force \
50 --with-system-cycler=force \
51 --with-system-cypari=force \
52 --with-system-cysignals=force \
53 --with-system-cython=force \
54 --with-system-dateutil=force \
55 --with-system-decorator=force \
56 --with-system-docutils=force \
57 --with-system-ecl=force \
58 --with-system-eclib=force \
59 --with-system-editables=force \
60 --with-system-entrypoints=force \
61 --with-system-executing=force \
62 --with-system-fflas_ffpack=force \
63 --with-system-flint=force \
64 --with-system-flit_core=force \
65 --with-system-fonttools=force \
66 --with-system-fplll=force \
67 --with-system-fpylll=force \
68 --with-system-gap=force \
69 --with-system-gast=force \
70 --with-system-gc=force \
71 --with-system-gcc=force \
72 --with-system-gengetopt=force \
73 --with-system-gf2x=force \
74 --with-system-gfan=force \
75 --with-system-gfortran=force \
76 --with-system-giac=force \
77 --with-system-git=force \
78 --with-system-givaro=force \
79 --with-system-gmpy2=force \
80 --with-system-gsl=force \
81 --with-system-hatchling=force \
82 --with-system-iconv=force \
83 --with-system-idna=force \
84 --with-system-iml=force \
85 --with-system-importlib_metadata=force \
86 --with-system-ipykernel=force \
87 --with-system-ipython=force \
88 --with-system-ipywidgets=force \
89 --with-system-isl=force \
90 --with-system-jedi=force \
91 --with-system-jinja2=force \
92 --with-system-kiwisolver=force \
93 --with-system-lcalc=force \
94 --with-system-libatomic_ops=force \
95 --with-system-libbraiding=force \
96 --with-system-libffi=force \
97 --with-system-libgd=force \
98 --with-system-libhomfly=force \
99 --with-system-libnauty=force \
100 --with-system-libpng=force \
101 --with-system-linbox=force \
102 --with-system-lrcalc=force \
103 --with-system-lrcalc_python=force \
104 --with-system-m4ri=force \
105 --with-system-m4rie=force \
106 --with-system-markupsafe=force \
107 --with-system-matplotlib=force \
108 --with-system-matplotlib_inline=force \
109 --with-system-maxima=force \
110 --with-system-memory_allocator=force \
111 --with-system-meson=force \
112 --with-system-meson_python=force \
113 --with-system-mpfr=force \
114 --with-system-mpmath=force \
115 --with-system-nauty=force \
116 --with-system-nest_asyncio=force \
117 --with-system-networkx=force \
118 --with-system-ncurses=force \
119 --with-system-ninja_build=force \
120 --with-system-ntl=force \
121 --with-system-numpy=force \
122 --with-system-openblas=force \
123 --with-system-packaging=force \
124 --with-system-palp=force \
125 --with-system-pari=force \
126 --with-system-parso=force \
127 --with-system-patch=force \
128 --with-system-patchelf=force \
129 --with-system-pathspec=force \
130 --with-system-perl_term_readline_gnu=force \
131 --with-system-pexpect=force \
132 --with-system-pickleshare=force \
133 --with-system-pillow=force \
134 --with-system-pip=force \
135 --with-system-pkgconfig=force \
136 --with-system-planarity=force \
137 --with-system-platformdirs=force \
138 --with-system-ply=force \
139 --with-system-pluggy=force \
140 --with-system-ppl=force \
141 --with-system-pplpy=force \
142 --with-system-primecount=force \
143 --with-system-primecountpy=force \
144 --with-system-primesieve=force \
145 --with-system-prompt_toolkit=force \
146 --with-system-ptyprocess=force \
147 --with-system-pure_eval=force \
148 --with-system-py=force \
149 --with-system-pybind11=force \
150 --with-system-pygments=force \
151 --with-system-pyparsing=force \
152 --with-system-pyproject_api=force \
153 --with-system-pyproject_metadata=force \
154 --with-system-python3=force \
155 --with-system-pyrsistent=force \
156 --with-system-pythran=force \
157 --with-system-pyzmq=force \
158 --with-system-qhull=force \
159 --with-system-readline=force \
160 --with-system-requests=force \
161 --with-system-rw=force \
162 --with-system-scipy=force \
163 --with-system-setuptools_scm=force \
164 --with-system-singular=force \
165 --with-system-six=force \
166 --with-system-sqlite=force \
167 --with-system-stack_data=force \
168 --with-system-symmetrica=force \
169 --with-system-sympow=force \
170 --with-system-sympy=force \
171 --with-system-tachyon=force \
172 --with-system-tomli=force \
173 --with-system-tornado=force \
174 --with-system-tox=force \
175 --with-system-traitlets=force \
176 --with-system-typing_extensions=force \
177 --with-system-urllib3=force \
178 --with-system-wcwidth=force \
179 --with-system-wheel=force \
180 --with-system-xz=force \
181 --with-system-zeromq=force \
182 --with-system-zipp=force \
183 --with-system-zlib=force \
184 "${@}"
185 }